diff --git a/hyperledger_fabric/latest/Makefile b/hyperledger_fabric/latest/Makefile index 73be3c96..f489e2fc 100644 --- a/hyperledger_fabric/latest/Makefile +++ b/hyperledger_fabric/latest/Makefile @@ -17,6 +17,8 @@ else ifeq ($(HLF_MODE),couchdb) COMPOSE_FILE="docker-compose-2orgs-4peers-couchdb.yaml" else ifeq ($(HLF_MODE),event) COMPOSE_FILE="docker-compose-2orgs-4peers-event.yaml" +else ifeq ($(HLF_MODE),be) + COMPOSE_FILE="docker-compose-2orgs-4peers-solo-be.yaml" else ifeq ($(HLF_MODE),dev) COMPOSE_FILE="docker-compose-1orgs-1peers-dev.yaml" endif @@ -32,8 +34,9 @@ test: make stop clean ready: # create/join channel, install/instantiate cc + make stop make gen_config # Will ignore if local config path exists - make restart + make start make test_channel_create make test_channel_join @@ -59,12 +62,12 @@ ready: # create/join channel, install/instantiate cc restart: stop start start: # bootup the fabric network - @echo "Start a fabric network with ${COMPOSE_FILE}" + @echo "Start a fabric network with ${COMPOSE_FILE}..." @make clean @docker-compose -f ${COMPOSE_FILE} up -d # Start a fabric network stop: # stop the fabric network - @echo "Stop the fabric network..." + @echo "Stop the fabric network with ${COMPOSE_FILE}..." @docker-compose -f ${COMPOSE_FILE} down >& /tmp/docker-compose.log # Stop a fabric network chaincode_dev: restart chaincode_init test_cc_peer0 stop @@ -131,8 +134,8 @@ check: # Check shell scripts grammar [ `which shellcheck` ] && shellcheck scripts/*.sh clean: # clean up containers - @echo "Clean all containers and fabric cc images" - @-docker rm -f `docker ps -qa` + @echo "Clean all HLF containers and fabric cc images" + @docker ps -a | awk '{ print $1,$2 }' | grep "hyperledger/fabric" | awk '{print $1 }' | xargs -I {} docker rm -f {} @-docker rmi $$(docker images | awk '$$1 ~ /dev-peer/ { print $$3}') clean_env: # clean up environment @@ -160,7 +163,7 @@ logs: # show logs logs_check: logs_save logs_view logs_save: # save logs - [ -d $(LOG_PATH) ] || mkdir $(LOG_PATH) + [ -d $(LOG_PATH) ] || mkdir -p $(LOG_PATH) docker logs peer0.org1.example.com >& $(LOG_PATH)/dev_peer0.log docker logs orderer.example.com >& $(LOG_PATH)/dev_orderer.log docker-compose -f ${COMPOSE_FILE} logs >& $(LOG_PATH)/dev_all.log @@ -189,6 +192,7 @@ download: # download required images docker pull yeasy/hyperledger-fabric-orderer:latest docker pull yeasy/hyperledger-fabric-ca:latest docker pull yeasy/hyperledger-fabric-kafka:0.10.2.0 # TODO:official repo does not provide the latest image currently + docker pull yeasy/blockchain-explorer:latest # TODO: wait for official images docker pull hyperledger/fabric-baseos:x86_64-0.4.2 docker pull hyperledger/fabric-zookeeper:x86_64-1.1.0-preview docker pull hyperledger/fabric-kafka:x86_64-1.1.0-preview diff --git a/hyperledger_fabric/latest/base.yaml b/hyperledger_fabric/latest/base.yaml index a716f022..ad2ea281 100644 --- a/hyperledger_fabric/latest/base.yaml +++ b/hyperledger_fabric/latest/base.yaml @@ -18,23 +18,24 @@ services: orderer-base: image: yeasy/hyperledger-fabric-orderer:latest restart: always + # Default config can be found at https://github.com/hyperledger/fabric/blob/master/orderer/common/localconfig/config.go environment: - - ORDERER_GENERAL_LOGLEVEL=DEBUG + - ORDERER_GENERAL_LOGLEVEL=DEBUG # default: INFO - ORDERER_GENERAL_LOGFORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message} - - ORDERER_GENERAL_LISTENADDRESS=0.0.0.0 - - ORDERER_GENERAL_GENESISMETHOD=file + - ORDERER_GENERAL_LISTENADDRESS=0.0.0.0 # default: 127.0.0.1 + - ORDERER_GENERAL_GENESISMETHOD=file # default: provisional - ORDERER_GENERAL_GENESISFILE=/var/hyperledger/orderer/orderer.genesis.block - - ORDERER_GENERAL_LOCALMSPID=OrdererMSP + - ORDERER_GENERAL_LOCALMSPID=OrdererMSP # default: DEFAULT - ORDERER_GENERAL_LOCALMSPDIR=/var/hyperledger/orderer/msp - #- ORDERER_GENERAL_LEDGERTYPE=file - - ORDERER_GENERAL_LEDGERTYPE=json + - ORDERER_GENERAL_LEDGERTYPE=file + #- ORDERER_GENERAL_LEDGERTYPE=json # default: file - ORDERER_GENERAL_BATCHTIMEOUT=1s - ORDERER_GENERAL_MAXMESSAGECOUNT=10 - ORDERER_GENERAL_MAXWINDOWSIZE=1000 - ORDERER_GENERAL_LISTENPORT=7050 #- ORDERER_RAMLEDGER_HISTORY_SIZE=100 #only useful when use ram ledger # enabled TLS - - ORDERER_GENERAL_TLS_ENABLED=true + - ORDERER_GENERAL_TLS_ENABLED=true # default: false - ORDERER_GENERAL_TLS_PRIVATEKEY=/var/hyperledger/orderer/tls/server.key - ORDERER_GENERAL_TLS_CERTIFICATE=/var/hyperledger/orderer/tls/server.crt - ORDERER_GENERAL_TLS_ROOTCAS=[/var/hyperledger/orderer/tls/ca.crt] diff --git a/hyperledger_fabric/latest/config.json b/hyperledger_fabric/latest/config.json deleted file mode 100644 index ed8a5854..00000000 --- a/hyperledger_fabric/latest/config.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "host":"localhost", - "port":"8080", - "channelsList": ["businesschannel"], - "GOPATH":"../artifacts", - "keyValueStore":"/tmp/fabric-client-kvs", - "eventWaitTime":"30000", - "enableTls":true, - "users":[ - { - "username":"admin", - "secret":"adminpw" - } - ], - "mysql":{ - "host":"mysql", - "port":"3306", - "database":"fabricexplorer", - "username":"root", - "passwd":"root" - } -} diff --git a/hyperledger_fabric/latest/docker-compose-2orgs-4peers-solo-be.yaml b/hyperledger_fabric/latest/docker-compose-2orgs-4peers-solo-be.yaml index 4de101c1..ee93a266 100644 --- a/hyperledger_fabric/latest/docker-compose-2orgs-4peers-solo-be.yaml +++ b/hyperledger_fabric/latest/docker-compose-2orgs-4peers-solo-be.yaml @@ -56,11 +56,11 @@ services: depends_on: - mysql volumes: - - ./config.json:/blockchain-explorer/config.json + - ./explorer/config.json:/blockchain-explorer/config.json - ./solo/crypto-config:/blockchain-explorer/first-network/crypto-config ports: - "8080:8080" # HTTP port - command: bash -c 'node main.js' + command: bash -c 'sleep 10; node main.js' mysql: # mysql service image: mysql:8.0 @@ -71,7 +71,7 @@ services: - MYSQL_ROOT_PASSWORD=root - MYSQL_DATABASE=fabricexplorer volumes: - - ./fabricexplorer.sql:/docker-entrypoint-initdb.d/fabricexplorer.sql + - ./explorer/fabricexplorer.sql:/docker-entrypoint-initdb.d/fabricexplorer.sql expose: - "3306" #command: bash -c 'mysqld; sleep 1; mysql -uroot -proot < /tmp/fabricexplorer.sql; while true; do sleep 20171117; done' diff --git a/hyperledger_fabric/latest/explorer/config.json b/hyperledger_fabric/latest/explorer/config.json new file mode 100644 index 00000000..33a81daa --- /dev/null +++ b/hyperledger_fabric/latest/explorer/config.json @@ -0,0 +1,73 @@ +{ + "network-config": { + "orderer": [ + { + "url": "grpcs://orderer.example.com:7050", + "server-hostname": "orderer.example.com", + "tls_cacerts": "/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt" + } + ], + "org1": { + "name": "peerOrg1", + "mspid": "Org1MSP", + "peer1": { + "requests": "grpcs://peer0.org1.example.com:7051", + "events": "grpcs://peer0.org1.example.com:7053", + "server-hostname": "peer0.org1.example.com", + "tls_cacerts": "/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt" + }, + "peer2": { + "requests": "grpcs://peer1.org1.example.com:7051", + "events": "grpcs://peer1.org1.example.com:7053", + "server-hostname": "peer1.org1.example.com", + "tls_cacerts": "/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt" + }, + "admin": { + "key": "/first-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore", + "cert": "/first-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts" + } + }, + "org2": { + "name": "peerOrg2", + "mspid": "Org2MSP", + "ca": "https://ca.org2.example.com:7054", + "peer1": { + "requests": "grpcs://peer0.org2.example.com:7051", + "events": "grpcs://peer0.org2.example.com:7053", + "server-hostname": "peer0.org2.example.com", + "tls_cacerts": "/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt" + }, + "peer2": { + "requests": "grpcs://peer1.org2.example.com:7051", + "events": "grpcs://peer1.org2.example.com:7053", + "server-hostname": "peer1.org2.example.com", + "tls_cacerts": "/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt" + }, + "admin": { + "key": "/first-network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore", + "cert": "/first-network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts" + } + } + }, + "host":"explorer", + "port":"8080", + "channel": "businesschannel", + "GOPATH":"../artifacts", + "keyValueStore":"/tmp/fabric-client-kvs", + "eventWaitTime":"30000", + "peer":"peer1", + "org":["org1"], + "users":[ + { + "username":"admin", + "secret":"adminpw" + } + ], + "mysql":{ + "host":"mysql", + "port":"3306", + "database":"fabricexplorer", + "username":"root", + "passwd":"root" + } +} diff --git a/hyperledger_fabric/latest/fabricexplorer.sql b/hyperledger_fabric/latest/explorer/fabricexplorer.sql similarity index 100% rename from hyperledger_fabric/latest/fabricexplorer.sql rename to hyperledger_fabric/latest/explorer/fabricexplorer.sql diff --git a/hyperledger_fabric/latest/scripts/clean_env.sh b/hyperledger_fabric/latest/scripts/clean_env.sh index 945fb07b..88446f7d 100644 --- a/hyperledger_fabric/latest/scripts/clean_env.sh +++ b/hyperledger_fabric/latest/scripts/clean_env.sh @@ -9,9 +9,15 @@ if [ -f ./header.sh ]; then elif [ -f scripts/header.sh ]; then source scripts/header.sh else - alias echo_r="echo" - alias echo_g="echo" - alias echo_b="echo" + echo_r() { + echo "$@" + } + echo_g() { + echo "$@" + } + echo_b() { + echo "$@" + } fi echo_b "Clean up all containers..." diff --git a/hyperledger_fabric/latest/scripts/download_images.sh b/hyperledger_fabric/latest/scripts/download_images.sh index 0ffec0d8..c912f2d5 100644 --- a/hyperledger_fabric/latest/scripts/download_images.sh +++ b/hyperledger_fabric/latest/scripts/download_images.sh @@ -12,12 +12,12 @@ else fi ARCH=x86_64 -BASEIMAGE_RELEASE=0.3.2 +BASEIMAGE_RELEASE=0.4.2 BASE_VERSION=1.1.0 PROJECT_VERSION=1.0.4 # For testing 1.0.0 images -IMG_TAG=1.0.4 +IMG_TAG=latest echo_b "Downloading images from DockerHub... need a while" @@ -48,26 +48,3 @@ docker pull hyperledger/fabric-zookeeper:$ARCH-$IMG_TAG echo_g "Done, now can startup the network using docker-compose..." exit 0 - - -# following part is not necessary now. -echo_b "===Re-tagging images to *latest* tag" -docker tag hyperledger/fabric-peer:$ARCH-$IMG_TAG hyperledger/fabric-peer -docker tag hyperledger/fabric-tools:$ARCH-$IMG_TAG hyperledger/fabric-tools -docker tag hyperledger/fabric-orderer:$ARCH-$IMG_TAG hyperledger/fabric-orderer -docker tag hyperledger/fabric-ca:$ARCH-$IMG_TAG hyperledger/fabric-ca -docker tag hyperledger/fabric-zookeeper:$ARCH-$IMG_TAG hyperledger/fabric-zookeeper -docker tag hyperledger/fabric-kafka:$ARCH-$IMG_TAG hyperledger/fabric-kafka -docker tag hyperledger/fabric-couchdb:$ARCH-$IMG_TAG hyperledger/fabric-couchdb - -echo_b "Rename images with official tags..." -docker tag yeasy/hyperledger-fabric-peer:$IMG_TAG hyperledger/fabric-peer \ - && docker tag yeasy/hyperledger-fabric-peer:$IMG_TAG hyperledger/fabric-tools \ - && docker tag yeasy/hyperledger-fabric-orderer:$IMG_TAG hyperledger/fabric-orderer \ - && docker tag yeasy/hyperledger-fabric-ca:$IMG_TAG hyperledger/fabric-ca \ - && docker tag yeasy/hyperledger-fabric-base:$IMG_TAG hyperledger/fabric-ccenv:$ARCH-$PROJECT_VERSION \ - && docker tag yeasy/hyperledger-fabric-base:$IMG_TAG hyperledger/fabric-baseos:$ARCH-$BASEIMAGE_RELEASE \ - && docker tag yeasy/hyperledger-fabric-base:$IMG_TAG hyperledger/fabric-baseimage:$ARCH-$BASEIMAGE_RELEASE \ - && docker tag hyperledger/fabric-zookeeper:$ARCH-$IMG_TAG hyperledger/fabric-zookeeper \ - && docker tag hyperledger/fabric-kafka:$ARCH-$IMG_TAG hyperledger/fabric-kafka - diff --git a/hyperledger_fabric/latest/scripts/func.sh b/hyperledger_fabric/latest/scripts/func.sh index c8b61a01..cd2c52b5 100644 --- a/hyperledger_fabric/latest/scripts/func.sh +++ b/hyperledger_fabric/latest/scripts/func.sh @@ -8,9 +8,15 @@ if [ -f ./header.sh ]; then elif [ -f scripts/header.sh ]; then source scripts/header.sh else - alias echo_r="echo" - alias echo_g="echo" - alias echo_b="echo" + echo_r() { + echo "$@" + } + echo_g() { + echo "$@" + } + echo_b() { + echo "$@" + } fi # Define those global variables @@ -18,6 +24,9 @@ if [ -f ./variables.sh ]; then source ./variables.sh elif [ -f scripts/variables.sh ]; then source scripts/variables.sh +else + echo "Cannot find the variables.sh files, pls check" + exit 1 fi # Verify $1 is not 0, then output error msg $2 and exit @@ -467,4 +476,10 @@ configtxlatorCompare() { > "${output}" [ $? -eq 0 ] || echo_r "Failed to compute config update" -} \ No newline at end of file +} + + +# Run cmd inside the config generator container +gen_con_exec() { + docker exec -it $GEN_CONTAINER "$@" +} diff --git a/hyperledger_fabric/latest/scripts/gen_config.sh b/hyperledger_fabric/latest/scripts/gen_config.sh index 3f71bd35..2a3ef27e 100644 --- a/hyperledger_fabric/latest/scripts/gen_config.sh +++ b/hyperledger_fabric/latest/scripts/gen_config.sh @@ -1,28 +1,23 @@ #! /bin/bash # Generating -# * crypto-config +# * crypto-config/* # * channel-artifacts # * orderer.genesis.block # * channel.tx # * Org1MSPanchors.tx # * Org2MSPanchors.tx - -[ $# -ne 1 ] && echo_b "Need config path as param" && exit 1 -MODE=$1 - - -# Run cmd inside the container -con_exec() { - docker exec -it $GEN_CONTAINER "$@" -} - if [ -f ./func.sh ]; then source ./func.sh elif [ -f scripts/func.sh ]; then source scripts/func.sh +else + echo "Cannot find the func.sh files, pls check" + exit 1 fi +[ $# -ne 1 ] && echo_r "[Usage] $0 solo|kafka" && exit 1 || MODE=$1 + echo_b "Generating artifacts for ${MODE}" echo_b "Clean existing container $GEN_CONTAINER" @@ -30,19 +25,20 @@ echo_b "Clean existing container $GEN_CONTAINER" pushd ${MODE} -echo_b "Check whether channel-artifacts or crypto-config exist already" +echo_b "Check whether crypto-config exist already" GEN_CRYPTO=true -if [ -d ${CRYPTO_CONFIG} ]; then #already exist, no need to re-gen crypto +if [ -d ${CRYPTO_CONFIG} ]; then # already exist, no need to re-gen crypto echo_b "${CRYPTO_CONFIG} existed, won't regenerate it." GEN_CRYPTO=false else - mkdir ${CRYPTO_CONFIG} + echo_b "${CRYPTO_CONFIG} not exists, generate later." + mkdir -p ${CRYPTO_CONFIG} fi -GEN_ARTIFACTS=true +echo_b "Make sure channel-artifacts dir exists already" if [ ! -d ${CHANNEL_ARTIFACTS} ]; then echo_b "${CHANNEL_ARTIFACTS} not exists, create it." - mkdir ${CHANNEL_ARTIFACTS} + mkdir -p ${CHANNEL_ARTIFACTS} fi echo_b "Starting container $GEN_CONTAINER in background" @@ -59,20 +55,18 @@ docker run \ if [ "${GEN_CRYPTO}" = "true" ]; then echo_b "Generating crypto-config" - con_exec cryptogen generate --config=$FABRIC_CFG_PATH/crypto-config.yaml --output ${FABRIC_CFG_PATH}/${CRYPTO_CONFIG} + gen_con_exec cryptogen generate --config=$FABRIC_CFG_PATH/crypto-config.yaml --output ${FABRIC_CFG_PATH}/${CRYPTO_CONFIG} fi -if [ "${GEN_ARTIFACTS}" = "true" ]; then - echo_b "Generate genesis block for system channel using configtx.yaml" - [ -f ${CHANNEL_ARTIFACTS}/${ORDERER_GENESIS} ] || con_exec configtxgen -profile ${ORDERER_PROFILE} -outputBlock /tmp/${CHANNEL_ARTIFACTS}/${ORDERER_GENESIS} +echo_b "Generate genesis block for system channel using configtx.yaml" +[ -f ${CHANNEL_ARTIFACTS}/${ORDERER_GENESIS} ] || gen_con_exec configtxgen -profile ${ORDERER_PROFILE} -outputBlock /tmp/${CHANNEL_ARTIFACTS}/${ORDERER_GENESIS} - echo_b "Create the new app channel tx using configtx.yaml" - [ -f ${CHANNEL_ARTIFACTS}/${APP_CHANNEL_TX} ] || con_exec configtxgen -profile TwoOrgsChannel -outputCreateChannelTx /tmp/$CHANNEL_ARTIFACTS/${APP_CHANNEL_TX} -channelID ${APP_CHANNEL} +echo_b "Create the new app channel tx using configtx.yaml" +[ -f ${CHANNEL_ARTIFACTS}/${APP_CHANNEL_TX} ] || gen_con_exec configtxgen -profile TwoOrgsChannel -outputCreateChannelTx /tmp/$CHANNEL_ARTIFACTS/${APP_CHANNEL_TX} -channelID ${APP_CHANNEL} - echo_b "Create the anchor peer configuration tx using configtx.yaml" - [ -f ${CHANNEL_ARTIFACTS}/${UPDATE_ANCHOR_ORG1_TX} ] || con_exec configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate /tmp/${CHANNEL_ARTIFACTS}/${UPDATE_ANCHOR_ORG1_TX} -channelID ${APP_CHANNEL} -asOrg Org1MSP - [ -f ${CHANNEL_ARTIFACTS}/${UPDATE_ANCHOR_ORG2_TX} ] || con_exec configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate /tmp/${CHANNEL_ARTIFACTS}/${UPDATE_ANCHOR_ORG2_TX} -channelID ${APP_CHANNEL} -asOrg Org2MSP -fi +echo_b "Create the anchor peer configuration tx using configtx.yaml" +[ -f ${CHANNEL_ARTIFACTS}/${UPDATE_ANCHOR_ORG1_TX} ] || gen_con_exec configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate /tmp/${CHANNEL_ARTIFACTS}/${UPDATE_ANCHOR_ORG1_TX} -channelID ${APP_CHANNEL} -asOrg Org1MSP +[ -f ${CHANNEL_ARTIFACTS}/${UPDATE_ANCHOR_ORG2_TX} ] || gen_con_exec configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate /tmp/${CHANNEL_ARTIFACTS}/${UPDATE_ANCHOR_ORG2_TX} -channelID ${APP_CHANNEL} -asOrg Org2MSP echo_b "Remove the container $GEN_CONTAINER" && docker rm -f $GEN_CONTAINER diff --git a/hyperledger_fabric/latest/scripts/init_chaincode_dev.sh b/hyperledger_fabric/latest/scripts/init_chaincode_dev.sh index 87b911aa..c7c52df6 100644 --- a/hyperledger_fabric/latest/scripts/init_chaincode_dev.sh +++ b/hyperledger_fabric/latest/scripts/init_chaincode_dev.sh @@ -6,6 +6,9 @@ if [ -f ./func.sh ]; then source ./func.sh elif [ -f scripts/func.sh ]; then source scripts/func.sh +else + echo "Cannot find the func.sh files, pls check" + exit 1 fi echo diff --git a/hyperledger_fabric/latest/scripts/test_channel_create.sh b/hyperledger_fabric/latest/scripts/test_channel_create.sh index 64947fc9..f868f762 100644 --- a/hyperledger_fabric/latest/scripts/test_channel_create.sh +++ b/hyperledger_fabric/latest/scripts/test_channel_create.sh @@ -10,6 +10,3 @@ fi ## Create channel echo_b "Creating channel ${APP_CHANNEL} with ${APP_CHANNEL_TX}..." channelCreate "${APP_CHANNEL}" "${APP_CHANNEL_TX}" 1 0 - -echo_b "Creating channel appchannel..." -channelCreate "appchannel" "new_appchannel.tx" 1 0 diff --git a/hyperledger_fabric/latest/scripts/test_fetch_blocks.sh b/hyperledger_fabric/latest/scripts/test_fetch_blocks.sh index 46f507ae..ad51ae1a 100644 --- a/hyperledger_fabric/latest/scripts/test_fetch_blocks.sh +++ b/hyperledger_fabric/latest/scripts/test_fetch_blocks.sh @@ -14,7 +14,7 @@ peer=0 echo_b "=== Fetching blocks ===" -for i in {0..6} +for i in {0..4} do echo_b "Fetch block $i" channelFetch ${APP_CHANNEL} $org $peer $i @@ -23,7 +23,7 @@ done echo_g "Block fetching done!" -for i in {0..2} +for i in {0..1} do echo_b "Fetch block $i" channelFetch ${SYS_CHANNEL} $org $peer $i diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/Org1MSPanchors.tx b/hyperledger_fabric/latest/solo/channel-artifacts/Org1MSPanchors.tx index 9bd05206..9947cbbf 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/Org1MSPanchors.tx and b/hyperledger_fabric/latest/solo/channel-artifacts/Org1MSPanchors.tx differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_0.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_0.block index dcc77ff1..ea5c81ba 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_0.block and b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_0.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_0.block.json b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_0.block.json index 9a01f9ed..1915ab35 100644 --- a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_0.block.json +++ b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_0.block.json @@ -106,7 +106,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -114,10 +114,10 @@ }, "name": "Org1MSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNSRENDQWVxZ0F3SUJBZ0lSQU1IcWRxVWpjbWdUTDZQTTJTWXJhUTh3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFeU1EZzBNREV3V2hjTk1qY3hNakV3TURnME1ERXcKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NUzVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQkNtMWNnd2dSZ2VuTkJobjlYdVp6UnFId0lWbjRmVElZOEhzMzAvTmNvN2pvd0hxbzV1N0lSWExCaXNua240SQp6L0tPbndneHJiejBETTUzRnZWL2VhYWpYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSVBrZjZXVnZ0dDljMHF2bjc1NHIKR3pwUi84VmtJS1FsWHF4QklRem5pS2xYTUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDV2liVllvTXZIc1g2eApPenNyclBxaExZYklTZDRMaXVMZkNpTDVEa1RUcWdJZ1pjQmdiZDVGekt5enJUektwVDlXK29KQ21rQVBBMG1mCnhFRldrTXRHYmdZPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRU2hqQXdlKzZzeG9TTVo4VXJZS09jVEFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRVd016TTFOVEJhRncweU56RXlNVE13TXpNMU5UQmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3hMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKR3d5eWZETEgwN2RGVmtFdnhKREdPS0dldlVjYVlIcGhadmh6Vjc4TUJYVndJRUdJRU5rN1pzOHgrZHg2aXdJSwpMT0dtWHhxL1dxZDRxTHM2a0Z5WnZxTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1Fnc0s5cEUvcGxJT1YxMG1xZWZVekUKdkNRVTZxYjB4ZkRZc1k2VHhjdXNFMVl3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUw3eFhyWUQxZmt6Y3B4aQp5eVpoRmZFdk1EV0NvVWljUXcyYitjM0dRNk91QWlBMEt0TnVINHlTNCtjMTNXOUxzZDI4WE5RSzg4Rmt3QjJKClFSOXloSkU3ckE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWUrZ0F3SUJBZ0lRYXpUd3QybHc4dXA3NVpDUytGRVFOakFLQmdncWhrak9QUVFEQWpCMk1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHQTFVRUF4TVdkR3h6ClkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1USXdPRFF3TVRCYUZ3MHlOekV5TVRBd09EUXcKTVRCYU1IWXhDekFKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSApFdzFUWVc0Z1JuSmhibU5wYzJOdk1Sa3dGd1lEVlFRS0V4QnZjbWN4TG1WNFlXMXdiR1V1WTI5dE1SOHdIUVlEClZRUURFeFowYkhOallTNXZjbWN4TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJS29aSXpqMEQKQVFjRFFnQUVxZXYzL2hWbmdVRWdoSS9hM3VXQWNadzcwYjVYZ1dud0lLOHdTRHpDWGJqb1dkbDk2alU1TmdBMQo1VnVXNVIyU3VXNnRuNjE5Sm95WDlxcFdCMGJiRktOZk1GMHdEZ1lEVlIwUEFRSC9CQVFEQWdHbU1BOEdBMVVkCkpRUUlNQVlHQkZVZEpRQXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QXBCZ05WSFE0RUlnUWdMQklUTTJyeExIbjUKalBXeUZySmpPandhZWJlYWZ0eW8ycmRpS2Ntajdmc3dDZ1lJS29aSXpqMEVBd0lEU0FBd1JRSWhBTnBoQ0RaUwpUU1ZML0dadDdUNGVaR2hUWFZLMXJtZmNNM0pjODBFMjFXbldBaUI3U0VDZzhRNDRMaU0wdy9YUFcwUkl1V2xzCjBFTG1LSjF1SCs3Y3Y3SnJXUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWUrZ0F3SUJBZ0lRZDlMN1pUUk14NXF3WnEwT1dVZXhSVEFLQmdncWhrak9QUVFEQWpCMk1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHQTFVRUF4TVdkR3h6ClkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1UVXdNek0xTlRCYUZ3MHlOekV5TVRNd016TTEKTlRCYU1IWXhDekFKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSApFdzFUWVc0Z1JuSmhibU5wYzJOdk1Sa3dGd1lEVlFRS0V4QnZjbWN4TG1WNFlXMXdiR1V1WTI5dE1SOHdIUVlEClZRUURFeFowYkhOallTNXZjbWN4TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJS29aSXpqMEQKQVFjRFFnQUVhdFoxeHhjWEQ4OHU0QUduQVR5RUhsNGJsOUVQSTNlQXJDNzBGK1VkOCtMbVRuV3drUjMvRWVOTwpieDJhUExTYi92ZVpONTh1dm1QMnZ0OTdoYktKc2FOZk1GMHdEZ1lEVlIwUEFRSC9CQVFEQWdHbU1BOEdBMVVkCkpRUUlNQVlHQkZVZEpRQXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QXBCZ05WSFE0RUlnUWdybUZCc2dXdUJDTDkKc2x0bEtXMkoyS3AvUHJHQ2ZSYW9lR3ZwTjlYRTZub3dDZ1lJS29aSXpqMEVBd0lEU0FBd1JRSWhBSTBjNDBhNgpmdm44V0ZCNzh2TG5tVHJRTTlDOGVmQjhOdkI3NW9YVjQwem1BaUFVQ3d6VDQzS0dpR0ppUENzdllPWGlwTzFmCkYrWW5NUVJnVzJBWEJpVWhGUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ] }, "type": 0 @@ -224,7 +224,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRQkh6VlRRRlZwNXY2ZXNHRy9BRnZwREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFSVFPK202SXNsSjdTRzJoL0FXdDZVcFZHYklmSDErWGsKRUVBU0x2WXoxd1FMV2g3M2pVbXJEZTBHN1VoTDVSdXltazN1SDErUVZTS1hzZFU4M0dOczdxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnTW5vREx5dkIKOW9ObEpsVk5YdmRzcVgvcnIvYUxnQ2JsWVJiY3QwTDZXVThDSUF3SmlkZ3FjcG5WVzc0TzM0VWJoQW5lcVFDZgpaTThyd0xsZ1Y2WFVlVExXCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU1LZmJSQTQxNnArZlNheFE1cVA4all3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk0vaC8rRFh4cjJsTTFWdFBEd2hsQXlKVnI0WHQrS3YKVkxTbWVZK21YNS8rODAyU1BNcEl4WktFZjY1anp0YXNLQnhHYk9nQUJiZXl4M29YR2Q3ZGU4cWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFENElYSzIKOGJBRXNTZW5aZXUrTi81MGsyYlZqTFBzTXNKM3NFOTFBcmxQeEFJZ1hiMksyOFlPR0FMWUZYc1kvdEdrK2EvMApONSt6L2ZUVGZjaEdmTGFDdHpNPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -232,10 +232,10 @@ }, "name": "Org2MSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRWDEyWGxPSkNpR1FqajBTQ0NweVI1REFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3lMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKbjFwTG4vcEVGYW5BMXhnUTB2cXZ5WkVmODZTY2F4VVpHNEJkMFFlUXpHbnBpUmxYUXRhcHd0TnBySXc4SndaRworOGZDbnlFeWRiY2lTUzdmRjdNRkxhTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1FnSFRRY3hzcVlOSlhUNk9rTE5GTnMKU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUpwOXZqZm5qbkhGTlhhWQp1SmtNY2ExK3BLQmMrSWZGNTJCQlZMRmliMllWQWlCTFM4U2hvd2xDRCt1ajhpOWZ0djFaT1pEZVpFZUp2MDdZCmNOdkFYVThMbFE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVxZ0F3SUJBZ0lSQU10KzR5Yk9LMXI3QjhlYXZMVlRNQlV3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NaTVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQlBHcnRKdEhqMVFsMDJncTdJMFpRUUtKd3Z0WmhwMHQzckN3RjFjRklMVEhJQk00cGhKL1pZSlFhMWxiMTJwTwpzeFN4dUV2UkdURmNaWHR1blVjMFNlV2pYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSUNTcVZ5ckplckY3WW9YREtLZVYKMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUIrcHNpZWs3RnFQMThsMQozczJhbmJ0ZnBpR1RIYkFubTJCaWhwRDlzUlBqQWlBSXZzZHlmbituYjJiQ1FCSzZzb2RiTytMeFNrdVp1bGtQCm9NUjN5Q0gvZUE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQUtHM2phVjU3WnpSTWNNYmQ0ZElrWTR3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qRXlNRGcwTURFeFdoY05NamN4TWpFd01EZzAKTURFeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCSElBK2pnVVVmV0s3cWRoMFU2RHBac0lGYXgwQktZZHBXdkR6Y1M3R1d3T1dHQUdyU09MR1V5bAowMTFzd2V1SlJLZUhPRHB0UUxubTUrV25wb0l6Mmxhalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJQ0RqWlFvNUJFTVoKMVhvMHhrQVJKODFFb3AvV0JReEtJL2hhcTdxZU12dERNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJRm0yVVhHUwpKMEw1K1dIOHpDRTR6L01FSGpSeTdkeHk5eGpSZkNxb2hxYmhBaUF6MXlhK1krTWpaS3ZsTkwwcEpyOTNvbThGCkd6NTFkOHdHb0RjTE4vT0tOUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQVBIWHVlVnByUFBVMngvUjNpQitqZTB3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qRTFNRE16TlRVeFdoY05NamN4TWpFek1ETXoKTlRVeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCQ1ErTnJ0MzRuYjJWQ0RheDYrZmdFa200bnFwN241aGNCY2E2ell5cDRlRFdlRmhvRmtsTHVHZAo2bG1jNVVpZkZLbkVPeDhtdmtva2ovMmNFRUpkU1NDalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJT0k0NEJEMUtVRHMKYXkxNzlBTk5Qa2FjODZ4aFY2alNtTkV3bTdHYW1oSkdNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJSFBlUUt3MwpOOUpUY3BuZVBzVVBzLzdzWHdvTW1OUFY1RTJiYnhNM3B1ZEFBaUI1NG9XTkt0Ulp2ZzVlUXV6d2RnZkhYNjl0CnBBc1YvQ2xxd0JxaGswOUdxUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ] }, "type": 0 @@ -389,7 +389,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRTS90M2dIdWgyQVRiM2p3UjdDeDVkVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNbG9YRFRJM01USXhNREE0TkRBeE1sb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRWZDR1cxZmRieDBPNS9JcE0vZk0yYW1qM3pJVEE3WWIrZDdTSTB2b1g4azFtckdWcCtOYWEKdGhQRFo2TjNKNVJ3dm01K3M0TnVWT3NEMHVmbm5aTC9DNk5OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZ3dKQXZNWEZIVVlQZzkvTWJBckVtWGRDdU53cXpoUGhGCjk0c3hyRkRNdFVjd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ1d0OVd5ZkwrT2lzeFlFY1VqNDVnUmFLSUxqTHIKNE80eUptOVAwUTlKTXVvQ0lHRTVwZDFMOWxHTzB6dHhTb1hYTXhrL2tmYUlpaHlGbEs5K2xOSTI0QzNBCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRV1BvVHBQZSt3eFFuNFlDMW56S1pVVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRVR4R1lRdHdXVStqdUgxV1BtNmE4ckplRk9RU0FtUWZab1VHNXdXZzZzeENaMTBuWDlGbEQKRVNaMnpUZDYwcjVzVGhYSmxBblpoSG1pMGdTNUIrOVNSS05OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZy9IS0R4R0s0S1hsYjdBNmhkU3A1R0ZZRnhIWmNYWW0xCllubXEwa3hEZGpVd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ2ZhamFrRVVOeGcrdmRWVU9taVJHOStYT3FyT2EKc3FvK21RYmVtV2R4TGljQ0lDZzFpTWxtUkJjdFhtSmVMOXY0RldDYmExZnRnazd4eFh6d1JmWWUva2M4Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -397,10 +397,10 @@ }, "name": "OrdererMSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRXZ0F3SUJBZ0lRU3o1MVV2bmE4eVBYT3NGaUswbHJBVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNVm9YRFRJM01USXhNREE0TkRBeE1Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJDUTRNQURILzltTkdVWCtoTVFwWmlMRjZoOGkKWmpVNG5zQnM2Yk5ZdURUREc1alJQVVF2OEQvaXE2VzFMTnhZbURyaFFZS0NUYlB1L1ZkTVBWMFJxMktqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJTUNRTHpGeFIxR0Q0UGZ6R3dLeEpsM1FyamNLczRUNFJmZUxNYXhRekxWSE1Bb0cKQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUURNeFBiNXdac1lSM0d0Nm5KdU1XSVhaR09UZjZ1bzRZcFR1c2Uxd2lYZwowQUlnRGtWSHJHRW5ia0Z4cXhndDhwZzIwOEZrZWZmblZZS1dhUDF2YnFPdlNDYz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRXZ0F3SUJBZ0lRR1hmNXpFZ2psZWprRTFySlcyem53REFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJGU0tQUnNYblh2YVRUcVJLamtUUllZb1BqR2cKVGdYUkFvTVF3SSs5QWFMWFRTTCtBc0Fwd2x4ZWRyK1BKK1VnZkJOY3hleTIyNllTWlJKcUxlaUgvVGFqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJUHh5ZzhSaXVDbDVXK3dPb1hVcWVSaFdCY1IyWEYySnRXSjVxdEpNUTNZMU1Bb0cKQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUUNvUnJsWllQaDBRbnNwM1o5S2l0bVREa1JxaTZKeVI0UkxpT3lmdjhUZgpRZ0lnZEhiRnFYR1RaMEhGUW1rblVGZDVERDRUVGx0djhJam1mbThKMXNrUzRqYz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR1Z0F3SUJBZ0lRSG9NcWNCakFsQXFIODhjb00vanUrREFLQmdncWhrak9QUVFEQWpCc01Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4R2pBWUJnTlZCQU1URVhSc2MyTmhMbVY0CllXMXdiR1V1WTI5dE1CNFhEVEUzTVRJeE1qQTROREF4TVZvWERUSTNNVEl4TURBNE5EQXhNVm93YkRFTE1Ba0cKQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdQpZMmx6WTI4eEZEQVNCZ05WQkFvVEMyVjRZVzF3YkdVdVkyOXRNUm93R0FZRFZRUURFeEYwYkhOallTNWxlR0Z0CmNHeGxMbU52YlRCWk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkF5cFJOSmpib1pqSHdqRElLK2YKYTc4TkUvNUdnOHlrelIzOGM0MUN0cnFqNldOTkZiSkZkcUV4WnE5L1NybnV4NUlCMjJFblV6eVd1M2RpV1lLTAp1Y0tqWHpCZE1BNEdBMVVkRHdFQi93UUVBd0lCcGpBUEJnTlZIU1VFQ0RBR0JnUlZIU1VBTUE4R0ExVWRFd0VCCi93UUZNQU1CQWY4d0tRWURWUjBPQkNJRUlNZlFlM3pBRVFpSXJBRjRwZUM0a2RHOUMxWG4rQUI2UzJaeTRlUjEKZzBTZE1Bb0dDQ3FHU000OUJBTUNBMGdBTUVVQ0lRRDV5akFtTTBHS3BWeFVqVVkyL0lBN3pmeXNQSXBhQ0p5RQpzNVJHN2xtZG5BSWdMb0lXZUYvUXNmV1dYVlM3K3dhRTJOVld3cENDZ3hqekd3K1B3ajE2T2p3PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR5Z0F3SUJBZ0lSQUlyYWx1UFN0RmhWaEVyZFpRZEtDS0F3Q2dZSUtvWkl6ajBFQXdJd2JERUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJvd0dBWURWUVFERXhGMGJITmpZUzVsCmVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1UVXdNek0xTlRGYUZ3MHlOekV5TVRNd016TTFOVEZhTUd3eEN6QUoKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaApibU5wYzJOdk1SUXdFZ1lEVlFRS0V3dGxlR0Z0Y0d4bExtTnZiVEVhTUJnR0ExVUVBeE1SZEd4elkyRXVaWGhoCmJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxaGtqT1BRTUJCd05DQUFTRkp0dnBDMmhoY2l4RXZPYisKTW1VYW5IWDQwMTJVSldGeXZxR1RWYlpDYnpGbDBBb1luUkQ4azllcnRsazQvYmxiSGVuRW1wM05zUGkxRXNJVQp3azVHbzE4d1hUQU9CZ05WSFE4QkFmOEVCQU1DQWFZd0R3WURWUjBsQkFnd0JnWUVWUjBsQURBUEJnTlZIUk1CCkFmOEVCVEFEQVFIL01Da0dBMVVkRGdRaUJDQklPWlFkUGVLOUN0dFdSUnFUME5LaXE3RjZabktSRll4UVVjcG0KOFcvQi96QUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQWFrNTlBS21vMkw1UEZTME4rWjhMem5uTW5mKzBNVEt2bgpJN2pRTDdZN0dRSWdPTktjWWRvS3duYzhPcUdObzJLQXl3RTJlTVVKZUxHaVFLeTB0NTAydW1RPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ] }, "type": 0 @@ -686,13 +686,13 @@ }, "signatures": [ { - "signature": "MEUCIQCNxcS1g9XCoVprGWbBszkTYO9WAMoecCTCR9CnJ+/W1wIgEg4XrAZZMbJumMMlbp9otQMoJQrLggWrnfE4jQByYrI=", + "signature": "MEUCIQCazo5PfQ0n42xW0GriczCJJjky5mzHHyIlQbyqbzCK4AIgKWqVaM0xD1sK5D/OB1gErDX4LB6jUj+8RsbKn+RskfA=", "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org1MSP" }, - "nonce": "HKGASDEhOpU7q14xu5LKmKXg8VFvbvzj" + "nonce": "K/VNSIgQcuGO7M+RVUw3JPG9y8wqP+JE" } } ] @@ -701,47 +701,47 @@ "channel_header": { "channel_id": "businesschannel", "epoch": "0", - "timestamp": "2017-12-12T14:19:39.000Z", + "timestamp": "2017-12-15T03:49:14.000Z", "tx_id": "", "type": 2, "version": 0 }, "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org1MSP" }, - "nonce": "WsrIF4FPzdYXjNF/F/ahioDaLPimj7yv" + "nonce": "sHghUFe49Yd4KmspZ8EEVsKOtLFj2sha" } } }, - "signature": "MEQCIBwcz+9UBvr/sPWqQvDMH46gGKo0qrm1hQiMwplSHxD1AiAGazyjkzfvhDzsKLfKBwIAfzsGVwRSH6X5SedFBJJs4g==" + "signature": "MEUCIQCvW2sVhJTv4Wgxoh/wAKcKqcX6hAdPcwACnd3s8RgNMwIgBEP8ZJzgzgYJdCVlGsNH4cKnqUA84Ip9mjH6kOpYJ2M=" } }, "header": { "channel_header": { "channel_id": "businesschannel", "epoch": "0", - "timestamp": "2017-12-12T14:19:39.000Z", + "timestamp": "2017-12-15T03:49:14.000Z", "tx_id": "", "type": 1, "version": 0 }, "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNERENDQWJLZ0F3SUJBZ0lRWlFCMmZ6M3ZvVFdYODNPNnVOWSt5akFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNVm9YRFRJM01USXhNREE0TkRBeE1Wb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBUnNRbE1uang2d3pMUTNFVkk1ekNXeFhFSFJIQTBGZ0pvYUhYY2NQWllaTXRnQ1NLaE4KdFY0bUJPMXYreFVlOSsxN1U5Ty9GcDdpS1RhbGhiL2VnbnF3bzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDREFrQzh4Y1VkUmcrRDM4eHNDc1NaZDBLNDNDck9FCitFWDNpekdzVU15MVJ6QUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpRUFnbklNTjdoclpTcDRVYVZSOHUrZXRvL3EKWFpOTUdqa3ZkYUFQSG8xYXZnOENJRzZFSkM2NW5vamhLbHVPU0hIQVlranI1Y0dkbWFZRVJJV2ZEc3k1VEZnZAotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDekNDQWJLZ0F3SUJBZ0lRS3d5NnZBbDRwRkNHaEZybUptWjBVVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBU0tTQ2srMnQxbmFZeGdBcFlhTzAwYTlwN2tHMW1tSjEwL2h0TkNKSVNQdlR1VVExY3YKelFPK2lOOTZtTHVNbmk0dXRrQWRmYWtZdFlXaWNBaDA2VzZjbzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDRDhjb1BFWXJncGVWdnNEcUYxS25rWVZnWEVkbHhkCmliVmllYXJTVEVOMk5UQUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQXlPWUZHWUJWYjk4VGptbkRRaC9WVE5SR3YKempmQ2RBaXNvWUNVdzk1clF3SWdERjg0dWE2Z256UDNrRE9VMDRVUVZLazB1U0FEaXRKMjVLejFwVmhpS1FnPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "OrdererMSP" }, - "nonce": "1j+o2NP72tTii07+Fpb2wwKURfUh+WiM" + "nonce": "irWRJdqOf5A4jDQGk35uTkQJ3wTl/V45" } } }, - "signature": "MEQCIHHzv1DKYI30Q+VC5rBMgceVD2s9XuPU8wleEsLm6st0AiBComxmzc3/sbnYbfkFn4GwmPoF83hoF3AYk1zdGAgyVg==" + "signature": "MEUCIQClo31N1DWgax4fI/E6zHw3Ju0W6BaEb+XtJF2xXByOwAIgBSpLittvn9FjRxV/+qLaJNxsj+FuTSzYOkJMsoUg9/8=" } ] }, "header": { - "data_hash": "OmhgK6fLlrvumW85m2N9UGJtk+SFJll+fOSA9ulqErY=", + "data_hash": "Cn6IxRp46lhRD05JHRwV/yB18kEOLye1TTOUKALgnLw=", "number": "0" }, "metadata": { diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_0.block_payload.json b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_0.block_payload.json index 025402d9..a8c05e0a 100644 --- a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_0.block_payload.json +++ b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_0.block_payload.json @@ -102,7 +102,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -110,10 +110,10 @@ }, "name": "Org1MSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNSRENDQWVxZ0F3SUJBZ0lSQU1IcWRxVWpjbWdUTDZQTTJTWXJhUTh3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFeU1EZzBNREV3V2hjTk1qY3hNakV3TURnME1ERXcKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NUzVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQkNtMWNnd2dSZ2VuTkJobjlYdVp6UnFId0lWbjRmVElZOEhzMzAvTmNvN2pvd0hxbzV1N0lSWExCaXNua240SQp6L0tPbndneHJiejBETTUzRnZWL2VhYWpYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSVBrZjZXVnZ0dDljMHF2bjc1NHIKR3pwUi84VmtJS1FsWHF4QklRem5pS2xYTUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDV2liVllvTXZIc1g2eApPenNyclBxaExZYklTZDRMaXVMZkNpTDVEa1RUcWdJZ1pjQmdiZDVGekt5enJUektwVDlXK29KQ21rQVBBMG1mCnhFRldrTXRHYmdZPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRU2hqQXdlKzZzeG9TTVo4VXJZS09jVEFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRVd016TTFOVEJhRncweU56RXlNVE13TXpNMU5UQmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3hMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKR3d5eWZETEgwN2RGVmtFdnhKREdPS0dldlVjYVlIcGhadmh6Vjc4TUJYVndJRUdJRU5rN1pzOHgrZHg2aXdJSwpMT0dtWHhxL1dxZDRxTHM2a0Z5WnZxTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1Fnc0s5cEUvcGxJT1YxMG1xZWZVekUKdkNRVTZxYjB4ZkRZc1k2VHhjdXNFMVl3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUw3eFhyWUQxZmt6Y3B4aQp5eVpoRmZFdk1EV0NvVWljUXcyYitjM0dRNk91QWlBMEt0TnVINHlTNCtjMTNXOUxzZDI4WE5RSzg4Rmt3QjJKClFSOXloSkU3ckE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWUrZ0F3SUJBZ0lRYXpUd3QybHc4dXA3NVpDUytGRVFOakFLQmdncWhrak9QUVFEQWpCMk1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHQTFVRUF4TVdkR3h6ClkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1USXdPRFF3TVRCYUZ3MHlOekV5TVRBd09EUXcKTVRCYU1IWXhDekFKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSApFdzFUWVc0Z1JuSmhibU5wYzJOdk1Sa3dGd1lEVlFRS0V4QnZjbWN4TG1WNFlXMXdiR1V1WTI5dE1SOHdIUVlEClZRUURFeFowYkhOallTNXZjbWN4TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJS29aSXpqMEQKQVFjRFFnQUVxZXYzL2hWbmdVRWdoSS9hM3VXQWNadzcwYjVYZ1dud0lLOHdTRHpDWGJqb1dkbDk2alU1TmdBMQo1VnVXNVIyU3VXNnRuNjE5Sm95WDlxcFdCMGJiRktOZk1GMHdEZ1lEVlIwUEFRSC9CQVFEQWdHbU1BOEdBMVVkCkpRUUlNQVlHQkZVZEpRQXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QXBCZ05WSFE0RUlnUWdMQklUTTJyeExIbjUKalBXeUZySmpPandhZWJlYWZ0eW8ycmRpS2Ntajdmc3dDZ1lJS29aSXpqMEVBd0lEU0FBd1JRSWhBTnBoQ0RaUwpUU1ZML0dadDdUNGVaR2hUWFZLMXJtZmNNM0pjODBFMjFXbldBaUI3U0VDZzhRNDRMaU0wdy9YUFcwUkl1V2xzCjBFTG1LSjF1SCs3Y3Y3SnJXUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWUrZ0F3SUJBZ0lRZDlMN1pUUk14NXF3WnEwT1dVZXhSVEFLQmdncWhrak9QUVFEQWpCMk1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHQTFVRUF4TVdkR3h6ClkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1UVXdNek0xTlRCYUZ3MHlOekV5TVRNd016TTEKTlRCYU1IWXhDekFKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSApFdzFUWVc0Z1JuSmhibU5wYzJOdk1Sa3dGd1lEVlFRS0V4QnZjbWN4TG1WNFlXMXdiR1V1WTI5dE1SOHdIUVlEClZRUURFeFowYkhOallTNXZjbWN4TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJS29aSXpqMEQKQVFjRFFnQUVhdFoxeHhjWEQ4OHU0QUduQVR5RUhsNGJsOUVQSTNlQXJDNzBGK1VkOCtMbVRuV3drUjMvRWVOTwpieDJhUExTYi92ZVpONTh1dm1QMnZ0OTdoYktKc2FOZk1GMHdEZ1lEVlIwUEFRSC9CQVFEQWdHbU1BOEdBMVVkCkpRUUlNQVlHQkZVZEpRQXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QXBCZ05WSFE0RUlnUWdybUZCc2dXdUJDTDkKc2x0bEtXMkoyS3AvUHJHQ2ZSYW9lR3ZwTjlYRTZub3dDZ1lJS29aSXpqMEVBd0lEU0FBd1JRSWhBSTBjNDBhNgpmdm44V0ZCNzh2TG5tVHJRTTlDOGVmQjhOdkI3NW9YVjQwem1BaUFVQ3d6VDQzS0dpR0ppUENzdllPWGlwTzFmCkYrWW5NUVJnVzJBWEJpVWhGUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ] }, "type": 0 @@ -220,7 +220,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRQkh6VlRRRlZwNXY2ZXNHRy9BRnZwREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFSVFPK202SXNsSjdTRzJoL0FXdDZVcFZHYklmSDErWGsKRUVBU0x2WXoxd1FMV2g3M2pVbXJEZTBHN1VoTDVSdXltazN1SDErUVZTS1hzZFU4M0dOczdxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnTW5vREx5dkIKOW9ObEpsVk5YdmRzcVgvcnIvYUxnQ2JsWVJiY3QwTDZXVThDSUF3SmlkZ3FjcG5WVzc0TzM0VWJoQW5lcVFDZgpaTThyd0xsZ1Y2WFVlVExXCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU1LZmJSQTQxNnArZlNheFE1cVA4all3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk0vaC8rRFh4cjJsTTFWdFBEd2hsQXlKVnI0WHQrS3YKVkxTbWVZK21YNS8rODAyU1BNcEl4WktFZjY1anp0YXNLQnhHYk9nQUJiZXl4M29YR2Q3ZGU4cWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFENElYSzIKOGJBRXNTZW5aZXUrTi81MGsyYlZqTFBzTXNKM3NFOTFBcmxQeEFJZ1hiMksyOFlPR0FMWUZYc1kvdEdrK2EvMApONSt6L2ZUVGZjaEdmTGFDdHpNPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -228,10 +228,10 @@ }, "name": "Org2MSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRWDEyWGxPSkNpR1FqajBTQ0NweVI1REFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3lMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKbjFwTG4vcEVGYW5BMXhnUTB2cXZ5WkVmODZTY2F4VVpHNEJkMFFlUXpHbnBpUmxYUXRhcHd0TnBySXc4SndaRworOGZDbnlFeWRiY2lTUzdmRjdNRkxhTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1FnSFRRY3hzcVlOSlhUNk9rTE5GTnMKU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUpwOXZqZm5qbkhGTlhhWQp1SmtNY2ExK3BLQmMrSWZGNTJCQlZMRmliMllWQWlCTFM4U2hvd2xDRCt1ajhpOWZ0djFaT1pEZVpFZUp2MDdZCmNOdkFYVThMbFE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVxZ0F3SUJBZ0lSQU10KzR5Yk9LMXI3QjhlYXZMVlRNQlV3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NaTVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQlBHcnRKdEhqMVFsMDJncTdJMFpRUUtKd3Z0WmhwMHQzckN3RjFjRklMVEhJQk00cGhKL1pZSlFhMWxiMTJwTwpzeFN4dUV2UkdURmNaWHR1blVjMFNlV2pYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSUNTcVZ5ckplckY3WW9YREtLZVYKMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUIrcHNpZWs3RnFQMThsMQozczJhbmJ0ZnBpR1RIYkFubTJCaWhwRDlzUlBqQWlBSXZzZHlmbituYjJiQ1FCSzZzb2RiTytMeFNrdVp1bGtQCm9NUjN5Q0gvZUE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQUtHM2phVjU3WnpSTWNNYmQ0ZElrWTR3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qRXlNRGcwTURFeFdoY05NamN4TWpFd01EZzAKTURFeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCSElBK2pnVVVmV0s3cWRoMFU2RHBac0lGYXgwQktZZHBXdkR6Y1M3R1d3T1dHQUdyU09MR1V5bAowMTFzd2V1SlJLZUhPRHB0UUxubTUrV25wb0l6Mmxhalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJQ0RqWlFvNUJFTVoKMVhvMHhrQVJKODFFb3AvV0JReEtJL2hhcTdxZU12dERNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJRm0yVVhHUwpKMEw1K1dIOHpDRTR6L01FSGpSeTdkeHk5eGpSZkNxb2hxYmhBaUF6MXlhK1krTWpaS3ZsTkwwcEpyOTNvbThGCkd6NTFkOHdHb0RjTE4vT0tOUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQVBIWHVlVnByUFBVMngvUjNpQitqZTB3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qRTFNRE16TlRVeFdoY05NamN4TWpFek1ETXoKTlRVeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCQ1ErTnJ0MzRuYjJWQ0RheDYrZmdFa200bnFwN241aGNCY2E2ell5cDRlRFdlRmhvRmtsTHVHZAo2bG1jNVVpZkZLbkVPeDhtdmtva2ovMmNFRUpkU1NDalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJT0k0NEJEMUtVRHMKYXkxNzlBTk5Qa2FjODZ4aFY2alNtTkV3bTdHYW1oSkdNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJSFBlUUt3MwpOOUpUY3BuZVBzVVBzLzdzWHdvTW1OUFY1RTJiYnhNM3B1ZEFBaUI1NG9XTkt0Ulp2ZzVlUXV6d2RnZkhYNjl0CnBBc1YvQ2xxd0JxaGswOUdxUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ] }, "type": 0 @@ -385,7 +385,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRTS90M2dIdWgyQVRiM2p3UjdDeDVkVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNbG9YRFRJM01USXhNREE0TkRBeE1sb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRWZDR1cxZmRieDBPNS9JcE0vZk0yYW1qM3pJVEE3WWIrZDdTSTB2b1g4azFtckdWcCtOYWEKdGhQRFo2TjNKNVJ3dm01K3M0TnVWT3NEMHVmbm5aTC9DNk5OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZ3dKQXZNWEZIVVlQZzkvTWJBckVtWGRDdU53cXpoUGhGCjk0c3hyRkRNdFVjd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ1d0OVd5ZkwrT2lzeFlFY1VqNDVnUmFLSUxqTHIKNE80eUptOVAwUTlKTXVvQ0lHRTVwZDFMOWxHTzB6dHhTb1hYTXhrL2tmYUlpaHlGbEs5K2xOSTI0QzNBCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRV1BvVHBQZSt3eFFuNFlDMW56S1pVVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRVR4R1lRdHdXVStqdUgxV1BtNmE4ckplRk9RU0FtUWZab1VHNXdXZzZzeENaMTBuWDlGbEQKRVNaMnpUZDYwcjVzVGhYSmxBblpoSG1pMGdTNUIrOVNSS05OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZy9IS0R4R0s0S1hsYjdBNmhkU3A1R0ZZRnhIWmNYWW0xCllubXEwa3hEZGpVd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ2ZhamFrRVVOeGcrdmRWVU9taVJHOStYT3FyT2EKc3FvK21RYmVtV2R4TGljQ0lDZzFpTWxtUkJjdFhtSmVMOXY0RldDYmExZnRnazd4eFh6d1JmWWUva2M4Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -393,10 +393,10 @@ }, "name": "OrdererMSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRXZ0F3SUJBZ0lRU3o1MVV2bmE4eVBYT3NGaUswbHJBVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNVm9YRFRJM01USXhNREE0TkRBeE1Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJDUTRNQURILzltTkdVWCtoTVFwWmlMRjZoOGkKWmpVNG5zQnM2Yk5ZdURUREc1alJQVVF2OEQvaXE2VzFMTnhZbURyaFFZS0NUYlB1L1ZkTVBWMFJxMktqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJTUNRTHpGeFIxR0Q0UGZ6R3dLeEpsM1FyamNLczRUNFJmZUxNYXhRekxWSE1Bb0cKQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUURNeFBiNXdac1lSM0d0Nm5KdU1XSVhaR09UZjZ1bzRZcFR1c2Uxd2lYZwowQUlnRGtWSHJHRW5ia0Z4cXhndDhwZzIwOEZrZWZmblZZS1dhUDF2YnFPdlNDYz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRXZ0F3SUJBZ0lRR1hmNXpFZ2psZWprRTFySlcyem53REFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJGU0tQUnNYblh2YVRUcVJLamtUUllZb1BqR2cKVGdYUkFvTVF3SSs5QWFMWFRTTCtBc0Fwd2x4ZWRyK1BKK1VnZkJOY3hleTIyNllTWlJKcUxlaUgvVGFqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJUHh5ZzhSaXVDbDVXK3dPb1hVcWVSaFdCY1IyWEYySnRXSjVxdEpNUTNZMU1Bb0cKQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUUNvUnJsWllQaDBRbnNwM1o5S2l0bVREa1JxaTZKeVI0UkxpT3lmdjhUZgpRZ0lnZEhiRnFYR1RaMEhGUW1rblVGZDVERDRUVGx0djhJam1mbThKMXNrUzRqYz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR1Z0F3SUJBZ0lRSG9NcWNCakFsQXFIODhjb00vanUrREFLQmdncWhrak9QUVFEQWpCc01Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4R2pBWUJnTlZCQU1URVhSc2MyTmhMbVY0CllXMXdiR1V1WTI5dE1CNFhEVEUzTVRJeE1qQTROREF4TVZvWERUSTNNVEl4TURBNE5EQXhNVm93YkRFTE1Ba0cKQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdQpZMmx6WTI4eEZEQVNCZ05WQkFvVEMyVjRZVzF3YkdVdVkyOXRNUm93R0FZRFZRUURFeEYwYkhOallTNWxlR0Z0CmNHeGxMbU52YlRCWk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkF5cFJOSmpib1pqSHdqRElLK2YKYTc4TkUvNUdnOHlrelIzOGM0MUN0cnFqNldOTkZiSkZkcUV4WnE5L1NybnV4NUlCMjJFblV6eVd1M2RpV1lLTAp1Y0tqWHpCZE1BNEdBMVVkRHdFQi93UUVBd0lCcGpBUEJnTlZIU1VFQ0RBR0JnUlZIU1VBTUE4R0ExVWRFd0VCCi93UUZNQU1CQWY4d0tRWURWUjBPQkNJRUlNZlFlM3pBRVFpSXJBRjRwZUM0a2RHOUMxWG4rQUI2UzJaeTRlUjEKZzBTZE1Bb0dDQ3FHU000OUJBTUNBMGdBTUVVQ0lRRDV5akFtTTBHS3BWeFVqVVkyL0lBN3pmeXNQSXBhQ0p5RQpzNVJHN2xtZG5BSWdMb0lXZUYvUXNmV1dYVlM3K3dhRTJOVld3cENDZ3hqekd3K1B3ajE2T2p3PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR5Z0F3SUJBZ0lSQUlyYWx1UFN0RmhWaEVyZFpRZEtDS0F3Q2dZSUtvWkl6ajBFQXdJd2JERUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJvd0dBWURWUVFERXhGMGJITmpZUzVsCmVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1UVXdNek0xTlRGYUZ3MHlOekV5TVRNd016TTFOVEZhTUd3eEN6QUoKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaApibU5wYzJOdk1SUXdFZ1lEVlFRS0V3dGxlR0Z0Y0d4bExtTnZiVEVhTUJnR0ExVUVBeE1SZEd4elkyRXVaWGhoCmJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxaGtqT1BRTUJCd05DQUFTRkp0dnBDMmhoY2l4RXZPYisKTW1VYW5IWDQwMTJVSldGeXZxR1RWYlpDYnpGbDBBb1luUkQ4azllcnRsazQvYmxiSGVuRW1wM05zUGkxRXNJVQp3azVHbzE4d1hUQU9CZ05WSFE4QkFmOEVCQU1DQWFZd0R3WURWUjBsQkFnd0JnWUVWUjBsQURBUEJnTlZIUk1CCkFmOEVCVEFEQVFIL01Da0dBMVVkRGdRaUJDQklPWlFkUGVLOUN0dFdSUnFUME5LaXE3RjZabktSRll4UVVjcG0KOFcvQi96QUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQWFrNTlBS21vMkw1UEZTME4rWjhMem5uTW5mKzBNVEt2bgpJN2pRTDdZN0dRSWdPTktjWWRvS3duYzhPcUdObzJLQXl3RTJlTVVKZUxHaVFLeTB0NTAydW1RPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ] }, "type": 0 @@ -682,13 +682,13 @@ }, "signatures": [ { - "signature": "MEUCIQCNxcS1g9XCoVprGWbBszkTYO9WAMoecCTCR9CnJ+/W1wIgEg4XrAZZMbJumMMlbp9otQMoJQrLggWrnfE4jQByYrI=", + "signature": "MEUCIQCazo5PfQ0n42xW0GriczCJJjky5mzHHyIlQbyqbzCK4AIgKWqVaM0xD1sK5D/OB1gErDX4LB6jUj+8RsbKn+RskfA=", "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org1MSP" }, - "nonce": "HKGASDEhOpU7q14xu5LKmKXg8VFvbvzj" + "nonce": "K/VNSIgQcuGO7M+RVUw3JPG9y8wqP+JE" } } ] @@ -697,38 +697,38 @@ "channel_header": { "channel_id": "businesschannel", "epoch": "0", - "timestamp": "2017-12-12T14:19:39.000Z", + "timestamp": "2017-12-15T03:49:14.000Z", "tx_id": "", "type": 2, "version": 0 }, "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org1MSP" }, - "nonce": "WsrIF4FPzdYXjNF/F/ahioDaLPimj7yv" + "nonce": "sHghUFe49Yd4KmspZ8EEVsKOtLFj2sha" } } }, - "signature": "MEQCIBwcz+9UBvr/sPWqQvDMH46gGKo0qrm1hQiMwplSHxD1AiAGazyjkzfvhDzsKLfKBwIAfzsGVwRSH6X5SedFBJJs4g==" + "signature": "MEUCIQCvW2sVhJTv4Wgxoh/wAKcKqcX6hAdPcwACnd3s8RgNMwIgBEP8ZJzgzgYJdCVlGsNH4cKnqUA84Ip9mjH6kOpYJ2M=" } }, "header": { "channel_header": { "channel_id": "businesschannel", "epoch": "0", - "timestamp": "2017-12-12T14:19:39.000Z", + "timestamp": "2017-12-15T03:49:14.000Z", "tx_id": "", "type": 1, "version": 0 }, "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNERENDQWJLZ0F3SUJBZ0lRWlFCMmZ6M3ZvVFdYODNPNnVOWSt5akFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNVm9YRFRJM01USXhNREE0TkRBeE1Wb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBUnNRbE1uang2d3pMUTNFVkk1ekNXeFhFSFJIQTBGZ0pvYUhYY2NQWllaTXRnQ1NLaE4KdFY0bUJPMXYreFVlOSsxN1U5Ty9GcDdpS1RhbGhiL2VnbnF3bzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDREFrQzh4Y1VkUmcrRDM4eHNDc1NaZDBLNDNDck9FCitFWDNpekdzVU15MVJ6QUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpRUFnbklNTjdoclpTcDRVYVZSOHUrZXRvL3EKWFpOTUdqa3ZkYUFQSG8xYXZnOENJRzZFSkM2NW5vamhLbHVPU0hIQVlranI1Y0dkbWFZRVJJV2ZEc3k1VEZnZAotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDekNDQWJLZ0F3SUJBZ0lRS3d5NnZBbDRwRkNHaEZybUptWjBVVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBU0tTQ2srMnQxbmFZeGdBcFlhTzAwYTlwN2tHMW1tSjEwL2h0TkNKSVNQdlR1VVExY3YKelFPK2lOOTZtTHVNbmk0dXRrQWRmYWtZdFlXaWNBaDA2VzZjbzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDRDhjb1BFWXJncGVWdnNEcUYxS25rWVZnWEVkbHhkCmliVmllYXJTVEVOMk5UQUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQXlPWUZHWUJWYjk4VGptbkRRaC9WVE5SR3YKempmQ2RBaXNvWUNVdzk1clF3SWdERjg0dWE2Z256UDNrRE9VMDRVUVZLazB1U0FEaXRKMjVLejFwVmhpS1FnPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "OrdererMSP" }, - "nonce": "1j+o2NP72tTii07+Fpb2wwKURfUh+WiM" + "nonce": "irWRJdqOf5A4jDQGk35uTkQJ3wTl/V45" } } } diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_1.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_1.block index 892625cc..d3b79757 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_1.block and b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_1.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_1.block.json b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_1.block.json index 5065d432..09e19961 100644 --- a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_1.block.json +++ b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_1.block.json @@ -118,7 +118,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -126,10 +126,10 @@ }, "name": "Org1MSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNSRENDQWVxZ0F3SUJBZ0lSQU1IcWRxVWpjbWdUTDZQTTJTWXJhUTh3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFeU1EZzBNREV3V2hjTk1qY3hNakV3TURnME1ERXcKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NUzVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQkNtMWNnd2dSZ2VuTkJobjlYdVp6UnFId0lWbjRmVElZOEhzMzAvTmNvN2pvd0hxbzV1N0lSWExCaXNua240SQp6L0tPbndneHJiejBETTUzRnZWL2VhYWpYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSVBrZjZXVnZ0dDljMHF2bjc1NHIKR3pwUi84VmtJS1FsWHF4QklRem5pS2xYTUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDV2liVllvTXZIc1g2eApPenNyclBxaExZYklTZDRMaXVMZkNpTDVEa1RUcWdJZ1pjQmdiZDVGekt5enJUektwVDlXK29KQ21rQVBBMG1mCnhFRldrTXRHYmdZPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRU2hqQXdlKzZzeG9TTVo4VXJZS09jVEFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRVd016TTFOVEJhRncweU56RXlNVE13TXpNMU5UQmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3hMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKR3d5eWZETEgwN2RGVmtFdnhKREdPS0dldlVjYVlIcGhadmh6Vjc4TUJYVndJRUdJRU5rN1pzOHgrZHg2aXdJSwpMT0dtWHhxL1dxZDRxTHM2a0Z5WnZxTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1Fnc0s5cEUvcGxJT1YxMG1xZWZVekUKdkNRVTZxYjB4ZkRZc1k2VHhjdXNFMVl3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUw3eFhyWUQxZmt6Y3B4aQp5eVpoRmZFdk1EV0NvVWljUXcyYitjM0dRNk91QWlBMEt0TnVINHlTNCtjMTNXOUxzZDI4WE5RSzg4Rmt3QjJKClFSOXloSkU3ckE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWUrZ0F3SUJBZ0lRYXpUd3QybHc4dXA3NVpDUytGRVFOakFLQmdncWhrak9QUVFEQWpCMk1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHQTFVRUF4TVdkR3h6ClkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1USXdPRFF3TVRCYUZ3MHlOekV5TVRBd09EUXcKTVRCYU1IWXhDekFKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSApFdzFUWVc0Z1JuSmhibU5wYzJOdk1Sa3dGd1lEVlFRS0V4QnZjbWN4TG1WNFlXMXdiR1V1WTI5dE1SOHdIUVlEClZRUURFeFowYkhOallTNXZjbWN4TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJS29aSXpqMEQKQVFjRFFnQUVxZXYzL2hWbmdVRWdoSS9hM3VXQWNadzcwYjVYZ1dud0lLOHdTRHpDWGJqb1dkbDk2alU1TmdBMQo1VnVXNVIyU3VXNnRuNjE5Sm95WDlxcFdCMGJiRktOZk1GMHdEZ1lEVlIwUEFRSC9CQVFEQWdHbU1BOEdBMVVkCkpRUUlNQVlHQkZVZEpRQXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QXBCZ05WSFE0RUlnUWdMQklUTTJyeExIbjUKalBXeUZySmpPandhZWJlYWZ0eW8ycmRpS2Ntajdmc3dDZ1lJS29aSXpqMEVBd0lEU0FBd1JRSWhBTnBoQ0RaUwpUU1ZML0dadDdUNGVaR2hUWFZLMXJtZmNNM0pjODBFMjFXbldBaUI3U0VDZzhRNDRMaU0wdy9YUFcwUkl1V2xzCjBFTG1LSjF1SCs3Y3Y3SnJXUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWUrZ0F3SUJBZ0lRZDlMN1pUUk14NXF3WnEwT1dVZXhSVEFLQmdncWhrak9QUVFEQWpCMk1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHQTFVRUF4TVdkR3h6ClkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1UVXdNek0xTlRCYUZ3MHlOekV5TVRNd016TTEKTlRCYU1IWXhDekFKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSApFdzFUWVc0Z1JuSmhibU5wYzJOdk1Sa3dGd1lEVlFRS0V4QnZjbWN4TG1WNFlXMXdiR1V1WTI5dE1SOHdIUVlEClZRUURFeFowYkhOallTNXZjbWN4TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJS29aSXpqMEQKQVFjRFFnQUVhdFoxeHhjWEQ4OHU0QUduQVR5RUhsNGJsOUVQSTNlQXJDNzBGK1VkOCtMbVRuV3drUjMvRWVOTwpieDJhUExTYi92ZVpONTh1dm1QMnZ0OTdoYktKc2FOZk1GMHdEZ1lEVlIwUEFRSC9CQVFEQWdHbU1BOEdBMVVkCkpRUUlNQVlHQkZVZEpRQXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QXBCZ05WSFE0RUlnUWdybUZCc2dXdUJDTDkKc2x0bEtXMkoyS3AvUHJHQ2ZSYW9lR3ZwTjlYRTZub3dDZ1lJS29aSXpqMEVBd0lEU0FBd1JRSWhBSTBjNDBhNgpmdm44V0ZCNzh2TG5tVHJRTTlDOGVmQjhOdkI3NW9YVjQwem1BaUFVQ3d6VDQzS0dpR0ppUENzdllPWGlwTzFmCkYrWW5NUVJnVzJBWEJpVWhGUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ] }, "type": 0 @@ -236,7 +236,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRQkh6VlRRRlZwNXY2ZXNHRy9BRnZwREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFSVFPK202SXNsSjdTRzJoL0FXdDZVcFZHYklmSDErWGsKRUVBU0x2WXoxd1FMV2g3M2pVbXJEZTBHN1VoTDVSdXltazN1SDErUVZTS1hzZFU4M0dOczdxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnTW5vREx5dkIKOW9ObEpsVk5YdmRzcVgvcnIvYUxnQ2JsWVJiY3QwTDZXVThDSUF3SmlkZ3FjcG5WVzc0TzM0VWJoQW5lcVFDZgpaTThyd0xsZ1Y2WFVlVExXCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU1LZmJSQTQxNnArZlNheFE1cVA4all3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk0vaC8rRFh4cjJsTTFWdFBEd2hsQXlKVnI0WHQrS3YKVkxTbWVZK21YNS8rODAyU1BNcEl4WktFZjY1anp0YXNLQnhHYk9nQUJiZXl4M29YR2Q3ZGU4cWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFENElYSzIKOGJBRXNTZW5aZXUrTi81MGsyYlZqTFBzTXNKM3NFOTFBcmxQeEFJZ1hiMksyOFlPR0FMWUZYc1kvdEdrK2EvMApONSt6L2ZUVGZjaEdmTGFDdHpNPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -244,10 +244,10 @@ }, "name": "Org2MSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRWDEyWGxPSkNpR1FqajBTQ0NweVI1REFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3lMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKbjFwTG4vcEVGYW5BMXhnUTB2cXZ5WkVmODZTY2F4VVpHNEJkMFFlUXpHbnBpUmxYUXRhcHd0TnBySXc4SndaRworOGZDbnlFeWRiY2lTUzdmRjdNRkxhTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1FnSFRRY3hzcVlOSlhUNk9rTE5GTnMKU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUpwOXZqZm5qbkhGTlhhWQp1SmtNY2ExK3BLQmMrSWZGNTJCQlZMRmliMllWQWlCTFM4U2hvd2xDRCt1ajhpOWZ0djFaT1pEZVpFZUp2MDdZCmNOdkFYVThMbFE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVxZ0F3SUJBZ0lSQU10KzR5Yk9LMXI3QjhlYXZMVlRNQlV3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NaTVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQlBHcnRKdEhqMVFsMDJncTdJMFpRUUtKd3Z0WmhwMHQzckN3RjFjRklMVEhJQk00cGhKL1pZSlFhMWxiMTJwTwpzeFN4dUV2UkdURmNaWHR1blVjMFNlV2pYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSUNTcVZ5ckplckY3WW9YREtLZVYKMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUIrcHNpZWs3RnFQMThsMQozczJhbmJ0ZnBpR1RIYkFubTJCaWhwRDlzUlBqQWlBSXZzZHlmbituYjJiQ1FCSzZzb2RiTytMeFNrdVp1bGtQCm9NUjN5Q0gvZUE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQUtHM2phVjU3WnpSTWNNYmQ0ZElrWTR3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qRXlNRGcwTURFeFdoY05NamN4TWpFd01EZzAKTURFeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCSElBK2pnVVVmV0s3cWRoMFU2RHBac0lGYXgwQktZZHBXdkR6Y1M3R1d3T1dHQUdyU09MR1V5bAowMTFzd2V1SlJLZUhPRHB0UUxubTUrV25wb0l6Mmxhalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJQ0RqWlFvNUJFTVoKMVhvMHhrQVJKODFFb3AvV0JReEtJL2hhcTdxZU12dERNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJRm0yVVhHUwpKMEw1K1dIOHpDRTR6L01FSGpSeTdkeHk5eGpSZkNxb2hxYmhBaUF6MXlhK1krTWpaS3ZsTkwwcEpyOTNvbThGCkd6NTFkOHdHb0RjTE4vT0tOUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQVBIWHVlVnByUFBVMngvUjNpQitqZTB3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qRTFNRE16TlRVeFdoY05NamN4TWpFek1ETXoKTlRVeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCQ1ErTnJ0MzRuYjJWQ0RheDYrZmdFa200bnFwN241aGNCY2E2ell5cDRlRFdlRmhvRmtsTHVHZAo2bG1jNVVpZkZLbkVPeDhtdmtva2ovMmNFRUpkU1NDalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJT0k0NEJEMUtVRHMKYXkxNzlBTk5Qa2FjODZ4aFY2alNtTkV3bTdHYW1oSkdNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJSFBlUUt3MwpOOUpUY3BuZVBzVVBzLzdzWHdvTW1OUFY1RTJiYnhNM3B1ZEFBaUI1NG9XTkt0Ulp2ZzVlUXV6d2RnZkhYNjl0CnBBc1YvQ2xxd0JxaGswOUdxUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ] }, "type": 0 @@ -401,7 +401,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRTS90M2dIdWgyQVRiM2p3UjdDeDVkVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNbG9YRFRJM01USXhNREE0TkRBeE1sb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRWZDR1cxZmRieDBPNS9JcE0vZk0yYW1qM3pJVEE3WWIrZDdTSTB2b1g4azFtckdWcCtOYWEKdGhQRFo2TjNKNVJ3dm01K3M0TnVWT3NEMHVmbm5aTC9DNk5OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZ3dKQXZNWEZIVVlQZzkvTWJBckVtWGRDdU53cXpoUGhGCjk0c3hyRkRNdFVjd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ1d0OVd5ZkwrT2lzeFlFY1VqNDVnUmFLSUxqTHIKNE80eUptOVAwUTlKTXVvQ0lHRTVwZDFMOWxHTzB6dHhTb1hYTXhrL2tmYUlpaHlGbEs5K2xOSTI0QzNBCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRV1BvVHBQZSt3eFFuNFlDMW56S1pVVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRVR4R1lRdHdXVStqdUgxV1BtNmE4ckplRk9RU0FtUWZab1VHNXdXZzZzeENaMTBuWDlGbEQKRVNaMnpUZDYwcjVzVGhYSmxBblpoSG1pMGdTNUIrOVNSS05OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZy9IS0R4R0s0S1hsYjdBNmhkU3A1R0ZZRnhIWmNYWW0xCllubXEwa3hEZGpVd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ2ZhamFrRVVOeGcrdmRWVU9taVJHOStYT3FyT2EKc3FvK21RYmVtV2R4TGljQ0lDZzFpTWxtUkJjdFhtSmVMOXY0RldDYmExZnRnazd4eFh6d1JmWWUva2M4Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -409,10 +409,10 @@ }, "name": "OrdererMSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRXZ0F3SUJBZ0lRU3o1MVV2bmE4eVBYT3NGaUswbHJBVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNVm9YRFRJM01USXhNREE0TkRBeE1Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJDUTRNQURILzltTkdVWCtoTVFwWmlMRjZoOGkKWmpVNG5zQnM2Yk5ZdURUREc1alJQVVF2OEQvaXE2VzFMTnhZbURyaFFZS0NUYlB1L1ZkTVBWMFJxMktqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJTUNRTHpGeFIxR0Q0UGZ6R3dLeEpsM1FyamNLczRUNFJmZUxNYXhRekxWSE1Bb0cKQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUURNeFBiNXdac1lSM0d0Nm5KdU1XSVhaR09UZjZ1bzRZcFR1c2Uxd2lYZwowQUlnRGtWSHJHRW5ia0Z4cXhndDhwZzIwOEZrZWZmblZZS1dhUDF2YnFPdlNDYz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRXZ0F3SUJBZ0lRR1hmNXpFZ2psZWprRTFySlcyem53REFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJGU0tQUnNYblh2YVRUcVJLamtUUllZb1BqR2cKVGdYUkFvTVF3SSs5QWFMWFRTTCtBc0Fwd2x4ZWRyK1BKK1VnZkJOY3hleTIyNllTWlJKcUxlaUgvVGFqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJUHh5ZzhSaXVDbDVXK3dPb1hVcWVSaFdCY1IyWEYySnRXSjVxdEpNUTNZMU1Bb0cKQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUUNvUnJsWllQaDBRbnNwM1o5S2l0bVREa1JxaTZKeVI0UkxpT3lmdjhUZgpRZ0lnZEhiRnFYR1RaMEhGUW1rblVGZDVERDRUVGx0djhJam1mbThKMXNrUzRqYz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR1Z0F3SUJBZ0lRSG9NcWNCakFsQXFIODhjb00vanUrREFLQmdncWhrak9QUVFEQWpCc01Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4R2pBWUJnTlZCQU1URVhSc2MyTmhMbVY0CllXMXdiR1V1WTI5dE1CNFhEVEUzTVRJeE1qQTROREF4TVZvWERUSTNNVEl4TURBNE5EQXhNVm93YkRFTE1Ba0cKQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdQpZMmx6WTI4eEZEQVNCZ05WQkFvVEMyVjRZVzF3YkdVdVkyOXRNUm93R0FZRFZRUURFeEYwYkhOallTNWxlR0Z0CmNHeGxMbU52YlRCWk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkF5cFJOSmpib1pqSHdqRElLK2YKYTc4TkUvNUdnOHlrelIzOGM0MUN0cnFqNldOTkZiSkZkcUV4WnE5L1NybnV4NUlCMjJFblV6eVd1M2RpV1lLTAp1Y0tqWHpCZE1BNEdBMVVkRHdFQi93UUVBd0lCcGpBUEJnTlZIU1VFQ0RBR0JnUlZIU1VBTUE4R0ExVWRFd0VCCi93UUZNQU1CQWY4d0tRWURWUjBPQkNJRUlNZlFlM3pBRVFpSXJBRjRwZUM0a2RHOUMxWG4rQUI2UzJaeTRlUjEKZzBTZE1Bb0dDQ3FHU000OUJBTUNBMGdBTUVVQ0lRRDV5akFtTTBHS3BWeFVqVVkyL0lBN3pmeXNQSXBhQ0p5RQpzNVJHN2xtZG5BSWdMb0lXZUYvUXNmV1dYVlM3K3dhRTJOVld3cENDZ3hqekd3K1B3ajE2T2p3PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR5Z0F3SUJBZ0lSQUlyYWx1UFN0RmhWaEVyZFpRZEtDS0F3Q2dZSUtvWkl6ajBFQXdJd2JERUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJvd0dBWURWUVFERXhGMGJITmpZUzVsCmVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1UVXdNek0xTlRGYUZ3MHlOekV5TVRNd016TTFOVEZhTUd3eEN6QUoKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaApibU5wYzJOdk1SUXdFZ1lEVlFRS0V3dGxlR0Z0Y0d4bExtTnZiVEVhTUJnR0ExVUVBeE1SZEd4elkyRXVaWGhoCmJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxaGtqT1BRTUJCd05DQUFTRkp0dnBDMmhoY2l4RXZPYisKTW1VYW5IWDQwMTJVSldGeXZxR1RWYlpDYnpGbDBBb1luUkQ4azllcnRsazQvYmxiSGVuRW1wM05zUGkxRXNJVQp3azVHbzE4d1hUQU9CZ05WSFE4QkFmOEVCQU1DQWFZd0R3WURWUjBsQkFnd0JnWUVWUjBsQURBUEJnTlZIUk1CCkFmOEVCVEFEQVFIL01Da0dBMVVkRGdRaUJDQklPWlFkUGVLOUN0dFdSUnFUME5LaXE3RjZabktSRll4UVVjcG0KOFcvQi96QUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQWFrNTlBS21vMkw1UEZTME4rWjhMem5uTW5mKzBNVEt2bgpJN2pRTDdZN0dRSWdPTktjWWRvS3duYzhPcUdObzJLQXl3RTJlTVVKZUxHaVFLeTB0NTAydW1RPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ] }, "type": 0 @@ -686,13 +686,13 @@ }, "signatures": [ { - "signature": "MEQCIG4896ILGHRHV4P1TsHyw9OrRiRVr9a6dMnjb1NUDf4DAiBUMINFh9zjSYTDeH7SS1JvCp1Fp5nCwCQkyPvDBVl3sA==", + "signature": "MEUCIQCb7NUq08DUMjZVuiJUeXkdwE7prkJB8ytz6LBsDBrSFQIgaeXAXAQZPZeP9Hstah0DGXMnnlKpXblldVoIGtRLv9o=", "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org1MSP" }, - "nonce": "m+38DBTZGUoyhZak5oZ05HTreDX0DMSn" + "nonce": "aFE1up/BBskRegbUeE7IIaiS+vsX1BdY" } } ] @@ -701,54 +701,54 @@ "channel_header": { "channel_id": "businesschannel", "epoch": "0", - "timestamp": "2017-12-12T14:19:41.000Z", + "timestamp": "2017-12-15T03:49:15.000Z", "tx_id": "", "type": 2, "version": 0 }, "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org1MSP" }, - "nonce": "Mz/auXpXWgUqH1vYfGj4QBIpgTjevUfu" + "nonce": "WqQEQSKGPBbz1hRRzHN3WDwcuv4f/Ym5" } } }, - "signature": "MEUCIQCXHAvTn9jJzLjpchZRVVEa2CA+BKEHQnhM77DvYshs1gIgcUsYwQPRBcr1SaeJ8hGpWnNQBzUKr5j2pD8Fh39oMgY=" + "signature": "MEQCIBrwtoWVHlisrbg2pby52GBzk+Rn10i8pxqowqnsb5XPAiAbbRnazQzsCMbfZ1L5KttHSxs1G81J/G0bnFZvWLXZJA==" } }, "header": { "channel_header": { "channel_id": "businesschannel", "epoch": "0", - "timestamp": "2017-12-12T14:19:41.000Z", + "timestamp": "2017-12-15T03:49:15.000Z", "tx_id": "", "type": 1, "version": 0 }, "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNERENDQWJLZ0F3SUJBZ0lRWlFCMmZ6M3ZvVFdYODNPNnVOWSt5akFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNVm9YRFRJM01USXhNREE0TkRBeE1Wb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBUnNRbE1uang2d3pMUTNFVkk1ekNXeFhFSFJIQTBGZ0pvYUhYY2NQWllaTXRnQ1NLaE4KdFY0bUJPMXYreFVlOSsxN1U5Ty9GcDdpS1RhbGhiL2VnbnF3bzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDREFrQzh4Y1VkUmcrRDM4eHNDc1NaZDBLNDNDck9FCitFWDNpekdzVU15MVJ6QUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpRUFnbklNTjdoclpTcDRVYVZSOHUrZXRvL3EKWFpOTUdqa3ZkYUFQSG8xYXZnOENJRzZFSkM2NW5vamhLbHVPU0hIQVlranI1Y0dkbWFZRVJJV2ZEc3k1VEZnZAotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDekNDQWJLZ0F3SUJBZ0lRS3d5NnZBbDRwRkNHaEZybUptWjBVVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBU0tTQ2srMnQxbmFZeGdBcFlhTzAwYTlwN2tHMW1tSjEwL2h0TkNKSVNQdlR1VVExY3YKelFPK2lOOTZtTHVNbmk0dXRrQWRmYWtZdFlXaWNBaDA2VzZjbzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDRDhjb1BFWXJncGVWdnNEcUYxS25rWVZnWEVkbHhkCmliVmllYXJTVEVOMk5UQUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQXlPWUZHWUJWYjk4VGptbkRRaC9WVE5SR3YKempmQ2RBaXNvWUNVdzk1clF3SWdERjg0dWE2Z256UDNrRE9VMDRVUVZLazB1U0FEaXRKMjVLejFwVmhpS1FnPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "OrdererMSP" }, - "nonce": "9WIsr5cSoGbMzuoPwaX13SnkjxE0EvLe" + "nonce": "P/pyE1fnWqFsoqN5LFrVfST+7+fdjCrg" } } }, - "signature": "MEQCIBdkk936/yxEFcOS9kX9b4e3lqxF+uDPm3hvsjSIXRdtAiAyktM8l7bSWigIWbZtQ6cU1Atqe1hjao17zD4Z9SkXIA==" + "signature": "MEQCIGg7+bSAmtVfxeIuqrhsUBYLUnwHLmf1BNNwYs5Cwk3RAiBb6Q+RN4nBiReceLZAfjBqNAYIQ6IJAsdEX00O1ealDg==" } ] }, "header": { - "data_hash": "kOELmh0DC4JxRq32x2Yavkz2pwq7+sj3av/Sjjtj7jo=", + "data_hash": "Px3qXvzegybPQEO/np+PLbb/H3++NM5y4texcyb3634=", "number": "1", - "previous_hash": "dZUijXPA8gg/AIQmPw4GJQz6BHpGoZS6o6hKe8WzVO0=" + "previous_hash": "oWDgSEmiew0E6KAR5vdozmb0vqYLxXTR+MHGYL8s4Dg=" }, "metadata": { "metadata": [ - "EvgGCq0GCpAGCgpPcmRlcmVyTVNQEoEGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNERENDQWJLZ0F3SUJBZ0lRWlFCMmZ6M3ZvVFdYODNPNnVOWSt5akFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNVm9YRFRJM01USXhNREE0TkRBeE1Wb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBUnNRbE1uang2d3pMUTNFVkk1ekNXeFhFSFJIQTBGZ0pvYUhYY2NQWllaTXRnQ1NLaE4KdFY0bUJPMXYreFVlOSsxN1U5Ty9GcDdpS1RhbGhiL2VnbnF3bzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDREFrQzh4Y1VkUmcrRDM4eHNDc1NaZDBLNDNDck9FCitFWDNpekdzVU15MVJ6QUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpRUFnbklNTjdoclpTcDRVYVZSOHUrZXRvL3EKWFpOTUdqa3ZkYUFQSG8xYXZnOENJRzZFSkM2NW5vamhLbHVPU0hIQVlranI1Y0dkbWFZRVJJV2ZEc3k1VEZnZAotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIYmTvsDqgmFOAIgd04JloGsDSaI64j2AY6EkYwRAIgNeArOuqdq/AESZsv6owiEcMhAQED3gVOiF07mgcUOykCICUMA2sWMRAJkyS56ky0013VKjN8F/8M3RVBnTp9gGvG", - "CgIIARL5BgqtBgqQBgoKT3JkZXJlck1TUBKBBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDRERDQ0FiS2dBd0lCQWdJUVpRQjJmejN2b1RXWDgzTzZ1TlkreWpBS0JnZ3Foa2pPUFFRREFqQnBNUXN3CkNRWURWUVFHRXdKVlV6RVRNQkVHQTFVRUNCTUtRMkZzYVdadmNtNXBZVEVXTUJRR0ExVUVCeE1OVTJGdUlFWnkKWVc1amFYTmpiekVVTUJJR0ExVUVDaE1MWlhoaGJYQnNaUzVqYjIweEZ6QVZCZ05WQkFNVERtTmhMbVY0WVcxdwpiR1V1WTI5dE1CNFhEVEUzTVRJeE1qQTROREF4TVZvWERUSTNNVEl4TURBNE5EQXhNVm93V0RFTE1Ba0dBMVVFCkJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdVkybHoKWTI4eEhEQWFCZ05WQkFNVEUyOXlaR1Z5WlhJdVpYaGhiWEJzWlM1amIyMHdXVEFUQmdjcWhrak9QUUlCQmdncQpoa2pPUFFNQkJ3TkNBQVJzUWxNbmp4Nnd6TFEzRVZJNXpDV3hYRUhSSEEwRmdKb2FIWGNjUFpZWk10Z0NTS2hOCnRWNG1CTzF2K3hVZTkrMTdVOU8vRnA3aUtUYWxoYi9lZ25xd28wMHdTekFPQmdOVkhROEJBZjhFQkFNQ0I0QXcKREFZRFZSMFRBUUgvQkFJd0FEQXJCZ05WSFNNRUpEQWlnQ0RBa0M4eGNVZFJnK0QzOHhzQ3NTWmQwSzQzQ3JPRQorRVgzaXpHc1VNeTFSekFLQmdncWhrak9QUVFEQWdOSUFEQkZBaUVBZ25JTU43aHJaU3A0VWFWUjh1K2V0by9xClhaTk1Hamt2ZGFBUEhvMWF2ZzhDSUc2RUpDNjVub2poS2x1T1NISEFZa2pyNWNHZG1hWUVSSVdmRHN5NVRGZ2QKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQoSGC+8NWf+4dNBNwyyPnAJuRP45INGKH21vRJHMEUCIQCM+xsL/wetWShKRHzV1f3qLcI4+1YCikwRw8lGcX7QAAIgU98ZVKqWKzQ85S2Ic9jiCKXKMY1pagHBECOHm8X2Rc4=", + "EvgGCq0GCpAGCgpPcmRlcmVyTVNQEoEGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDekNDQWJLZ0F3SUJBZ0lRS3d5NnZBbDRwRkNHaEZybUptWjBVVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBU0tTQ2srMnQxbmFZeGdBcFlhTzAwYTlwN2tHMW1tSjEwL2h0TkNKSVNQdlR1VVExY3YKelFPK2lOOTZtTHVNbmk0dXRrQWRmYWtZdFlXaWNBaDA2VzZjbzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDRDhjb1BFWXJncGVWdnNEcUYxS25rWVZnWEVkbHhkCmliVmllYXJTVEVOMk5UQUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQXlPWUZHWUJWYjk4VGptbkRRaC9WVE5SR3YKempmQ2RBaXNvWUNVdzk1clF3SWdERjg0dWE2Z256UDNrRE9VMDRVUVZLazB1U0FEaXRKMjVLejFwVmhpS1FnPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIY8CMjk6R77mo8NyZmZtTTkFiq2BwY0IBaEkYwRAIgN8EvFOsQuYXTlFwQ7Oq3oYK1AZdcbtUyiv/h9IUwxhMCIBf9D6zWdYoIk6wg4TkBvvRPjWP1bVe9fxG7AB1hMPlr", + "CgIIARL4BgqtBgqQBgoKT3JkZXJlck1TUBKBBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDQ3pDQ0FiS2dBd0lCQWdJUUt3eTZ2QWw0cEZDR2hGcm1KbVowVVRBS0JnZ3Foa2pPUFFRREFqQnBNUXN3CkNRWURWUVFHRXdKVlV6RVRNQkVHQTFVRUNCTUtRMkZzYVdadmNtNXBZVEVXTUJRR0ExVUVCeE1OVTJGdUlFWnkKWVc1amFYTmpiekVVTUJJR0ExVUVDaE1MWlhoaGJYQnNaUzVqYjIweEZ6QVZCZ05WQkFNVERtTmhMbVY0WVcxdwpiR1V1WTI5dE1CNFhEVEUzTVRJeE5UQXpNelUxTVZvWERUSTNNVEl4TXpBek16VTFNVm93V0RFTE1Ba0dBMVVFCkJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdVkybHoKWTI4eEhEQWFCZ05WQkFNVEUyOXlaR1Z5WlhJdVpYaGhiWEJzWlM1amIyMHdXVEFUQmdjcWhrak9QUUlCQmdncQpoa2pPUFFNQkJ3TkNBQVNLU0NrKzJ0MW5hWXhnQXBZYU8wMGE5cDdrRzFtbUoxMC9odE5DSklTUHZUdVVRMWN2CnpRTytpTjk2bUx1TW5pNHV0a0FkZmFrWXRZV2ljQWgwNlc2Y28wMHdTekFPQmdOVkhROEJBZjhFQkFNQ0I0QXcKREFZRFZSMFRBUUgvQkFJd0FEQXJCZ05WSFNNRUpEQWlnQ0Q4Y29QRVlyZ3BlVnZzRHFGMUtua1lWZ1hFZGx4ZAppYlZpZWFyU1RFTjJOVEFLQmdncWhrak9QUVFEQWdOSEFEQkVBaUF5T1lGR1lCVmI5OFRqbW5EUWgvVlROUkd2CnpqZkNkQWlzb1lDVXc5NXJRd0lnREY4NHVhNmduelAza0RPVTA0VVFWS2swdVNBRGl0SjI1S3oxcFZoaUtRZz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQoSGFnyavHmH8OkwRO7cqGSl5o14o5xDMfKpBJGMEQCIHYpsUJKO1Qg21usc+na18I9yxYN6tqI5DJvW83AGvWRAiAG60dCoeQWH7KyDAhRpQQrIip+HCrm8GGJ2sYCu47CMw==", "", "" ] diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_1.block_payload.json b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_1.block_payload.json index 896f0b32..9892eeb0 100644 --- a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_1.block_payload.json +++ b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_1.block_payload.json @@ -114,7 +114,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -122,10 +122,10 @@ }, "name": "Org1MSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNSRENDQWVxZ0F3SUJBZ0lSQU1IcWRxVWpjbWdUTDZQTTJTWXJhUTh3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFeU1EZzBNREV3V2hjTk1qY3hNakV3TURnME1ERXcKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NUzVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQkNtMWNnd2dSZ2VuTkJobjlYdVp6UnFId0lWbjRmVElZOEhzMzAvTmNvN2pvd0hxbzV1N0lSWExCaXNua240SQp6L0tPbndneHJiejBETTUzRnZWL2VhYWpYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSVBrZjZXVnZ0dDljMHF2bjc1NHIKR3pwUi84VmtJS1FsWHF4QklRem5pS2xYTUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDV2liVllvTXZIc1g2eApPenNyclBxaExZYklTZDRMaXVMZkNpTDVEa1RUcWdJZ1pjQmdiZDVGekt5enJUektwVDlXK29KQ21rQVBBMG1mCnhFRldrTXRHYmdZPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRU2hqQXdlKzZzeG9TTVo4VXJZS09jVEFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRVd016TTFOVEJhRncweU56RXlNVE13TXpNMU5UQmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3hMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKR3d5eWZETEgwN2RGVmtFdnhKREdPS0dldlVjYVlIcGhadmh6Vjc4TUJYVndJRUdJRU5rN1pzOHgrZHg2aXdJSwpMT0dtWHhxL1dxZDRxTHM2a0Z5WnZxTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1Fnc0s5cEUvcGxJT1YxMG1xZWZVekUKdkNRVTZxYjB4ZkRZc1k2VHhjdXNFMVl3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUw3eFhyWUQxZmt6Y3B4aQp5eVpoRmZFdk1EV0NvVWljUXcyYitjM0dRNk91QWlBMEt0TnVINHlTNCtjMTNXOUxzZDI4WE5RSzg4Rmt3QjJKClFSOXloSkU3ckE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWUrZ0F3SUJBZ0lRYXpUd3QybHc4dXA3NVpDUytGRVFOakFLQmdncWhrak9QUVFEQWpCMk1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHQTFVRUF4TVdkR3h6ClkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1USXdPRFF3TVRCYUZ3MHlOekV5TVRBd09EUXcKTVRCYU1IWXhDekFKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSApFdzFUWVc0Z1JuSmhibU5wYzJOdk1Sa3dGd1lEVlFRS0V4QnZjbWN4TG1WNFlXMXdiR1V1WTI5dE1SOHdIUVlEClZRUURFeFowYkhOallTNXZjbWN4TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJS29aSXpqMEQKQVFjRFFnQUVxZXYzL2hWbmdVRWdoSS9hM3VXQWNadzcwYjVYZ1dud0lLOHdTRHpDWGJqb1dkbDk2alU1TmdBMQo1VnVXNVIyU3VXNnRuNjE5Sm95WDlxcFdCMGJiRktOZk1GMHdEZ1lEVlIwUEFRSC9CQVFEQWdHbU1BOEdBMVVkCkpRUUlNQVlHQkZVZEpRQXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QXBCZ05WSFE0RUlnUWdMQklUTTJyeExIbjUKalBXeUZySmpPandhZWJlYWZ0eW8ycmRpS2Ntajdmc3dDZ1lJS29aSXpqMEVBd0lEU0FBd1JRSWhBTnBoQ0RaUwpUU1ZML0dadDdUNGVaR2hUWFZLMXJtZmNNM0pjODBFMjFXbldBaUI3U0VDZzhRNDRMaU0wdy9YUFcwUkl1V2xzCjBFTG1LSjF1SCs3Y3Y3SnJXUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWUrZ0F3SUJBZ0lRZDlMN1pUUk14NXF3WnEwT1dVZXhSVEFLQmdncWhrak9QUVFEQWpCMk1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHQTFVRUF4TVdkR3h6ClkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1UVXdNek0xTlRCYUZ3MHlOekV5TVRNd016TTEKTlRCYU1IWXhDekFKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSApFdzFUWVc0Z1JuSmhibU5wYzJOdk1Sa3dGd1lEVlFRS0V4QnZjbWN4TG1WNFlXMXdiR1V1WTI5dE1SOHdIUVlEClZRUURFeFowYkhOallTNXZjbWN4TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJS29aSXpqMEQKQVFjRFFnQUVhdFoxeHhjWEQ4OHU0QUduQVR5RUhsNGJsOUVQSTNlQXJDNzBGK1VkOCtMbVRuV3drUjMvRWVOTwpieDJhUExTYi92ZVpONTh1dm1QMnZ0OTdoYktKc2FOZk1GMHdEZ1lEVlIwUEFRSC9CQVFEQWdHbU1BOEdBMVVkCkpRUUlNQVlHQkZVZEpRQXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QXBCZ05WSFE0RUlnUWdybUZCc2dXdUJDTDkKc2x0bEtXMkoyS3AvUHJHQ2ZSYW9lR3ZwTjlYRTZub3dDZ1lJS29aSXpqMEVBd0lEU0FBd1JRSWhBSTBjNDBhNgpmdm44V0ZCNzh2TG5tVHJRTTlDOGVmQjhOdkI3NW9YVjQwem1BaUFVQ3d6VDQzS0dpR0ppUENzdllPWGlwTzFmCkYrWW5NUVJnVzJBWEJpVWhGUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ] }, "type": 0 @@ -232,7 +232,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRQkh6VlRRRlZwNXY2ZXNHRy9BRnZwREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFSVFPK202SXNsSjdTRzJoL0FXdDZVcFZHYklmSDErWGsKRUVBU0x2WXoxd1FMV2g3M2pVbXJEZTBHN1VoTDVSdXltazN1SDErUVZTS1hzZFU4M0dOczdxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnTW5vREx5dkIKOW9ObEpsVk5YdmRzcVgvcnIvYUxnQ2JsWVJiY3QwTDZXVThDSUF3SmlkZ3FjcG5WVzc0TzM0VWJoQW5lcVFDZgpaTThyd0xsZ1Y2WFVlVExXCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU1LZmJSQTQxNnArZlNheFE1cVA4all3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk0vaC8rRFh4cjJsTTFWdFBEd2hsQXlKVnI0WHQrS3YKVkxTbWVZK21YNS8rODAyU1BNcEl4WktFZjY1anp0YXNLQnhHYk9nQUJiZXl4M29YR2Q3ZGU4cWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFENElYSzIKOGJBRXNTZW5aZXUrTi81MGsyYlZqTFBzTXNKM3NFOTFBcmxQeEFJZ1hiMksyOFlPR0FMWUZYc1kvdEdrK2EvMApONSt6L2ZUVGZjaEdmTGFDdHpNPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -240,10 +240,10 @@ }, "name": "Org2MSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRWDEyWGxPSkNpR1FqajBTQ0NweVI1REFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3lMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKbjFwTG4vcEVGYW5BMXhnUTB2cXZ5WkVmODZTY2F4VVpHNEJkMFFlUXpHbnBpUmxYUXRhcHd0TnBySXc4SndaRworOGZDbnlFeWRiY2lTUzdmRjdNRkxhTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1FnSFRRY3hzcVlOSlhUNk9rTE5GTnMKU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUpwOXZqZm5qbkhGTlhhWQp1SmtNY2ExK3BLQmMrSWZGNTJCQlZMRmliMllWQWlCTFM4U2hvd2xDRCt1ajhpOWZ0djFaT1pEZVpFZUp2MDdZCmNOdkFYVThMbFE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVxZ0F3SUJBZ0lSQU10KzR5Yk9LMXI3QjhlYXZMVlRNQlV3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NaTVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQlBHcnRKdEhqMVFsMDJncTdJMFpRUUtKd3Z0WmhwMHQzckN3RjFjRklMVEhJQk00cGhKL1pZSlFhMWxiMTJwTwpzeFN4dUV2UkdURmNaWHR1blVjMFNlV2pYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSUNTcVZ5ckplckY3WW9YREtLZVYKMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUIrcHNpZWs3RnFQMThsMQozczJhbmJ0ZnBpR1RIYkFubTJCaWhwRDlzUlBqQWlBSXZzZHlmbituYjJiQ1FCSzZzb2RiTytMeFNrdVp1bGtQCm9NUjN5Q0gvZUE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQUtHM2phVjU3WnpSTWNNYmQ0ZElrWTR3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qRXlNRGcwTURFeFdoY05NamN4TWpFd01EZzAKTURFeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCSElBK2pnVVVmV0s3cWRoMFU2RHBac0lGYXgwQktZZHBXdkR6Y1M3R1d3T1dHQUdyU09MR1V5bAowMTFzd2V1SlJLZUhPRHB0UUxubTUrV25wb0l6Mmxhalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJQ0RqWlFvNUJFTVoKMVhvMHhrQVJKODFFb3AvV0JReEtJL2hhcTdxZU12dERNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJRm0yVVhHUwpKMEw1K1dIOHpDRTR6L01FSGpSeTdkeHk5eGpSZkNxb2hxYmhBaUF6MXlhK1krTWpaS3ZsTkwwcEpyOTNvbThGCkd6NTFkOHdHb0RjTE4vT0tOUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQVBIWHVlVnByUFBVMngvUjNpQitqZTB3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qRTFNRE16TlRVeFdoY05NamN4TWpFek1ETXoKTlRVeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCQ1ErTnJ0MzRuYjJWQ0RheDYrZmdFa200bnFwN241aGNCY2E2ell5cDRlRFdlRmhvRmtsTHVHZAo2bG1jNVVpZkZLbkVPeDhtdmtva2ovMmNFRUpkU1NDalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJT0k0NEJEMUtVRHMKYXkxNzlBTk5Qa2FjODZ4aFY2alNtTkV3bTdHYW1oSkdNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJSFBlUUt3MwpOOUpUY3BuZVBzVVBzLzdzWHdvTW1OUFY1RTJiYnhNM3B1ZEFBaUI1NG9XTkt0Ulp2ZzVlUXV6d2RnZkhYNjl0CnBBc1YvQ2xxd0JxaGswOUdxUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ] }, "type": 0 @@ -397,7 +397,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRTS90M2dIdWgyQVRiM2p3UjdDeDVkVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNbG9YRFRJM01USXhNREE0TkRBeE1sb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRWZDR1cxZmRieDBPNS9JcE0vZk0yYW1qM3pJVEE3WWIrZDdTSTB2b1g4azFtckdWcCtOYWEKdGhQRFo2TjNKNVJ3dm01K3M0TnVWT3NEMHVmbm5aTC9DNk5OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZ3dKQXZNWEZIVVlQZzkvTWJBckVtWGRDdU53cXpoUGhGCjk0c3hyRkRNdFVjd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ1d0OVd5ZkwrT2lzeFlFY1VqNDVnUmFLSUxqTHIKNE80eUptOVAwUTlKTXVvQ0lHRTVwZDFMOWxHTzB6dHhTb1hYTXhrL2tmYUlpaHlGbEs5K2xOSTI0QzNBCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRV1BvVHBQZSt3eFFuNFlDMW56S1pVVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRVR4R1lRdHdXVStqdUgxV1BtNmE4ckplRk9RU0FtUWZab1VHNXdXZzZzeENaMTBuWDlGbEQKRVNaMnpUZDYwcjVzVGhYSmxBblpoSG1pMGdTNUIrOVNSS05OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZy9IS0R4R0s0S1hsYjdBNmhkU3A1R0ZZRnhIWmNYWW0xCllubXEwa3hEZGpVd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ2ZhamFrRVVOeGcrdmRWVU9taVJHOStYT3FyT2EKc3FvK21RYmVtV2R4TGljQ0lDZzFpTWxtUkJjdFhtSmVMOXY0RldDYmExZnRnazd4eFh6d1JmWWUva2M4Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -405,10 +405,10 @@ }, "name": "OrdererMSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRXZ0F3SUJBZ0lRU3o1MVV2bmE4eVBYT3NGaUswbHJBVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNVm9YRFRJM01USXhNREE0TkRBeE1Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJDUTRNQURILzltTkdVWCtoTVFwWmlMRjZoOGkKWmpVNG5zQnM2Yk5ZdURUREc1alJQVVF2OEQvaXE2VzFMTnhZbURyaFFZS0NUYlB1L1ZkTVBWMFJxMktqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJTUNRTHpGeFIxR0Q0UGZ6R3dLeEpsM1FyamNLczRUNFJmZUxNYXhRekxWSE1Bb0cKQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUURNeFBiNXdac1lSM0d0Nm5KdU1XSVhaR09UZjZ1bzRZcFR1c2Uxd2lYZwowQUlnRGtWSHJHRW5ia0Z4cXhndDhwZzIwOEZrZWZmblZZS1dhUDF2YnFPdlNDYz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRXZ0F3SUJBZ0lRR1hmNXpFZ2psZWprRTFySlcyem53REFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJGU0tQUnNYblh2YVRUcVJLamtUUllZb1BqR2cKVGdYUkFvTVF3SSs5QWFMWFRTTCtBc0Fwd2x4ZWRyK1BKK1VnZkJOY3hleTIyNllTWlJKcUxlaUgvVGFqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJUHh5ZzhSaXVDbDVXK3dPb1hVcWVSaFdCY1IyWEYySnRXSjVxdEpNUTNZMU1Bb0cKQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUUNvUnJsWllQaDBRbnNwM1o5S2l0bVREa1JxaTZKeVI0UkxpT3lmdjhUZgpRZ0lnZEhiRnFYR1RaMEhGUW1rblVGZDVERDRUVGx0djhJam1mbThKMXNrUzRqYz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR1Z0F3SUJBZ0lRSG9NcWNCakFsQXFIODhjb00vanUrREFLQmdncWhrak9QUVFEQWpCc01Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4R2pBWUJnTlZCQU1URVhSc2MyTmhMbVY0CllXMXdiR1V1WTI5dE1CNFhEVEUzTVRJeE1qQTROREF4TVZvWERUSTNNVEl4TURBNE5EQXhNVm93YkRFTE1Ba0cKQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdQpZMmx6WTI4eEZEQVNCZ05WQkFvVEMyVjRZVzF3YkdVdVkyOXRNUm93R0FZRFZRUURFeEYwYkhOallTNWxlR0Z0CmNHeGxMbU52YlRCWk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkF5cFJOSmpib1pqSHdqRElLK2YKYTc4TkUvNUdnOHlrelIzOGM0MUN0cnFqNldOTkZiSkZkcUV4WnE5L1NybnV4NUlCMjJFblV6eVd1M2RpV1lLTAp1Y0tqWHpCZE1BNEdBMVVkRHdFQi93UUVBd0lCcGpBUEJnTlZIU1VFQ0RBR0JnUlZIU1VBTUE4R0ExVWRFd0VCCi93UUZNQU1CQWY4d0tRWURWUjBPQkNJRUlNZlFlM3pBRVFpSXJBRjRwZUM0a2RHOUMxWG4rQUI2UzJaeTRlUjEKZzBTZE1Bb0dDQ3FHU000OUJBTUNBMGdBTUVVQ0lRRDV5akFtTTBHS3BWeFVqVVkyL0lBN3pmeXNQSXBhQ0p5RQpzNVJHN2xtZG5BSWdMb0lXZUYvUXNmV1dYVlM3K3dhRTJOVld3cENDZ3hqekd3K1B3ajE2T2p3PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR5Z0F3SUJBZ0lSQUlyYWx1UFN0RmhWaEVyZFpRZEtDS0F3Q2dZSUtvWkl6ajBFQXdJd2JERUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJvd0dBWURWUVFERXhGMGJITmpZUzVsCmVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1UVXdNek0xTlRGYUZ3MHlOekV5TVRNd016TTFOVEZhTUd3eEN6QUoKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaApibU5wYzJOdk1SUXdFZ1lEVlFRS0V3dGxlR0Z0Y0d4bExtTnZiVEVhTUJnR0ExVUVBeE1SZEd4elkyRXVaWGhoCmJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxaGtqT1BRTUJCd05DQUFTRkp0dnBDMmhoY2l4RXZPYisKTW1VYW5IWDQwMTJVSldGeXZxR1RWYlpDYnpGbDBBb1luUkQ4azllcnRsazQvYmxiSGVuRW1wM05zUGkxRXNJVQp3azVHbzE4d1hUQU9CZ05WSFE4QkFmOEVCQU1DQWFZd0R3WURWUjBsQkFnd0JnWUVWUjBsQURBUEJnTlZIUk1CCkFmOEVCVEFEQVFIL01Da0dBMVVkRGdRaUJDQklPWlFkUGVLOUN0dFdSUnFUME5LaXE3RjZabktSRll4UVVjcG0KOFcvQi96QUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQWFrNTlBS21vMkw1UEZTME4rWjhMem5uTW5mKzBNVEt2bgpJN2pRTDdZN0dRSWdPTktjWWRvS3duYzhPcUdObzJLQXl3RTJlTVVKZUxHaVFLeTB0NTAydW1RPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ] }, "type": 0 @@ -682,13 +682,13 @@ }, "signatures": [ { - "signature": "MEQCIG4896ILGHRHV4P1TsHyw9OrRiRVr9a6dMnjb1NUDf4DAiBUMINFh9zjSYTDeH7SS1JvCp1Fp5nCwCQkyPvDBVl3sA==", + "signature": "MEUCIQCb7NUq08DUMjZVuiJUeXkdwE7prkJB8ytz6LBsDBrSFQIgaeXAXAQZPZeP9Hstah0DGXMnnlKpXblldVoIGtRLv9o=", "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org1MSP" }, - "nonce": "m+38DBTZGUoyhZak5oZ05HTreDX0DMSn" + "nonce": "aFE1up/BBskRegbUeE7IIaiS+vsX1BdY" } } ] @@ -697,38 +697,38 @@ "channel_header": { "channel_id": "businesschannel", "epoch": "0", - "timestamp": "2017-12-12T14:19:41.000Z", + "timestamp": "2017-12-15T03:49:15.000Z", "tx_id": "", "type": 2, "version": 0 }, "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org1MSP" }, - "nonce": "Mz/auXpXWgUqH1vYfGj4QBIpgTjevUfu" + "nonce": "WqQEQSKGPBbz1hRRzHN3WDwcuv4f/Ym5" } } }, - "signature": "MEUCIQCXHAvTn9jJzLjpchZRVVEa2CA+BKEHQnhM77DvYshs1gIgcUsYwQPRBcr1SaeJ8hGpWnNQBzUKr5j2pD8Fh39oMgY=" + "signature": "MEQCIBrwtoWVHlisrbg2pby52GBzk+Rn10i8pxqowqnsb5XPAiAbbRnazQzsCMbfZ1L5KttHSxs1G81J/G0bnFZvWLXZJA==" } }, "header": { "channel_header": { "channel_id": "businesschannel", "epoch": "0", - "timestamp": "2017-12-12T14:19:41.000Z", + "timestamp": "2017-12-15T03:49:15.000Z", "tx_id": "", "type": 1, "version": 0 }, "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNERENDQWJLZ0F3SUJBZ0lRWlFCMmZ6M3ZvVFdYODNPNnVOWSt5akFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNVm9YRFRJM01USXhNREE0TkRBeE1Wb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBUnNRbE1uang2d3pMUTNFVkk1ekNXeFhFSFJIQTBGZ0pvYUhYY2NQWllaTXRnQ1NLaE4KdFY0bUJPMXYreFVlOSsxN1U5Ty9GcDdpS1RhbGhiL2VnbnF3bzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDREFrQzh4Y1VkUmcrRDM4eHNDc1NaZDBLNDNDck9FCitFWDNpekdzVU15MVJ6QUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpRUFnbklNTjdoclpTcDRVYVZSOHUrZXRvL3EKWFpOTUdqa3ZkYUFQSG8xYXZnOENJRzZFSkM2NW5vamhLbHVPU0hIQVlranI1Y0dkbWFZRVJJV2ZEc3k1VEZnZAotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDekNDQWJLZ0F3SUJBZ0lRS3d5NnZBbDRwRkNHaEZybUptWjBVVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBU0tTQ2srMnQxbmFZeGdBcFlhTzAwYTlwN2tHMW1tSjEwL2h0TkNKSVNQdlR1VVExY3YKelFPK2lOOTZtTHVNbmk0dXRrQWRmYWtZdFlXaWNBaDA2VzZjbzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDRDhjb1BFWXJncGVWdnNEcUYxS25rWVZnWEVkbHhkCmliVmllYXJTVEVOMk5UQUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQXlPWUZHWUJWYjk4VGptbkRRaC9WVE5SR3YKempmQ2RBaXNvWUNVdzk1clF3SWdERjg0dWE2Z256UDNrRE9VMDRVUVZLazB1U0FEaXRKMjVLejFwVmhpS1FnPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "OrdererMSP" }, - "nonce": "9WIsr5cSoGbMzuoPwaX13SnkjxE0EvLe" + "nonce": "P/pyE1fnWqFsoqN5LFrVfST+7+fdjCrg" } } } diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_2.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_2.block index fe086756..b4401eaa 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_2.block and b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_2.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_2.block.json b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_2.block.json index 080f4c92..98ed89ad 100644 --- a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_2.block.json +++ b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_2.block.json @@ -118,7 +118,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -126,10 +126,10 @@ }, "name": "Org1MSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNSRENDQWVxZ0F3SUJBZ0lSQU1IcWRxVWpjbWdUTDZQTTJTWXJhUTh3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFeU1EZzBNREV3V2hjTk1qY3hNakV3TURnME1ERXcKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NUzVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQkNtMWNnd2dSZ2VuTkJobjlYdVp6UnFId0lWbjRmVElZOEhzMzAvTmNvN2pvd0hxbzV1N0lSWExCaXNua240SQp6L0tPbndneHJiejBETTUzRnZWL2VhYWpYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSVBrZjZXVnZ0dDljMHF2bjc1NHIKR3pwUi84VmtJS1FsWHF4QklRem5pS2xYTUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDV2liVllvTXZIc1g2eApPenNyclBxaExZYklTZDRMaXVMZkNpTDVEa1RUcWdJZ1pjQmdiZDVGekt5enJUektwVDlXK29KQ21rQVBBMG1mCnhFRldrTXRHYmdZPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRU2hqQXdlKzZzeG9TTVo4VXJZS09jVEFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRVd016TTFOVEJhRncweU56RXlNVE13TXpNMU5UQmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3hMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKR3d5eWZETEgwN2RGVmtFdnhKREdPS0dldlVjYVlIcGhadmh6Vjc4TUJYVndJRUdJRU5rN1pzOHgrZHg2aXdJSwpMT0dtWHhxL1dxZDRxTHM2a0Z5WnZxTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1Fnc0s5cEUvcGxJT1YxMG1xZWZVekUKdkNRVTZxYjB4ZkRZc1k2VHhjdXNFMVl3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUw3eFhyWUQxZmt6Y3B4aQp5eVpoRmZFdk1EV0NvVWljUXcyYitjM0dRNk91QWlBMEt0TnVINHlTNCtjMTNXOUxzZDI4WE5RSzg4Rmt3QjJKClFSOXloSkU3ckE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWUrZ0F3SUJBZ0lRYXpUd3QybHc4dXA3NVpDUytGRVFOakFLQmdncWhrak9QUVFEQWpCMk1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHQTFVRUF4TVdkR3h6ClkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1USXdPRFF3TVRCYUZ3MHlOekV5TVRBd09EUXcKTVRCYU1IWXhDekFKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSApFdzFUWVc0Z1JuSmhibU5wYzJOdk1Sa3dGd1lEVlFRS0V4QnZjbWN4TG1WNFlXMXdiR1V1WTI5dE1SOHdIUVlEClZRUURFeFowYkhOallTNXZjbWN4TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJS29aSXpqMEQKQVFjRFFnQUVxZXYzL2hWbmdVRWdoSS9hM3VXQWNadzcwYjVYZ1dud0lLOHdTRHpDWGJqb1dkbDk2alU1TmdBMQo1VnVXNVIyU3VXNnRuNjE5Sm95WDlxcFdCMGJiRktOZk1GMHdEZ1lEVlIwUEFRSC9CQVFEQWdHbU1BOEdBMVVkCkpRUUlNQVlHQkZVZEpRQXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QXBCZ05WSFE0RUlnUWdMQklUTTJyeExIbjUKalBXeUZySmpPandhZWJlYWZ0eW8ycmRpS2Ntajdmc3dDZ1lJS29aSXpqMEVBd0lEU0FBd1JRSWhBTnBoQ0RaUwpUU1ZML0dadDdUNGVaR2hUWFZLMXJtZmNNM0pjODBFMjFXbldBaUI3U0VDZzhRNDRMaU0wdy9YUFcwUkl1V2xzCjBFTG1LSjF1SCs3Y3Y3SnJXUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWUrZ0F3SUJBZ0lRZDlMN1pUUk14NXF3WnEwT1dVZXhSVEFLQmdncWhrak9QUVFEQWpCMk1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHQTFVRUF4TVdkR3h6ClkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1UVXdNek0xTlRCYUZ3MHlOekV5TVRNd016TTEKTlRCYU1IWXhDekFKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSApFdzFUWVc0Z1JuSmhibU5wYzJOdk1Sa3dGd1lEVlFRS0V4QnZjbWN4TG1WNFlXMXdiR1V1WTI5dE1SOHdIUVlEClZRUURFeFowYkhOallTNXZjbWN4TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJS29aSXpqMEQKQVFjRFFnQUVhdFoxeHhjWEQ4OHU0QUduQVR5RUhsNGJsOUVQSTNlQXJDNzBGK1VkOCtMbVRuV3drUjMvRWVOTwpieDJhUExTYi92ZVpONTh1dm1QMnZ0OTdoYktKc2FOZk1GMHdEZ1lEVlIwUEFRSC9CQVFEQWdHbU1BOEdBMVVkCkpRUUlNQVlHQkZVZEpRQXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QXBCZ05WSFE0RUlnUWdybUZCc2dXdUJDTDkKc2x0bEtXMkoyS3AvUHJHQ2ZSYW9lR3ZwTjlYRTZub3dDZ1lJS29aSXpqMEVBd0lEU0FBd1JRSWhBSTBjNDBhNgpmdm44V0ZCNzh2TG5tVHJRTTlDOGVmQjhOdkI3NW9YVjQwem1BaUFVQ3d6VDQzS0dpR0ppUENzdllPWGlwTzFmCkYrWW5NUVJnVzJBWEJpVWhGUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ] }, "type": 0 @@ -248,7 +248,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRQkh6VlRRRlZwNXY2ZXNHRy9BRnZwREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFSVFPK202SXNsSjdTRzJoL0FXdDZVcFZHYklmSDErWGsKRUVBU0x2WXoxd1FMV2g3M2pVbXJEZTBHN1VoTDVSdXltazN1SDErUVZTS1hzZFU4M0dOczdxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnTW5vREx5dkIKOW9ObEpsVk5YdmRzcVgvcnIvYUxnQ2JsWVJiY3QwTDZXVThDSUF3SmlkZ3FjcG5WVzc0TzM0VWJoQW5lcVFDZgpaTThyd0xsZ1Y2WFVlVExXCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU1LZmJSQTQxNnArZlNheFE1cVA4all3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk0vaC8rRFh4cjJsTTFWdFBEd2hsQXlKVnI0WHQrS3YKVkxTbWVZK21YNS8rODAyU1BNcEl4WktFZjY1anp0YXNLQnhHYk9nQUJiZXl4M29YR2Q3ZGU4cWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFENElYSzIKOGJBRXNTZW5aZXUrTi81MGsyYlZqTFBzTXNKM3NFOTFBcmxQeEFJZ1hiMksyOFlPR0FMWUZYc1kvdEdrK2EvMApONSt6L2ZUVGZjaEdmTGFDdHpNPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -256,10 +256,10 @@ }, "name": "Org2MSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRWDEyWGxPSkNpR1FqajBTQ0NweVI1REFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3lMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKbjFwTG4vcEVGYW5BMXhnUTB2cXZ5WkVmODZTY2F4VVpHNEJkMFFlUXpHbnBpUmxYUXRhcHd0TnBySXc4SndaRworOGZDbnlFeWRiY2lTUzdmRjdNRkxhTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1FnSFRRY3hzcVlOSlhUNk9rTE5GTnMKU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUpwOXZqZm5qbkhGTlhhWQp1SmtNY2ExK3BLQmMrSWZGNTJCQlZMRmliMllWQWlCTFM4U2hvd2xDRCt1ajhpOWZ0djFaT1pEZVpFZUp2MDdZCmNOdkFYVThMbFE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVxZ0F3SUJBZ0lSQU10KzR5Yk9LMXI3QjhlYXZMVlRNQlV3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NaTVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQlBHcnRKdEhqMVFsMDJncTdJMFpRUUtKd3Z0WmhwMHQzckN3RjFjRklMVEhJQk00cGhKL1pZSlFhMWxiMTJwTwpzeFN4dUV2UkdURmNaWHR1blVjMFNlV2pYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSUNTcVZ5ckplckY3WW9YREtLZVYKMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUIrcHNpZWs3RnFQMThsMQozczJhbmJ0ZnBpR1RIYkFubTJCaWhwRDlzUlBqQWlBSXZzZHlmbituYjJiQ1FCSzZzb2RiTytMeFNrdVp1bGtQCm9NUjN5Q0gvZUE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQUtHM2phVjU3WnpSTWNNYmQ0ZElrWTR3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qRXlNRGcwTURFeFdoY05NamN4TWpFd01EZzAKTURFeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCSElBK2pnVVVmV0s3cWRoMFU2RHBac0lGYXgwQktZZHBXdkR6Y1M3R1d3T1dHQUdyU09MR1V5bAowMTFzd2V1SlJLZUhPRHB0UUxubTUrV25wb0l6Mmxhalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJQ0RqWlFvNUJFTVoKMVhvMHhrQVJKODFFb3AvV0JReEtJL2hhcTdxZU12dERNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJRm0yVVhHUwpKMEw1K1dIOHpDRTR6L01FSGpSeTdkeHk5eGpSZkNxb2hxYmhBaUF6MXlhK1krTWpaS3ZsTkwwcEpyOTNvbThGCkd6NTFkOHdHb0RjTE4vT0tOUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQVBIWHVlVnByUFBVMngvUjNpQitqZTB3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qRTFNRE16TlRVeFdoY05NamN4TWpFek1ETXoKTlRVeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCQ1ErTnJ0MzRuYjJWQ0RheDYrZmdFa200bnFwN241aGNCY2E2ell5cDRlRFdlRmhvRmtsTHVHZAo2bG1jNVVpZkZLbkVPeDhtdmtva2ovMmNFRUpkU1NDalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJT0k0NEJEMUtVRHMKYXkxNzlBTk5Qa2FjODZ4aFY2alNtTkV3bTdHYW1oSkdNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJSFBlUUt3MwpOOUpUY3BuZVBzVVBzLzdzWHdvTW1OUFY1RTJiYnhNM3B1ZEFBaUI1NG9XTkt0Ulp2ZzVlUXV6d2RnZkhYNjl0CnBBc1YvQ2xxd0JxaGswOUdxUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ] }, "type": 0 @@ -413,7 +413,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRTS90M2dIdWgyQVRiM2p3UjdDeDVkVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNbG9YRFRJM01USXhNREE0TkRBeE1sb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRWZDR1cxZmRieDBPNS9JcE0vZk0yYW1qM3pJVEE3WWIrZDdTSTB2b1g4azFtckdWcCtOYWEKdGhQRFo2TjNKNVJ3dm01K3M0TnVWT3NEMHVmbm5aTC9DNk5OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZ3dKQXZNWEZIVVlQZzkvTWJBckVtWGRDdU53cXpoUGhGCjk0c3hyRkRNdFVjd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ1d0OVd5ZkwrT2lzeFlFY1VqNDVnUmFLSUxqTHIKNE80eUptOVAwUTlKTXVvQ0lHRTVwZDFMOWxHTzB6dHhTb1hYTXhrL2tmYUlpaHlGbEs5K2xOSTI0QzNBCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRV1BvVHBQZSt3eFFuNFlDMW56S1pVVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRVR4R1lRdHdXVStqdUgxV1BtNmE4ckplRk9RU0FtUWZab1VHNXdXZzZzeENaMTBuWDlGbEQKRVNaMnpUZDYwcjVzVGhYSmxBblpoSG1pMGdTNUIrOVNSS05OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZy9IS0R4R0s0S1hsYjdBNmhkU3A1R0ZZRnhIWmNYWW0xCllubXEwa3hEZGpVd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ2ZhamFrRVVOeGcrdmRWVU9taVJHOStYT3FyT2EKc3FvK21RYmVtV2R4TGljQ0lDZzFpTWxtUkJjdFhtSmVMOXY0RldDYmExZnRnazd4eFh6d1JmWWUva2M4Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -421,10 +421,10 @@ }, "name": "OrdererMSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRXZ0F3SUJBZ0lRU3o1MVV2bmE4eVBYT3NGaUswbHJBVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNVm9YRFRJM01USXhNREE0TkRBeE1Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJDUTRNQURILzltTkdVWCtoTVFwWmlMRjZoOGkKWmpVNG5zQnM2Yk5ZdURUREc1alJQVVF2OEQvaXE2VzFMTnhZbURyaFFZS0NUYlB1L1ZkTVBWMFJxMktqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJTUNRTHpGeFIxR0Q0UGZ6R3dLeEpsM1FyamNLczRUNFJmZUxNYXhRekxWSE1Bb0cKQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUURNeFBiNXdac1lSM0d0Nm5KdU1XSVhaR09UZjZ1bzRZcFR1c2Uxd2lYZwowQUlnRGtWSHJHRW5ia0Z4cXhndDhwZzIwOEZrZWZmblZZS1dhUDF2YnFPdlNDYz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRXZ0F3SUJBZ0lRR1hmNXpFZ2psZWprRTFySlcyem53REFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJGU0tQUnNYblh2YVRUcVJLamtUUllZb1BqR2cKVGdYUkFvTVF3SSs5QWFMWFRTTCtBc0Fwd2x4ZWRyK1BKK1VnZkJOY3hleTIyNllTWlJKcUxlaUgvVGFqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJUHh5ZzhSaXVDbDVXK3dPb1hVcWVSaFdCY1IyWEYySnRXSjVxdEpNUTNZMU1Bb0cKQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUUNvUnJsWllQaDBRbnNwM1o5S2l0bVREa1JxaTZKeVI0UkxpT3lmdjhUZgpRZ0lnZEhiRnFYR1RaMEhGUW1rblVGZDVERDRUVGx0djhJam1mbThKMXNrUzRqYz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR1Z0F3SUJBZ0lRSG9NcWNCakFsQXFIODhjb00vanUrREFLQmdncWhrak9QUVFEQWpCc01Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4R2pBWUJnTlZCQU1URVhSc2MyTmhMbVY0CllXMXdiR1V1WTI5dE1CNFhEVEUzTVRJeE1qQTROREF4TVZvWERUSTNNVEl4TURBNE5EQXhNVm93YkRFTE1Ba0cKQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdQpZMmx6WTI4eEZEQVNCZ05WQkFvVEMyVjRZVzF3YkdVdVkyOXRNUm93R0FZRFZRUURFeEYwYkhOallTNWxlR0Z0CmNHeGxMbU52YlRCWk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkF5cFJOSmpib1pqSHdqRElLK2YKYTc4TkUvNUdnOHlrelIzOGM0MUN0cnFqNldOTkZiSkZkcUV4WnE5L1NybnV4NUlCMjJFblV6eVd1M2RpV1lLTAp1Y0tqWHpCZE1BNEdBMVVkRHdFQi93UUVBd0lCcGpBUEJnTlZIU1VFQ0RBR0JnUlZIU1VBTUE4R0ExVWRFd0VCCi93UUZNQU1CQWY4d0tRWURWUjBPQkNJRUlNZlFlM3pBRVFpSXJBRjRwZUM0a2RHOUMxWG4rQUI2UzJaeTRlUjEKZzBTZE1Bb0dDQ3FHU000OUJBTUNBMGdBTUVVQ0lRRDV5akFtTTBHS3BWeFVqVVkyL0lBN3pmeXNQSXBhQ0p5RQpzNVJHN2xtZG5BSWdMb0lXZUYvUXNmV1dYVlM3K3dhRTJOVld3cENDZ3hqekd3K1B3ajE2T2p3PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR5Z0F3SUJBZ0lSQUlyYWx1UFN0RmhWaEVyZFpRZEtDS0F3Q2dZSUtvWkl6ajBFQXdJd2JERUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJvd0dBWURWUVFERXhGMGJITmpZUzVsCmVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1UVXdNek0xTlRGYUZ3MHlOekV5TVRNd016TTFOVEZhTUd3eEN6QUoKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaApibU5wYzJOdk1SUXdFZ1lEVlFRS0V3dGxlR0Z0Y0d4bExtTnZiVEVhTUJnR0ExVUVBeE1SZEd4elkyRXVaWGhoCmJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxaGtqT1BRTUJCd05DQUFTRkp0dnBDMmhoY2l4RXZPYisKTW1VYW5IWDQwMTJVSldGeXZxR1RWYlpDYnpGbDBBb1luUkQ4azllcnRsazQvYmxiSGVuRW1wM05zUGkxRXNJVQp3azVHbzE4d1hUQU9CZ05WSFE4QkFmOEVCQU1DQWFZd0R3WURWUjBsQkFnd0JnWUVWUjBsQURBUEJnTlZIUk1CCkFmOEVCVEFEQVFIL01Da0dBMVVkRGdRaUJDQklPWlFkUGVLOUN0dFdSUnFUME5LaXE3RjZabktSRll4UVVjcG0KOFcvQi96QUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQWFrNTlBS21vMkw1UEZTME4rWjhMem5uTW5mKzBNVEt2bgpJN2pRTDdZN0dRSWdPTktjWWRvS3duYzhPcUdObzJLQXl3RTJlTVVKZUxHaVFLeTB0NTAydW1RPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ] }, "type": 0 @@ -698,13 +698,13 @@ }, "signatures": [ { - "signature": "MEUCIQC86PMGWc30eA8JKcpqp6/C1dMb8mnmddhVkDhaZWh+wgIgHwkZefTTXA5yrgCv1kutCYMJTF0RdXQwTKtWgBvU5m0=", + "signature": "MEUCIQDP4X36Ued464Kk3d/ozBG71a8J038wGOxubULsQEbmOwIgX7S8rgU1AzSd/+ezV06Q7FJRUH1cwdSa8SYYfB1UueA=", "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRQkh6VlRRRlZwNXY2ZXNHRy9BRnZwREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFSVFPK202SXNsSjdTRzJoL0FXdDZVcFZHYklmSDErWGsKRUVBU0x2WXoxd1FMV2g3M2pVbXJEZTBHN1VoTDVSdXltazN1SDErUVZTS1hzZFU4M0dOczdxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnTW5vREx5dkIKOW9ObEpsVk5YdmRzcVgvcnIvYUxnQ2JsWVJiY3QwTDZXVThDSUF3SmlkZ3FjcG5WVzc0TzM0VWJoQW5lcVFDZgpaTThyd0xsZ1Y2WFVlVExXCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU1LZmJSQTQxNnArZlNheFE1cVA4all3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk0vaC8rRFh4cjJsTTFWdFBEd2hsQXlKVnI0WHQrS3YKVkxTbWVZK21YNS8rODAyU1BNcEl4WktFZjY1anp0YXNLQnhHYk9nQUJiZXl4M29YR2Q3ZGU4cWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFENElYSzIKOGJBRXNTZW5aZXUrTi81MGsyYlZqTFBzTXNKM3NFOTFBcmxQeEFJZ1hiMksyOFlPR0FMWUZYc1kvdEdrK2EvMApONSt6L2ZUVGZjaEdmTGFDdHpNPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org2MSP" }, - "nonce": "W8X1SsA8z6bZcgcmS3AjLcYr8qHBvrQe" + "nonce": "uvLf61SXovZa1imjqwUQjMiAgaxzS+jT" } } ] @@ -713,54 +713,54 @@ "channel_header": { "channel_id": "businesschannel", "epoch": "0", - "timestamp": "2017-12-12T14:19:43.000Z", + "timestamp": "2017-12-15T03:49:17.000Z", "tx_id": "", "type": 2, "version": 0 }, "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRQkh6VlRRRlZwNXY2ZXNHRy9BRnZwREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFSVFPK202SXNsSjdTRzJoL0FXdDZVcFZHYklmSDErWGsKRUVBU0x2WXoxd1FMV2g3M2pVbXJEZTBHN1VoTDVSdXltazN1SDErUVZTS1hzZFU4M0dOczdxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnTW5vREx5dkIKOW9ObEpsVk5YdmRzcVgvcnIvYUxnQ2JsWVJiY3QwTDZXVThDSUF3SmlkZ3FjcG5WVzc0TzM0VWJoQW5lcVFDZgpaTThyd0xsZ1Y2WFVlVExXCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU1LZmJSQTQxNnArZlNheFE1cVA4all3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk0vaC8rRFh4cjJsTTFWdFBEd2hsQXlKVnI0WHQrS3YKVkxTbWVZK21YNS8rODAyU1BNcEl4WktFZjY1anp0YXNLQnhHYk9nQUJiZXl4M29YR2Q3ZGU4cWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFENElYSzIKOGJBRXNTZW5aZXUrTi81MGsyYlZqTFBzTXNKM3NFOTFBcmxQeEFJZ1hiMksyOFlPR0FMWUZYc1kvdEdrK2EvMApONSt6L2ZUVGZjaEdmTGFDdHpNPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org2MSP" }, - "nonce": "TRen53k+rPGg6/sD5iBGBhfm5hX4Dz3o" + "nonce": "kVga5hR9V/TUZTX2iaNg/0+z6PUdTOX4" } } }, - "signature": "MEQCIGkRjvDC1CQnkJz9PjVGsTc5wKLufwHsCQxeXq7TNv97AiBbTba4xhT3z+k1tasdSulEvg2MKTVtL8m7xlTTJTDybw==" + "signature": "MEQCIHN2W2tWnmZhdE1yl+SPb0HZLFGk7YiaVtLA5joAXjG8AiB01w2d4l5JtgS+NrSBxDpZ4WHJuXlIgNcI8m5U9hq0Sw==" } }, "header": { "channel_header": { "channel_id": "businesschannel", "epoch": "0", - "timestamp": "2017-12-12T14:19:43.000Z", + "timestamp": "2017-12-15T03:49:17.000Z", "tx_id": "", "type": 1, "version": 0 }, "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNERENDQWJLZ0F3SUJBZ0lRWlFCMmZ6M3ZvVFdYODNPNnVOWSt5akFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNVm9YRFRJM01USXhNREE0TkRBeE1Wb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBUnNRbE1uang2d3pMUTNFVkk1ekNXeFhFSFJIQTBGZ0pvYUhYY2NQWllaTXRnQ1NLaE4KdFY0bUJPMXYreFVlOSsxN1U5Ty9GcDdpS1RhbGhiL2VnbnF3bzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDREFrQzh4Y1VkUmcrRDM4eHNDc1NaZDBLNDNDck9FCitFWDNpekdzVU15MVJ6QUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpRUFnbklNTjdoclpTcDRVYVZSOHUrZXRvL3EKWFpOTUdqa3ZkYUFQSG8xYXZnOENJRzZFSkM2NW5vamhLbHVPU0hIQVlranI1Y0dkbWFZRVJJV2ZEc3k1VEZnZAotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDekNDQWJLZ0F3SUJBZ0lRS3d5NnZBbDRwRkNHaEZybUptWjBVVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBU0tTQ2srMnQxbmFZeGdBcFlhTzAwYTlwN2tHMW1tSjEwL2h0TkNKSVNQdlR1VVExY3YKelFPK2lOOTZtTHVNbmk0dXRrQWRmYWtZdFlXaWNBaDA2VzZjbzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDRDhjb1BFWXJncGVWdnNEcUYxS25rWVZnWEVkbHhkCmliVmllYXJTVEVOMk5UQUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQXlPWUZHWUJWYjk4VGptbkRRaC9WVE5SR3YKempmQ2RBaXNvWUNVdzk1clF3SWdERjg0dWE2Z256UDNrRE9VMDRVUVZLazB1U0FEaXRKMjVLejFwVmhpS1FnPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "OrdererMSP" }, - "nonce": "CpqWvkkzAlex9/qR0VjTWhC70IsA2EHr" + "nonce": "9JG09YxDHzaBgXxR9j/ZQRPD91dNs+A7" } } }, - "signature": "MEQCIHly1MdCLdVxKTucBWqA68MZ2lOqCtg9cj1doVCM+KMMAiAL+C6ZaQWBx6beDBsrGxxCw/cYYoZ1MjjpMoJP3nS73w==" + "signature": "MEQCIGNteHN7aWNC7o55+WKiDB2D9ohW1XiBpLJBNhSTioSgAiARUaL/KOwdDUsTVQB2gweBhzlMjaRgVofLrbXPYGJx0g==" } ] }, "header": { - "data_hash": "PC16OIiWbFkNjf2UjRMSSLb6bMY1eXZnAvLVlWg1avI=", + "data_hash": "4ZA3HPb6aMUAyTcCE76RvZCcdQtQoW5CDA1HEBTUads=", "number": "2", - "previous_hash": "qjNi524+Kh0TD31AiUaPxoHKa0eg5RMpwygtmHxG8YQ=" + "previous_hash": "qoD/DDmqqI9fwJfbaUur5myqMsViKZgLtnJP4R7ntY8=" }, "metadata": { "metadata": [ - "EvkGCq0GCpAGCgpPcmRlcmVyTVNQEoEGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNERENDQWJLZ0F3SUJBZ0lRWlFCMmZ6M3ZvVFdYODNPNnVOWSt5akFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNVm9YRFRJM01USXhNREE0TkRBeE1Wb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBUnNRbE1uang2d3pMUTNFVkk1ekNXeFhFSFJIQTBGZ0pvYUhYY2NQWllaTXRnQ1NLaE4KdFY0bUJPMXYreFVlOSsxN1U5Ty9GcDdpS1RhbGhiL2VnbnF3bzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDREFrQzh4Y1VkUmcrRDM4eHNDc1NaZDBLNDNDck9FCitFWDNpekdzVU15MVJ6QUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpRUFnbklNTjdoclpTcDRVYVZSOHUrZXRvL3EKWFpOTUdqa3ZkYUFQSG8xYXZnOENJRzZFSkM2NW5vamhLbHVPU0hIQVlranI1Y0dkbWFZRVJJV2ZEc3k1VEZnZAotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIYXZnhTaQ67pEYlAIw+/sPC90bItyS37hoEkcwRQIhAL6RwVa/Ud6ePGTBbLt8DdxnRJ0RJO+BrXPmjZ+bKXXzAiAZYEAlPT8QfIxxI1A7iXQVKo6i03j8ngb239Y1bX8h3A==", - "CgIIAhL4BgqtBgqQBgoKT3JkZXJlck1TUBKBBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDRERDQ0FiS2dBd0lCQWdJUVpRQjJmejN2b1RXWDgzTzZ1TlkreWpBS0JnZ3Foa2pPUFFRREFqQnBNUXN3CkNRWURWUVFHRXdKVlV6RVRNQkVHQTFVRUNCTUtRMkZzYVdadmNtNXBZVEVXTUJRR0ExVUVCeE1OVTJGdUlFWnkKWVc1amFYTmpiekVVTUJJR0ExVUVDaE1MWlhoaGJYQnNaUzVqYjIweEZ6QVZCZ05WQkFNVERtTmhMbVY0WVcxdwpiR1V1WTI5dE1CNFhEVEUzTVRJeE1qQTROREF4TVZvWERUSTNNVEl4TURBNE5EQXhNVm93V0RFTE1Ba0dBMVVFCkJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdVkybHoKWTI4eEhEQWFCZ05WQkFNVEUyOXlaR1Z5WlhJdVpYaGhiWEJzWlM1amIyMHdXVEFUQmdjcWhrak9QUUlCQmdncQpoa2pPUFFNQkJ3TkNBQVJzUWxNbmp4Nnd6TFEzRVZJNXpDV3hYRUhSSEEwRmdKb2FIWGNjUFpZWk10Z0NTS2hOCnRWNG1CTzF2K3hVZTkrMTdVOU8vRnA3aUtUYWxoYi9lZ25xd28wMHdTekFPQmdOVkhROEJBZjhFQkFNQ0I0QXcKREFZRFZSMFRBUUgvQkFJd0FEQXJCZ05WSFNNRUpEQWlnQ0RBa0M4eGNVZFJnK0QzOHhzQ3NTWmQwSzQzQ3JPRQorRVgzaXpHc1VNeTFSekFLQmdncWhrak9QUVFEQWdOSUFEQkZBaUVBZ25JTU43aHJaU3A0VWFWUjh1K2V0by9xClhaTk1Hamt2ZGFBUEhvMWF2ZzhDSUc2RUpDNjVub2poS2x1T1NISEFZa2pyNWNHZG1hWUVSSVdmRHN5NVRGZ2QKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQoSGNhOy7z36zZJSLX1+/31jncELctsbemCNBJGMEQCIHiCWUCT3R61Si7g8nWth/tA6h8Wv7k5RtHnMorzv+y7AiB9xPtudV21Z97/aXTMfp366R9RmI38e+T8qi8lKaL4lw==", + "EvkGCq0GCpAGCgpPcmRlcmVyTVNQEoEGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDekNDQWJLZ0F3SUJBZ0lRS3d5NnZBbDRwRkNHaEZybUptWjBVVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBU0tTQ2srMnQxbmFZeGdBcFlhTzAwYTlwN2tHMW1tSjEwL2h0TkNKSVNQdlR1VVExY3YKelFPK2lOOTZtTHVNbmk0dXRrQWRmYWtZdFlXaWNBaDA2VzZjbzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDRDhjb1BFWXJncGVWdnNEcUYxS25rWVZnWEVkbHhkCmliVmllYXJTVEVOMk5UQUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQXlPWUZHWUJWYjk4VGptbkRRaC9WVE5SR3YKempmQ2RBaXNvWUNVdzk1clF3SWdERjg0dWE2Z256UDNrRE9VMDRVUVZLazB1U0FEaXRKMjVLejFwVmhpS1FnPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIYU7hXrl5gXpziIXUOumAABbYJwzunRKoLEkcwRQIhAMVoxo/lQkXZoBML3KSWV+Ot39uPTwEinhZA8MESudRBAiBqkYxtSjvvtl/jmLkvjtrBYAFGEJdaaAtSZBESWlZZmg==", + "CgIIAhL4BgqtBgqQBgoKT3JkZXJlck1TUBKBBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDQ3pDQ0FiS2dBd0lCQWdJUUt3eTZ2QWw0cEZDR2hGcm1KbVowVVRBS0JnZ3Foa2pPUFFRREFqQnBNUXN3CkNRWURWUVFHRXdKVlV6RVRNQkVHQTFVRUNCTUtRMkZzYVdadmNtNXBZVEVXTUJRR0ExVUVCeE1OVTJGdUlFWnkKWVc1amFYTmpiekVVTUJJR0ExVUVDaE1MWlhoaGJYQnNaUzVqYjIweEZ6QVZCZ05WQkFNVERtTmhMbVY0WVcxdwpiR1V1WTI5dE1CNFhEVEUzTVRJeE5UQXpNelUxTVZvWERUSTNNVEl4TXpBek16VTFNVm93V0RFTE1Ba0dBMVVFCkJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdVkybHoKWTI4eEhEQWFCZ05WQkFNVEUyOXlaR1Z5WlhJdVpYaGhiWEJzWlM1amIyMHdXVEFUQmdjcWhrak9QUUlCQmdncQpoa2pPUFFNQkJ3TkNBQVNLU0NrKzJ0MW5hWXhnQXBZYU8wMGE5cDdrRzFtbUoxMC9odE5DSklTUHZUdVVRMWN2CnpRTytpTjk2bUx1TW5pNHV0a0FkZmFrWXRZV2ljQWgwNlc2Y28wMHdTekFPQmdOVkhROEJBZjhFQkFNQ0I0QXcKREFZRFZSMFRBUUgvQkFJd0FEQXJCZ05WSFNNRUpEQWlnQ0Q4Y29QRVlyZ3BlVnZzRHFGMUtua1lWZ1hFZGx4ZAppYlZpZWFyU1RFTjJOVEFLQmdncWhrak9QUVFEQWdOSEFEQkVBaUF5T1lGR1lCVmI5OFRqbW5EUWgvVlROUkd2CnpqZkNkQWlzb1lDVXc5NXJRd0lnREY4NHVhNmduelAza0RPVTA0VVFWS2swdVNBRGl0SjI1S3oxcFZoaUtRZz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQoSGLSOX102g74UWU0TEIuuoHPry5BV3iYlkBJGMEQCIChWD/+KqVvu+Ntp5m6s/jpdM92sYMlnKUpE0+gM2ftjAiB+ZcmsvdkSSFjWUsyVxZywExUOwPQA5TKqhIeBEB75Lw==", "", "" ] diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_2.block_payload.json b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_2.block_payload.json index 5231ffe8..4b4e2271 100644 --- a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_2.block_payload.json +++ b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_2.block_payload.json @@ -114,7 +114,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -122,10 +122,10 @@ }, "name": "Org1MSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNSRENDQWVxZ0F3SUJBZ0lSQU1IcWRxVWpjbWdUTDZQTTJTWXJhUTh3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFeU1EZzBNREV3V2hjTk1qY3hNakV3TURnME1ERXcKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NUzVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQkNtMWNnd2dSZ2VuTkJobjlYdVp6UnFId0lWbjRmVElZOEhzMzAvTmNvN2pvd0hxbzV1N0lSWExCaXNua240SQp6L0tPbndneHJiejBETTUzRnZWL2VhYWpYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSVBrZjZXVnZ0dDljMHF2bjc1NHIKR3pwUi84VmtJS1FsWHF4QklRem5pS2xYTUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDV2liVllvTXZIc1g2eApPenNyclBxaExZYklTZDRMaXVMZkNpTDVEa1RUcWdJZ1pjQmdiZDVGekt5enJUektwVDlXK29KQ21rQVBBMG1mCnhFRldrTXRHYmdZPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRU2hqQXdlKzZzeG9TTVo4VXJZS09jVEFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRVd016TTFOVEJhRncweU56RXlNVE13TXpNMU5UQmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3hMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKR3d5eWZETEgwN2RGVmtFdnhKREdPS0dldlVjYVlIcGhadmh6Vjc4TUJYVndJRUdJRU5rN1pzOHgrZHg2aXdJSwpMT0dtWHhxL1dxZDRxTHM2a0Z5WnZxTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1Fnc0s5cEUvcGxJT1YxMG1xZWZVekUKdkNRVTZxYjB4ZkRZc1k2VHhjdXNFMVl3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUw3eFhyWUQxZmt6Y3B4aQp5eVpoRmZFdk1EV0NvVWljUXcyYitjM0dRNk91QWlBMEt0TnVINHlTNCtjMTNXOUxzZDI4WE5RSzg4Rmt3QjJKClFSOXloSkU3ckE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWUrZ0F3SUJBZ0lRYXpUd3QybHc4dXA3NVpDUytGRVFOakFLQmdncWhrak9QUVFEQWpCMk1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHQTFVRUF4TVdkR3h6ClkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1USXdPRFF3TVRCYUZ3MHlOekV5TVRBd09EUXcKTVRCYU1IWXhDekFKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSApFdzFUWVc0Z1JuSmhibU5wYzJOdk1Sa3dGd1lEVlFRS0V4QnZjbWN4TG1WNFlXMXdiR1V1WTI5dE1SOHdIUVlEClZRUURFeFowYkhOallTNXZjbWN4TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJS29aSXpqMEQKQVFjRFFnQUVxZXYzL2hWbmdVRWdoSS9hM3VXQWNadzcwYjVYZ1dud0lLOHdTRHpDWGJqb1dkbDk2alU1TmdBMQo1VnVXNVIyU3VXNnRuNjE5Sm95WDlxcFdCMGJiRktOZk1GMHdEZ1lEVlIwUEFRSC9CQVFEQWdHbU1BOEdBMVVkCkpRUUlNQVlHQkZVZEpRQXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QXBCZ05WSFE0RUlnUWdMQklUTTJyeExIbjUKalBXeUZySmpPandhZWJlYWZ0eW8ycmRpS2Ntajdmc3dDZ1lJS29aSXpqMEVBd0lEU0FBd1JRSWhBTnBoQ0RaUwpUU1ZML0dadDdUNGVaR2hUWFZLMXJtZmNNM0pjODBFMjFXbldBaUI3U0VDZzhRNDRMaU0wdy9YUFcwUkl1V2xzCjBFTG1LSjF1SCs3Y3Y3SnJXUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWUrZ0F3SUJBZ0lRZDlMN1pUUk14NXF3WnEwT1dVZXhSVEFLQmdncWhrak9QUVFEQWpCMk1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHQTFVRUF4TVdkR3h6ClkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1UVXdNek0xTlRCYUZ3MHlOekV5TVRNd016TTEKTlRCYU1IWXhDekFKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSApFdzFUWVc0Z1JuSmhibU5wYzJOdk1Sa3dGd1lEVlFRS0V4QnZjbWN4TG1WNFlXMXdiR1V1WTI5dE1SOHdIUVlEClZRUURFeFowYkhOallTNXZjbWN4TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJS29aSXpqMEQKQVFjRFFnQUVhdFoxeHhjWEQ4OHU0QUduQVR5RUhsNGJsOUVQSTNlQXJDNzBGK1VkOCtMbVRuV3drUjMvRWVOTwpieDJhUExTYi92ZVpONTh1dm1QMnZ0OTdoYktKc2FOZk1GMHdEZ1lEVlIwUEFRSC9CQVFEQWdHbU1BOEdBMVVkCkpRUUlNQVlHQkZVZEpRQXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QXBCZ05WSFE0RUlnUWdybUZCc2dXdUJDTDkKc2x0bEtXMkoyS3AvUHJHQ2ZSYW9lR3ZwTjlYRTZub3dDZ1lJS29aSXpqMEVBd0lEU0FBd1JRSWhBSTBjNDBhNgpmdm44V0ZCNzh2TG5tVHJRTTlDOGVmQjhOdkI3NW9YVjQwem1BaUFVQ3d6VDQzS0dpR0ppUENzdllPWGlwTzFmCkYrWW5NUVJnVzJBWEJpVWhGUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ] }, "type": 0 @@ -244,7 +244,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRQkh6VlRRRlZwNXY2ZXNHRy9BRnZwREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFSVFPK202SXNsSjdTRzJoL0FXdDZVcFZHYklmSDErWGsKRUVBU0x2WXoxd1FMV2g3M2pVbXJEZTBHN1VoTDVSdXltazN1SDErUVZTS1hzZFU4M0dOczdxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnTW5vREx5dkIKOW9ObEpsVk5YdmRzcVgvcnIvYUxnQ2JsWVJiY3QwTDZXVThDSUF3SmlkZ3FjcG5WVzc0TzM0VWJoQW5lcVFDZgpaTThyd0xsZ1Y2WFVlVExXCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU1LZmJSQTQxNnArZlNheFE1cVA4all3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk0vaC8rRFh4cjJsTTFWdFBEd2hsQXlKVnI0WHQrS3YKVkxTbWVZK21YNS8rODAyU1BNcEl4WktFZjY1anp0YXNLQnhHYk9nQUJiZXl4M29YR2Q3ZGU4cWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFENElYSzIKOGJBRXNTZW5aZXUrTi81MGsyYlZqTFBzTXNKM3NFOTFBcmxQeEFJZ1hiMksyOFlPR0FMWUZYc1kvdEdrK2EvMApONSt6L2ZUVGZjaEdmTGFDdHpNPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -252,10 +252,10 @@ }, "name": "Org2MSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRWDEyWGxPSkNpR1FqajBTQ0NweVI1REFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3lMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKbjFwTG4vcEVGYW5BMXhnUTB2cXZ5WkVmODZTY2F4VVpHNEJkMFFlUXpHbnBpUmxYUXRhcHd0TnBySXc4SndaRworOGZDbnlFeWRiY2lTUzdmRjdNRkxhTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1FnSFRRY3hzcVlOSlhUNk9rTE5GTnMKU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUpwOXZqZm5qbkhGTlhhWQp1SmtNY2ExK3BLQmMrSWZGNTJCQlZMRmliMllWQWlCTFM4U2hvd2xDRCt1ajhpOWZ0djFaT1pEZVpFZUp2MDdZCmNOdkFYVThMbFE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVxZ0F3SUJBZ0lSQU10KzR5Yk9LMXI3QjhlYXZMVlRNQlV3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NaTVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQlBHcnRKdEhqMVFsMDJncTdJMFpRUUtKd3Z0WmhwMHQzckN3RjFjRklMVEhJQk00cGhKL1pZSlFhMWxiMTJwTwpzeFN4dUV2UkdURmNaWHR1blVjMFNlV2pYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSUNTcVZ5ckplckY3WW9YREtLZVYKMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUIrcHNpZWs3RnFQMThsMQozczJhbmJ0ZnBpR1RIYkFubTJCaWhwRDlzUlBqQWlBSXZzZHlmbituYjJiQ1FCSzZzb2RiTytMeFNrdVp1bGtQCm9NUjN5Q0gvZUE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQUtHM2phVjU3WnpSTWNNYmQ0ZElrWTR3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qRXlNRGcwTURFeFdoY05NamN4TWpFd01EZzAKTURFeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCSElBK2pnVVVmV0s3cWRoMFU2RHBac0lGYXgwQktZZHBXdkR6Y1M3R1d3T1dHQUdyU09MR1V5bAowMTFzd2V1SlJLZUhPRHB0UUxubTUrV25wb0l6Mmxhalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJQ0RqWlFvNUJFTVoKMVhvMHhrQVJKODFFb3AvV0JReEtJL2hhcTdxZU12dERNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJRm0yVVhHUwpKMEw1K1dIOHpDRTR6L01FSGpSeTdkeHk5eGpSZkNxb2hxYmhBaUF6MXlhK1krTWpaS3ZsTkwwcEpyOTNvbThGCkd6NTFkOHdHb0RjTE4vT0tOUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQVBIWHVlVnByUFBVMngvUjNpQitqZTB3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qRTFNRE16TlRVeFdoY05NamN4TWpFek1ETXoKTlRVeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCQ1ErTnJ0MzRuYjJWQ0RheDYrZmdFa200bnFwN241aGNCY2E2ell5cDRlRFdlRmhvRmtsTHVHZAo2bG1jNVVpZkZLbkVPeDhtdmtva2ovMmNFRUpkU1NDalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJT0k0NEJEMUtVRHMKYXkxNzlBTk5Qa2FjODZ4aFY2alNtTkV3bTdHYW1oSkdNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJSFBlUUt3MwpOOUpUY3BuZVBzVVBzLzdzWHdvTW1OUFY1RTJiYnhNM3B1ZEFBaUI1NG9XTkt0Ulp2ZzVlUXV6d2RnZkhYNjl0CnBBc1YvQ2xxd0JxaGswOUdxUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ] }, "type": 0 @@ -409,7 +409,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRTS90M2dIdWgyQVRiM2p3UjdDeDVkVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNbG9YRFRJM01USXhNREE0TkRBeE1sb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRWZDR1cxZmRieDBPNS9JcE0vZk0yYW1qM3pJVEE3WWIrZDdTSTB2b1g4azFtckdWcCtOYWEKdGhQRFo2TjNKNVJ3dm01K3M0TnVWT3NEMHVmbm5aTC9DNk5OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZ3dKQXZNWEZIVVlQZzkvTWJBckVtWGRDdU53cXpoUGhGCjk0c3hyRkRNdFVjd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ1d0OVd5ZkwrT2lzeFlFY1VqNDVnUmFLSUxqTHIKNE80eUptOVAwUTlKTXVvQ0lHRTVwZDFMOWxHTzB6dHhTb1hYTXhrL2tmYUlpaHlGbEs5K2xOSTI0QzNBCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRV1BvVHBQZSt3eFFuNFlDMW56S1pVVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRVR4R1lRdHdXVStqdUgxV1BtNmE4ckplRk9RU0FtUWZab1VHNXdXZzZzeENaMTBuWDlGbEQKRVNaMnpUZDYwcjVzVGhYSmxBblpoSG1pMGdTNUIrOVNSS05OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZy9IS0R4R0s0S1hsYjdBNmhkU3A1R0ZZRnhIWmNYWW0xCllubXEwa3hEZGpVd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ2ZhamFrRVVOeGcrdmRWVU9taVJHOStYT3FyT2EKc3FvK21RYmVtV2R4TGljQ0lDZzFpTWxtUkJjdFhtSmVMOXY0RldDYmExZnRnazd4eFh6d1JmWWUva2M4Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -417,10 +417,10 @@ }, "name": "OrdererMSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRXZ0F3SUJBZ0lRU3o1MVV2bmE4eVBYT3NGaUswbHJBVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNVm9YRFRJM01USXhNREE0TkRBeE1Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJDUTRNQURILzltTkdVWCtoTVFwWmlMRjZoOGkKWmpVNG5zQnM2Yk5ZdURUREc1alJQVVF2OEQvaXE2VzFMTnhZbURyaFFZS0NUYlB1L1ZkTVBWMFJxMktqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJTUNRTHpGeFIxR0Q0UGZ6R3dLeEpsM1FyamNLczRUNFJmZUxNYXhRekxWSE1Bb0cKQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUURNeFBiNXdac1lSM0d0Nm5KdU1XSVhaR09UZjZ1bzRZcFR1c2Uxd2lYZwowQUlnRGtWSHJHRW5ia0Z4cXhndDhwZzIwOEZrZWZmblZZS1dhUDF2YnFPdlNDYz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRXZ0F3SUJBZ0lRR1hmNXpFZ2psZWprRTFySlcyem53REFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJGU0tQUnNYblh2YVRUcVJLamtUUllZb1BqR2cKVGdYUkFvTVF3SSs5QWFMWFRTTCtBc0Fwd2x4ZWRyK1BKK1VnZkJOY3hleTIyNllTWlJKcUxlaUgvVGFqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJUHh5ZzhSaXVDbDVXK3dPb1hVcWVSaFdCY1IyWEYySnRXSjVxdEpNUTNZMU1Bb0cKQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUUNvUnJsWllQaDBRbnNwM1o5S2l0bVREa1JxaTZKeVI0UkxpT3lmdjhUZgpRZ0lnZEhiRnFYR1RaMEhGUW1rblVGZDVERDRUVGx0djhJam1mbThKMXNrUzRqYz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR1Z0F3SUJBZ0lRSG9NcWNCakFsQXFIODhjb00vanUrREFLQmdncWhrak9QUVFEQWpCc01Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4R2pBWUJnTlZCQU1URVhSc2MyTmhMbVY0CllXMXdiR1V1WTI5dE1CNFhEVEUzTVRJeE1qQTROREF4TVZvWERUSTNNVEl4TURBNE5EQXhNVm93YkRFTE1Ba0cKQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdQpZMmx6WTI4eEZEQVNCZ05WQkFvVEMyVjRZVzF3YkdVdVkyOXRNUm93R0FZRFZRUURFeEYwYkhOallTNWxlR0Z0CmNHeGxMbU52YlRCWk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkF5cFJOSmpib1pqSHdqRElLK2YKYTc4TkUvNUdnOHlrelIzOGM0MUN0cnFqNldOTkZiSkZkcUV4WnE5L1NybnV4NUlCMjJFblV6eVd1M2RpV1lLTAp1Y0tqWHpCZE1BNEdBMVVkRHdFQi93UUVBd0lCcGpBUEJnTlZIU1VFQ0RBR0JnUlZIU1VBTUE4R0ExVWRFd0VCCi93UUZNQU1CQWY4d0tRWURWUjBPQkNJRUlNZlFlM3pBRVFpSXJBRjRwZUM0a2RHOUMxWG4rQUI2UzJaeTRlUjEKZzBTZE1Bb0dDQ3FHU000OUJBTUNBMGdBTUVVQ0lRRDV5akFtTTBHS3BWeFVqVVkyL0lBN3pmeXNQSXBhQ0p5RQpzNVJHN2xtZG5BSWdMb0lXZUYvUXNmV1dYVlM3K3dhRTJOVld3cENDZ3hqekd3K1B3ajE2T2p3PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR5Z0F3SUJBZ0lSQUlyYWx1UFN0RmhWaEVyZFpRZEtDS0F3Q2dZSUtvWkl6ajBFQXdJd2JERUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJvd0dBWURWUVFERXhGMGJITmpZUzVsCmVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1UVXdNek0xTlRGYUZ3MHlOekV5TVRNd016TTFOVEZhTUd3eEN6QUoKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaApibU5wYzJOdk1SUXdFZ1lEVlFRS0V3dGxlR0Z0Y0d4bExtTnZiVEVhTUJnR0ExVUVBeE1SZEd4elkyRXVaWGhoCmJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxaGtqT1BRTUJCd05DQUFTRkp0dnBDMmhoY2l4RXZPYisKTW1VYW5IWDQwMTJVSldGeXZxR1RWYlpDYnpGbDBBb1luUkQ4azllcnRsazQvYmxiSGVuRW1wM05zUGkxRXNJVQp3azVHbzE4d1hUQU9CZ05WSFE4QkFmOEVCQU1DQWFZd0R3WURWUjBsQkFnd0JnWUVWUjBsQURBUEJnTlZIUk1CCkFmOEVCVEFEQVFIL01Da0dBMVVkRGdRaUJDQklPWlFkUGVLOUN0dFdSUnFUME5LaXE3RjZabktSRll4UVVjcG0KOFcvQi96QUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQWFrNTlBS21vMkw1UEZTME4rWjhMem5uTW5mKzBNVEt2bgpJN2pRTDdZN0dRSWdPTktjWWRvS3duYzhPcUdObzJLQXl3RTJlTVVKZUxHaVFLeTB0NTAydW1RPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ] }, "type": 0 @@ -694,13 +694,13 @@ }, "signatures": [ { - "signature": "MEUCIQC86PMGWc30eA8JKcpqp6/C1dMb8mnmddhVkDhaZWh+wgIgHwkZefTTXA5yrgCv1kutCYMJTF0RdXQwTKtWgBvU5m0=", + "signature": "MEUCIQDP4X36Ued464Kk3d/ozBG71a8J038wGOxubULsQEbmOwIgX7S8rgU1AzSd/+ezV06Q7FJRUH1cwdSa8SYYfB1UueA=", "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRQkh6VlRRRlZwNXY2ZXNHRy9BRnZwREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFSVFPK202SXNsSjdTRzJoL0FXdDZVcFZHYklmSDErWGsKRUVBU0x2WXoxd1FMV2g3M2pVbXJEZTBHN1VoTDVSdXltazN1SDErUVZTS1hzZFU4M0dOczdxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnTW5vREx5dkIKOW9ObEpsVk5YdmRzcVgvcnIvYUxnQ2JsWVJiY3QwTDZXVThDSUF3SmlkZ3FjcG5WVzc0TzM0VWJoQW5lcVFDZgpaTThyd0xsZ1Y2WFVlVExXCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU1LZmJSQTQxNnArZlNheFE1cVA4all3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk0vaC8rRFh4cjJsTTFWdFBEd2hsQXlKVnI0WHQrS3YKVkxTbWVZK21YNS8rODAyU1BNcEl4WktFZjY1anp0YXNLQnhHYk9nQUJiZXl4M29YR2Q3ZGU4cWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFENElYSzIKOGJBRXNTZW5aZXUrTi81MGsyYlZqTFBzTXNKM3NFOTFBcmxQeEFJZ1hiMksyOFlPR0FMWUZYc1kvdEdrK2EvMApONSt6L2ZUVGZjaEdmTGFDdHpNPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org2MSP" }, - "nonce": "W8X1SsA8z6bZcgcmS3AjLcYr8qHBvrQe" + "nonce": "uvLf61SXovZa1imjqwUQjMiAgaxzS+jT" } } ] @@ -709,38 +709,38 @@ "channel_header": { "channel_id": "businesschannel", "epoch": "0", - "timestamp": "2017-12-12T14:19:43.000Z", + "timestamp": "2017-12-15T03:49:17.000Z", "tx_id": "", "type": 2, "version": 0 }, "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRQkh6VlRRRlZwNXY2ZXNHRy9BRnZwREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFSVFPK202SXNsSjdTRzJoL0FXdDZVcFZHYklmSDErWGsKRUVBU0x2WXoxd1FMV2g3M2pVbXJEZTBHN1VoTDVSdXltazN1SDErUVZTS1hzZFU4M0dOczdxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnTW5vREx5dkIKOW9ObEpsVk5YdmRzcVgvcnIvYUxnQ2JsWVJiY3QwTDZXVThDSUF3SmlkZ3FjcG5WVzc0TzM0VWJoQW5lcVFDZgpaTThyd0xsZ1Y2WFVlVExXCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU1LZmJSQTQxNnArZlNheFE1cVA4all3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk0vaC8rRFh4cjJsTTFWdFBEd2hsQXlKVnI0WHQrS3YKVkxTbWVZK21YNS8rODAyU1BNcEl4WktFZjY1anp0YXNLQnhHYk9nQUJiZXl4M29YR2Q3ZGU4cWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFENElYSzIKOGJBRXNTZW5aZXUrTi81MGsyYlZqTFBzTXNKM3NFOTFBcmxQeEFJZ1hiMksyOFlPR0FMWUZYc1kvdEdrK2EvMApONSt6L2ZUVGZjaEdmTGFDdHpNPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org2MSP" }, - "nonce": "TRen53k+rPGg6/sD5iBGBhfm5hX4Dz3o" + "nonce": "kVga5hR9V/TUZTX2iaNg/0+z6PUdTOX4" } } }, - "signature": "MEQCIGkRjvDC1CQnkJz9PjVGsTc5wKLufwHsCQxeXq7TNv97AiBbTba4xhT3z+k1tasdSulEvg2MKTVtL8m7xlTTJTDybw==" + "signature": "MEQCIHN2W2tWnmZhdE1yl+SPb0HZLFGk7YiaVtLA5joAXjG8AiB01w2d4l5JtgS+NrSBxDpZ4WHJuXlIgNcI8m5U9hq0Sw==" } }, "header": { "channel_header": { "channel_id": "businesschannel", "epoch": "0", - "timestamp": "2017-12-12T14:19:43.000Z", + "timestamp": "2017-12-15T03:49:17.000Z", "tx_id": "", "type": 1, "version": 0 }, "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNERENDQWJLZ0F3SUJBZ0lRWlFCMmZ6M3ZvVFdYODNPNnVOWSt5akFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNVm9YRFRJM01USXhNREE0TkRBeE1Wb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBUnNRbE1uang2d3pMUTNFVkk1ekNXeFhFSFJIQTBGZ0pvYUhYY2NQWllaTXRnQ1NLaE4KdFY0bUJPMXYreFVlOSsxN1U5Ty9GcDdpS1RhbGhiL2VnbnF3bzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDREFrQzh4Y1VkUmcrRDM4eHNDc1NaZDBLNDNDck9FCitFWDNpekdzVU15MVJ6QUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpRUFnbklNTjdoclpTcDRVYVZSOHUrZXRvL3EKWFpOTUdqa3ZkYUFQSG8xYXZnOENJRzZFSkM2NW5vamhLbHVPU0hIQVlranI1Y0dkbWFZRVJJV2ZEc3k1VEZnZAotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDekNDQWJLZ0F3SUJBZ0lRS3d5NnZBbDRwRkNHaEZybUptWjBVVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBU0tTQ2srMnQxbmFZeGdBcFlhTzAwYTlwN2tHMW1tSjEwL2h0TkNKSVNQdlR1VVExY3YKelFPK2lOOTZtTHVNbmk0dXRrQWRmYWtZdFlXaWNBaDA2VzZjbzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDRDhjb1BFWXJncGVWdnNEcUYxS25rWVZnWEVkbHhkCmliVmllYXJTVEVOMk5UQUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQXlPWUZHWUJWYjk4VGptbkRRaC9WVE5SR3YKempmQ2RBaXNvWUNVdzk1clF3SWdERjg0dWE2Z256UDNrRE9VMDRVUVZLazB1U0FEaXRKMjVLejFwVmhpS1FnPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "OrdererMSP" }, - "nonce": "CpqWvkkzAlex9/qR0VjTWhC70IsA2EHr" + "nonce": "9JG09YxDHzaBgXxR9j/ZQRPD91dNs+A7" } } } diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_3.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_3.block index 580a498e..44474ac8 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_3.block and b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_3.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_3.block.json b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_3.block.json index 9f314b8b..aff0638b 100644 --- a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_3.block.json +++ b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_3.block.json @@ -8,17 +8,17 @@ { "header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org1MSP" }, - "nonce": "NON+CGkOFXHFJyVwN+iIWGfvKCyMBF1K" + "nonce": "8NKTFAb3dikEvjN949WJPnWHBobDSrcm" }, "payload": { "action": { "endorsements": [ { - "endorser": "CgdPcmcxTVNQEpYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRZnhDZ2RIbktXU0IxY2s3TkNJZis0akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFERXhad1pXVnlNQzV2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFdHRQakMzdXAxUTc3aktuWFlJQTdXdTJZckxvQUtxUGEKQ2o5cGRvQ3czdlI5SW1mL2M4ZGduYVJIQnZVK2RneE41ZW4xK240dGtxMERGYW1aODQzV3BxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUtyVW9NSWIKMld3QTk5NDlpTEhZK2lkTmFRbkQ5UzJ3dVVvbWwwSlBOdS9OQWlCUWx4WHVrRWk0OWM5cDErblJPd24wSXVPTQozTlN5cXRUVUdIMjZjeVZVZ3c9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", - "signature": "MEUCIQChJrb1A12ymk2Hh9rT+SFXvVu33LBqRTHSjoHOyrH/rgIgMsK3ho1CgE7X/n3Rpv8JsRJPq6YfmqGV3vbgwVEMNzU=" + "endorser": "CgdPcmcxTVNQEpYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQUlsWEQrSk1TVDYya2NEaXN4OEVkWjR3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXhNV2NHVmxjakF1YjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk9tbTdvL2pTNm4wVzQ2RURzT1pOVEU4OUpFQXNVeTMKSlFwb2NSaTdqUU9QbFNZdG5McE45QjdwWUZYbGR6VUVZUVE2VUxmUkQvWGZ1T0Z4ankzamRDbWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDYXE3WnQKWW9HWktGVHdLeEtJaDBpRldqK0sxcC9Mc2FQak9kMlg0QUxHU0FJZ1ZIUzFqR214UWFhbTg4U2VLVmlVY2s1KwpJRE5LOWRZT3NpS0JwbW9MVkR3PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "signature": "MEUCIQDkooYBqdgVS0niVFY9lryWOpBR7QnGCYPlWIfareWCEwIgKATL3SmWswuKu3+BN4lY7skwYZ5GWrs2UWfPFWplVIs=" } ], "proposal_response_payload": { @@ -30,12 +30,12 @@ }, "response": { "message": "", - "payload": "CgRteWNjEgMxLjAaBGVzY2MiBHZzY2MqKBIMEgoIARICCAASAggBGgsSCQoHT3JnMU1TUBoLEgkKB09yZzJNU1AyRAogrYSlIS9gv2M6cwB51jpgRxY/hmIHjA88uoIvS7fFwycSIAcfFCkeFSuyrojn/fnlp3TTE2FroxVKhPag1FoXX2MmOiBIdMnpDO43XiR56xWriw52xwRchMkbKk5MIdIugVo5CEIsEgwSCggBEgIIABICCAEaDRILCgdPcmcxTVNQEAEaDRILCgdPcmcyTVNQEAE=", + "payload": "CgRteWNjEgMxLjAaBGVzY2MiBHZzY2MqKBIMEgoIARICCAASAggBGgsSCQoHT3JnMU1TUBoLEgkKB09yZzJNU1AyRAogiOPYBRLW1ontRqy56cBAmCy4Lg23AidfJT9p2eUqzu4SIAcfFCkeFSuyrojn/fnlp3TTE2FroxVKhPag1FoXX2MmOiAaJG6gVPgVOgQ4h0dqJ6hIgJ1XGGu0y4gYbG7vfMNz9kIsEgwSCggBEgIIABICCAEaDRILCgdPcmcxTVNQEAEaDRILCgdPcmcyTVNQEAE=", "status": 200 }, - "results": "EvQBCgRsc2NjEusBCgYKBG15Y2Ma4AEKBG15Y2Ma1wEKBG15Y2MSAzEuMBoEZXNjYyIEdnNjYyooEgwSCggBEgIIABICCAEaCxIJCgdPcmcxTVNQGgsSCQoHT3JnMk1TUDJECiCthKUhL2C/YzpzAHnWOmBHFj+GYgeMDzy6gi9Lt8XDJxIgBx8UKR4VK7KuiOf9+eWndNMTYWujFUqE9qDUWhdfYyY6IEh0yekM7jdeJHnrFauLDnbHBFyEyRsqTkwh0i6BWjkIQiwSDBIKCAESAggAEgIIARoNEgsKB09yZzFNU1AQARoNEgsKB09yZzJNU1AQARIcCgRteWNjEhQaCAoBYRoDMTAwGggKAWIaAzIwMA==" + "results": "EvQBCgRsc2NjEusBCgYKBG15Y2Ma4AEKBG15Y2Ma1wEKBG15Y2MSAzEuMBoEZXNjYyIEdnNjYyooEgwSCggBEgIIABICCAEaCxIJCgdPcmcxTVNQGgsSCQoHT3JnMk1TUDJECiCI49gFEtbWie1GrLnpwECYLLguDbcCJ18lP2nZ5SrO7hIgBx8UKR4VK7KuiOf9+eWndNMTYWujFUqE9qDUWhdfYyY6IBokbqBU+BU6BDiHR2onqEiAnVcYa7TLiBhsbu98w3P2QiwSDBIKCAESAggAEgIIARoNEgsKB09yZzFNU1AQARoNEgsKB09yZzJNU1AQARIcCgRteWNjEhQaCAoBYRoDMTAwGggKAWIaAzIwMA==" }, - "proposal_hash": "2JSlwRIUCzCvXziLwsWCqHXlIdp1GUuK8SmwDIuVqBc=" + "proposal_hash": "UXdgWf0hCktlegX96SEYDAAk7iW9uB6OjadZIlj9T14=" } }, "chaincode_proposal_payload": { @@ -71,33 +71,33 @@ "channel_id": "businesschannel", "epoch": "0", "extension": "EgYSBGxzY2M=", - "timestamp": "2017-12-12T14:19:49.427374700Z", - "tx_id": "d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d", + "timestamp": "2017-12-15T03:49:22.509181400Z", + "tx_id": "2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60", "type": 3, "version": 0 }, "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org1MSP" }, - "nonce": "NON+CGkOFXHFJyVwN+iIWGfvKCyMBF1K" + "nonce": "8NKTFAb3dikEvjN949WJPnWHBobDSrcm" } } }, - "signature": "MEQCIFeQA3MNPPwfYOntsI7QQoW26XTNmnUaU9HmvjyCpIduAiBvkmosV+OCzEPDiLI3W+4cSw/RPWJw0My9D6rUQMNl/Q==" + "signature": "MEQCIF2J+EWEHEEs1co02R91aX+KD8vK44YRly6Mxwifoh6hAiB3enKj+58Cjqb3Z1aIlbw9RPUQa47HdGzlq5Vii31FYw==" } ] }, "header": { - "data_hash": "NmMMcQ4m+K0wkWLZFlramMqZzoC4/iklbiqHNwOV/XM=", + "data_hash": "Hf0HguHjhmDa36KzAJOaVmAVttUODRLGgy9q/hnZAoI=", "number": "3", - "previous_hash": "qSV+oGp6K6XQAgbd1iGQQSiXa3r6KDswBYsxU6HhADw=" + "previous_hash": "aG2R7i0A2gklGJDpqbaQyGaJ/teK91m5afnYsBUIeFQ=" }, "metadata": { "metadata": [ - "EvgGCq0GCpAGCgpPcmRlcmVyTVNQEoEGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNERENDQWJLZ0F3SUJBZ0lRWlFCMmZ6M3ZvVFdYODNPNnVOWSt5akFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNVm9YRFRJM01USXhNREE0TkRBeE1Wb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBUnNRbE1uang2d3pMUTNFVkk1ekNXeFhFSFJIQTBGZ0pvYUhYY2NQWllaTXRnQ1NLaE4KdFY0bUJPMXYreFVlOSsxN1U5Ty9GcDdpS1RhbGhiL2VnbnF3bzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDREFrQzh4Y1VkUmcrRDM4eHNDc1NaZDBLNDNDck9FCitFWDNpekdzVU15MVJ6QUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpRUFnbklNTjdoclpTcDRVYVZSOHUrZXRvL3EKWFpOTUdqa3ZkYUFQSG8xYXZnOENJRzZFSkM2NW5vamhLbHVPU0hIQVlranI1Y0dkbWFZRVJJV2ZEc3k1VEZnZAotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIY9TkJoSOuf/I249rK8nggRdE8EWABG2gCEkYwRAIgUv5LmqXGKtnrIPRMMK9iRAPQnGYzLQubvRlRi6RXZycCICobUr7FhGdvkiwD1w9DtG4pRs6DI3aZklFnguwaQlVG", - "CgIIAhL4BgqtBgqQBgoKT3JkZXJlck1TUBKBBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDRERDQ0FiS2dBd0lCQWdJUVpRQjJmejN2b1RXWDgzTzZ1TlkreWpBS0JnZ3Foa2pPUFFRREFqQnBNUXN3CkNRWURWUVFHRXdKVlV6RVRNQkVHQTFVRUNCTUtRMkZzYVdadmNtNXBZVEVXTUJRR0ExVUVCeE1OVTJGdUlFWnkKWVc1amFYTmpiekVVTUJJR0ExVUVDaE1MWlhoaGJYQnNaUzVqYjIweEZ6QVZCZ05WQkFNVERtTmhMbVY0WVcxdwpiR1V1WTI5dE1CNFhEVEUzTVRJeE1qQTROREF4TVZvWERUSTNNVEl4TURBNE5EQXhNVm93V0RFTE1Ba0dBMVVFCkJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdVkybHoKWTI4eEhEQWFCZ05WQkFNVEUyOXlaR1Z5WlhJdVpYaGhiWEJzWlM1amIyMHdXVEFUQmdjcWhrak9QUUlCQmdncQpoa2pPUFFNQkJ3TkNBQVJzUWxNbmp4Nnd6TFEzRVZJNXpDV3hYRUhSSEEwRmdKb2FIWGNjUFpZWk10Z0NTS2hOCnRWNG1CTzF2K3hVZTkrMTdVOU8vRnA3aUtUYWxoYi9lZ25xd28wMHdTekFPQmdOVkhROEJBZjhFQkFNQ0I0QXcKREFZRFZSMFRBUUgvQkFJd0FEQXJCZ05WSFNNRUpEQWlnQ0RBa0M4eGNVZFJnK0QzOHhzQ3NTWmQwSzQzQ3JPRQorRVgzaXpHc1VNeTFSekFLQmdncWhrak9QUVFEQWdOSUFEQkZBaUVBZ25JTU43aHJaU3A0VWFWUjh1K2V0by9xClhaTk1Hamt2ZGFBUEhvMWF2ZzhDSUc2RUpDNjVub2poS2x1T1NISEFZa2pyNWNHZG1hWUVSSVdmRHN5NVRGZ2QKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQoSGFQinapdFhlDKs1OMy6huOiRlj95x/BDLhJGMEQCIHY7+tMLKAtocJtbzeJgBdWN0iip8oC+BLD1RnfdEc4iAiBUGGCMrmj7XEPbIX//M2SsN/Mhvn1MzSFduS5BdIgH2A==", + "EvgGCq0GCpAGCgpPcmRlcmVyTVNQEoEGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDekNDQWJLZ0F3SUJBZ0lRS3d5NnZBbDRwRkNHaEZybUptWjBVVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBU0tTQ2srMnQxbmFZeGdBcFlhTzAwYTlwN2tHMW1tSjEwL2h0TkNKSVNQdlR1VVExY3YKelFPK2lOOTZtTHVNbmk0dXRrQWRmYWtZdFlXaWNBaDA2VzZjbzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDRDhjb1BFWXJncGVWdnNEcUYxS25rWVZnWEVkbHhkCmliVmllYXJTVEVOMk5UQUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQXlPWUZHWUJWYjk4VGptbkRRaC9WVE5SR3YKempmQ2RBaXNvWUNVdzk1clF3SWdERjg0dWE2Z256UDNrRE9VMDRVUVZLazB1U0FEaXRKMjVLejFwVmhpS1FnPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIYkINHaX4irI4etCNYBCfkOsVV/u114xk4EkYwRAIgfbk/9TJTniBmJ1RQZTRcpT8MZIGFd0mpmv55/sbkr5YCIA7+4E9HC+11VnjvKNtJAJHutsvRpAddOz0tUrqlmDkB", + "CgIIAhL5BgqtBgqQBgoKT3JkZXJlck1TUBKBBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDQ3pDQ0FiS2dBd0lCQWdJUUt3eTZ2QWw0cEZDR2hGcm1KbVowVVRBS0JnZ3Foa2pPUFFRREFqQnBNUXN3CkNRWURWUVFHRXdKVlV6RVRNQkVHQTFVRUNCTUtRMkZzYVdadmNtNXBZVEVXTUJRR0ExVUVCeE1OVTJGdUlFWnkKWVc1amFYTmpiekVVTUJJR0ExVUVDaE1MWlhoaGJYQnNaUzVqYjIweEZ6QVZCZ05WQkFNVERtTmhMbVY0WVcxdwpiR1V1WTI5dE1CNFhEVEUzTVRJeE5UQXpNelUxTVZvWERUSTNNVEl4TXpBek16VTFNVm93V0RFTE1Ba0dBMVVFCkJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdVkybHoKWTI4eEhEQWFCZ05WQkFNVEUyOXlaR1Z5WlhJdVpYaGhiWEJzWlM1amIyMHdXVEFUQmdjcWhrak9QUUlCQmdncQpoa2pPUFFNQkJ3TkNBQVNLU0NrKzJ0MW5hWXhnQXBZYU8wMGE5cDdrRzFtbUoxMC9odE5DSklTUHZUdVVRMWN2CnpRTytpTjk2bUx1TW5pNHV0a0FkZmFrWXRZV2ljQWgwNlc2Y28wMHdTekFPQmdOVkhROEJBZjhFQkFNQ0I0QXcKREFZRFZSMFRBUUgvQkFJd0FEQXJCZ05WSFNNRUpEQWlnQ0Q4Y29QRVlyZ3BlVnZzRHFGMUtua1lWZ1hFZGx4ZAppYlZpZWFyU1RFTjJOVEFLQmdncWhrak9QUVFEQWdOSEFEQkVBaUF5T1lGR1lCVmI5OFRqbW5EUWgvVlROUkd2CnpqZkNkQWlzb1lDVXc5NXJRd0lnREY4NHVhNmduelAza0RPVTA0VVFWS2swdVNBRGl0SjI1S3oxcFZoaUtRZz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQoSGCaqeWOlz6v4qPctEp4kNhlogAksRqpxqxJHMEUCIQDOwDu63kHcrwZn0Z9Op1b9byPbwm/10y2ZCOIgaLdcywIgaDRuazvEO+WEFkvOVph1NTFZfBbPpo2wycK0s23xD8Y=", "", "" ] diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_3.block_payload.json b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_3.block_payload.json index 4c5e25af..ec3015cf 100644 --- a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_3.block_payload.json +++ b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_3.block_payload.json @@ -4,17 +4,17 @@ { "header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org1MSP" }, - "nonce": "NON+CGkOFXHFJyVwN+iIWGfvKCyMBF1K" + "nonce": "8NKTFAb3dikEvjN949WJPnWHBobDSrcm" }, "payload": { "action": { "endorsements": [ { - "endorser": "CgdPcmcxTVNQEpYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRZnhDZ2RIbktXU0IxY2s3TkNJZis0akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFERXhad1pXVnlNQzV2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFdHRQakMzdXAxUTc3aktuWFlJQTdXdTJZckxvQUtxUGEKQ2o5cGRvQ3czdlI5SW1mL2M4ZGduYVJIQnZVK2RneE41ZW4xK240dGtxMERGYW1aODQzV3BxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUtyVW9NSWIKMld3QTk5NDlpTEhZK2lkTmFRbkQ5UzJ3dVVvbWwwSlBOdS9OQWlCUWx4WHVrRWk0OWM5cDErblJPd24wSXVPTQozTlN5cXRUVUdIMjZjeVZVZ3c9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", - "signature": "MEUCIQChJrb1A12ymk2Hh9rT+SFXvVu33LBqRTHSjoHOyrH/rgIgMsK3ho1CgE7X/n3Rpv8JsRJPq6YfmqGV3vbgwVEMNzU=" + "endorser": "CgdPcmcxTVNQEpYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQUlsWEQrSk1TVDYya2NEaXN4OEVkWjR3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXhNV2NHVmxjakF1YjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk9tbTdvL2pTNm4wVzQ2RURzT1pOVEU4OUpFQXNVeTMKSlFwb2NSaTdqUU9QbFNZdG5McE45QjdwWUZYbGR6VUVZUVE2VUxmUkQvWGZ1T0Z4ankzamRDbWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDYXE3WnQKWW9HWktGVHdLeEtJaDBpRldqK0sxcC9Mc2FQak9kMlg0QUxHU0FJZ1ZIUzFqR214UWFhbTg4U2VLVmlVY2s1KwpJRE5LOWRZT3NpS0JwbW9MVkR3PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "signature": "MEUCIQDkooYBqdgVS0niVFY9lryWOpBR7QnGCYPlWIfareWCEwIgKATL3SmWswuKu3+BN4lY7skwYZ5GWrs2UWfPFWplVIs=" } ], "proposal_response_payload": { @@ -26,12 +26,12 @@ }, "response": { "message": "", - "payload": "CgRteWNjEgMxLjAaBGVzY2MiBHZzY2MqKBIMEgoIARICCAASAggBGgsSCQoHT3JnMU1TUBoLEgkKB09yZzJNU1AyRAogrYSlIS9gv2M6cwB51jpgRxY/hmIHjA88uoIvS7fFwycSIAcfFCkeFSuyrojn/fnlp3TTE2FroxVKhPag1FoXX2MmOiBIdMnpDO43XiR56xWriw52xwRchMkbKk5MIdIugVo5CEIsEgwSCggBEgIIABICCAEaDRILCgdPcmcxTVNQEAEaDRILCgdPcmcyTVNQEAE=", + "payload": "CgRteWNjEgMxLjAaBGVzY2MiBHZzY2MqKBIMEgoIARICCAASAggBGgsSCQoHT3JnMU1TUBoLEgkKB09yZzJNU1AyRAogiOPYBRLW1ontRqy56cBAmCy4Lg23AidfJT9p2eUqzu4SIAcfFCkeFSuyrojn/fnlp3TTE2FroxVKhPag1FoXX2MmOiAaJG6gVPgVOgQ4h0dqJ6hIgJ1XGGu0y4gYbG7vfMNz9kIsEgwSCggBEgIIABICCAEaDRILCgdPcmcxTVNQEAEaDRILCgdPcmcyTVNQEAE=", "status": 200 }, - "results": "EvQBCgRsc2NjEusBCgYKBG15Y2Ma4AEKBG15Y2Ma1wEKBG15Y2MSAzEuMBoEZXNjYyIEdnNjYyooEgwSCggBEgIIABICCAEaCxIJCgdPcmcxTVNQGgsSCQoHT3JnMk1TUDJECiCthKUhL2C/YzpzAHnWOmBHFj+GYgeMDzy6gi9Lt8XDJxIgBx8UKR4VK7KuiOf9+eWndNMTYWujFUqE9qDUWhdfYyY6IEh0yekM7jdeJHnrFauLDnbHBFyEyRsqTkwh0i6BWjkIQiwSDBIKCAESAggAEgIIARoNEgsKB09yZzFNU1AQARoNEgsKB09yZzJNU1AQARIcCgRteWNjEhQaCAoBYRoDMTAwGggKAWIaAzIwMA==" + "results": "EvQBCgRsc2NjEusBCgYKBG15Y2Ma4AEKBG15Y2Ma1wEKBG15Y2MSAzEuMBoEZXNjYyIEdnNjYyooEgwSCggBEgIIABICCAEaCxIJCgdPcmcxTVNQGgsSCQoHT3JnMk1TUDJECiCI49gFEtbWie1GrLnpwECYLLguDbcCJ18lP2nZ5SrO7hIgBx8UKR4VK7KuiOf9+eWndNMTYWujFUqE9qDUWhdfYyY6IBokbqBU+BU6BDiHR2onqEiAnVcYa7TLiBhsbu98w3P2QiwSDBIKCAESAggAEgIIARoNEgsKB09yZzFNU1AQARoNEgsKB09yZzJNU1AQARIcCgRteWNjEhQaCAoBYRoDMTAwGggKAWIaAzIwMA==" }, - "proposal_hash": "2JSlwRIUCzCvXziLwsWCqHXlIdp1GUuK8SmwDIuVqBc=" + "proposal_hash": "UXdgWf0hCktlegX96SEYDAAk7iW9uB6OjadZIlj9T14=" } }, "chaincode_proposal_payload": { @@ -67,17 +67,17 @@ "channel_id": "businesschannel", "epoch": "0", "extension": "EgYSBGxzY2M=", - "timestamp": "2017-12-12T14:19:49.427374700Z", - "tx_id": "d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d", + "timestamp": "2017-12-15T03:49:22.509181400Z", + "tx_id": "2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60", "type": 3, "version": 0 }, "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org1MSP" }, - "nonce": "NON+CGkOFXHFJyVwN+iIWGfvKCyMBF1K" + "nonce": "8NKTFAb3dikEvjN949WJPnWHBobDSrcm" } } } diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_4.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_4.block index 808b8aa3..d65a9927 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_4.block and b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_4.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_4.block.json b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_4.block.json index b90796da..2dc6ecc9 100644 --- a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_4.block.json +++ b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_4.block.json @@ -8,17 +8,17 @@ { "header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRQkh6VlRRRlZwNXY2ZXNHRy9BRnZwREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFSVFPK202SXNsSjdTRzJoL0FXdDZVcFZHYklmSDErWGsKRUVBU0x2WXoxd1FMV2g3M2pVbXJEZTBHN1VoTDVSdXltazN1SDErUVZTS1hzZFU4M0dOczdxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnTW5vREx5dkIKOW9ObEpsVk5YdmRzcVgvcnIvYUxnQ2JsWVJiY3QwTDZXVThDSUF3SmlkZ3FjcG5WVzc0TzM0VWJoQW5lcVFDZgpaTThyd0xsZ1Y2WFVlVExXCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU1LZmJSQTQxNnArZlNheFE1cVA4all3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk0vaC8rRFh4cjJsTTFWdFBEd2hsQXlKVnI0WHQrS3YKVkxTbWVZK21YNS8rODAyU1BNcEl4WktFZjY1anp0YXNLQnhHYk9nQUJiZXl4M29YR2Q3ZGU4cWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFENElYSzIKOGJBRXNTZW5aZXUrTi81MGsyYlZqTFBzTXNKM3NFOTFBcmxQeEFJZ1hiMksyOFlPR0FMWUZYc1kvdEdrK2EvMApONSt6L2ZUVGZjaEdmTGFDdHpNPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org2MSP" }, - "nonce": "Z2elICxec2wHTuAqKiJaIFlMXr9tHCbW" + "nonce": "1my5QKBfnPyC8+DJ6vh6L+70F41+2ERh" }, "payload": { "action": { "endorsements": [ { - "endorser": "CgdPcmcyTVNQEpIGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRSFVLcWprRzRFenFGellCaFZLaURYREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFERXhad1pXVnlNQzV2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFdnZPOSt6WXRSajBpR0Y1OW1HL2hhaDBQdS9Sb0ZmZWkKZitjZGZtVC9tZUEzSHE1YzhWd1p2Y0RyZDlMT1d6aHBiaFZXUFNFKytpcVd1Qk51TlpjNTVxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnWXlla2FSQmMKSEpEeVM5aE1LMmtJYmxpR1FobjY1SDhMVUhJRGx0MjJJOEVDSUJnMCtpMmY2T2M0eDFNRTE5bTVwNW9TZjJuOAppeUk2dXdDWWNsSzBkVTEvCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", - "signature": "MEUCIQC7RjYLwZceKV76JuUma3UAFLilkleqag4xdvn+AFouOQIgfSooq5t0wlzvBX0frdQbzSEVMrnVtgvqLverLsRU07o=" + "endorser": "CgdPcmcyTVNQEpYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUwzTnpLZWs4aEVWdEtRRzAzM25yQTB3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXhNV2NHVmxjakF1YjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkZLZi8xU2hNbmVFSXVxZmp5SHhCVW1wQVo5WG9pekQKMFBZZlhJdFhuOXV2WjV2R1dCR3gwRVhQMjJOYUlyakJEZVNPekkwcXFXT0hVQkhlZkFmSjZLdWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUNwbUsyL2QKZHVOd3NtZmRGeHZFT09qVWVqc2R0bkUzS0FuVXgva2dBYWI3QWlCK0NyRzhmVU1xUUF6S0M3cEJPWTJVU0lZYwpXSTcvWGhMK2ZPT3FyM1NOWXc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "signature": "MEQCIHNMQ2+iPCWxx4bpPEKN0uCJEp9S/TFWXrxUHgrmR3RQAiAHVX4KlIX9JdeMndhLMk4eIdwtXiBV8FmtJHw8hFzIow==" } ], "proposal_response_payload": { @@ -30,12 +30,12 @@ }, "response": { "message": "", - "payload": "CgRteWNjEgMxLjAaBGVzY2MiBHZzY2MqKBIMEgoIARICCAASAggBGgsSCQoHT3JnMU1TUBoLEgkKB09yZzJNU1AyRAogrYSlIS9gv2M6cwB51jpgRxY/hmIHjA88uoIvS7fFwycSIAcfFCkeFSuyrojn/fnlp3TTE2FroxVKhPag1FoXX2MmOiBIdMnpDO43XiR56xWriw52xwRchMkbKk5MIdIugVo5CEIsEgwSCggBEgIIABICCAEaDRILCgdPcmcxTVNQEAEaDRILCgdPcmcyTVNQEAE=", + "payload": "CgRteWNjEgMxLjAaBGVzY2MiBHZzY2MqKBIMEgoIARICCAASAggBGgsSCQoHT3JnMU1TUBoLEgkKB09yZzJNU1AyRAogiOPYBRLW1ontRqy56cBAmCy4Lg23AidfJT9p2eUqzu4SIAcfFCkeFSuyrojn/fnlp3TTE2FroxVKhPag1FoXX2MmOiAaJG6gVPgVOgQ4h0dqJ6hIgJ1XGGu0y4gYbG7vfMNz9kIsEgwSCggBEgIIABICCAEaDRILCgdPcmcxTVNQEAEaDRILCgdPcmcyTVNQEAE=", "status": 200 }, - "results": "EvQBCgRsc2NjEusBCgYKBG15Y2Ma4AEKBG15Y2Ma1wEKBG15Y2MSAzEuMBoEZXNjYyIEdnNjYyooEgwSCggBEgIIABICCAEaCxIJCgdPcmcxTVNQGgsSCQoHT3JnMk1TUDJECiCthKUhL2C/YzpzAHnWOmBHFj+GYgeMDzy6gi9Lt8XDJxIgBx8UKR4VK7KuiOf9+eWndNMTYWujFUqE9qDUWhdfYyY6IEh0yekM7jdeJHnrFauLDnbHBFyEyRsqTkwh0i6BWjkIQiwSDBIKCAESAggAEgIIARoNEgsKB09yZzFNU1AQARoNEgsKB09yZzJNU1AQARIcCgRteWNjEhQaCAoBYRoDMTAwGggKAWIaAzIwMA==" + "results": "EvQBCgRsc2NjEusBCgYKBG15Y2Ma4AEKBG15Y2Ma1wEKBG15Y2MSAzEuMBoEZXNjYyIEdnNjYyooEgwSCggBEgIIABICCAEaCxIJCgdPcmcxTVNQGgsSCQoHT3JnMk1TUDJECiCI49gFEtbWie1GrLnpwECYLLguDbcCJ18lP2nZ5SrO7hIgBx8UKR4VK7KuiOf9+eWndNMTYWujFUqE9qDUWhdfYyY6IBokbqBU+BU6BDiHR2onqEiAnVcYa7TLiBhsbu98w3P2QiwSDBIKCAESAggAEgIIARoNEgsKB09yZzFNU1AQARoNEgsKB09yZzJNU1AQARIcCgRteWNjEhQaCAoBYRoDMTAwGggKAWIaAzIwMA==" }, - "proposal_hash": "M4VzFyvOB8HiOK1l//uKDXvY9FoX7dfnG4/sDM/DUY4=" + "proposal_hash": "ML1EDUrrSYiJjTN+eBYuQG/7BN/XfJ/yalHEQqrJtEk=" } }, "chaincode_proposal_payload": { @@ -71,33 +71,33 @@ "channel_id": "businesschannel", "epoch": "0", "extension": "EgYSBGxzY2M=", - "timestamp": "2017-12-12T14:19:57.064483500Z", - "tx_id": "21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea", + "timestamp": "2017-12-15T03:49:30.337162100Z", + "tx_id": "912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218", "type": 3, "version": 0 }, "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRQkh6VlRRRlZwNXY2ZXNHRy9BRnZwREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFSVFPK202SXNsSjdTRzJoL0FXdDZVcFZHYklmSDErWGsKRUVBU0x2WXoxd1FMV2g3M2pVbXJEZTBHN1VoTDVSdXltazN1SDErUVZTS1hzZFU4M0dOczdxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnTW5vREx5dkIKOW9ObEpsVk5YdmRzcVgvcnIvYUxnQ2JsWVJiY3QwTDZXVThDSUF3SmlkZ3FjcG5WVzc0TzM0VWJoQW5lcVFDZgpaTThyd0xsZ1Y2WFVlVExXCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU1LZmJSQTQxNnArZlNheFE1cVA4all3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk0vaC8rRFh4cjJsTTFWdFBEd2hsQXlKVnI0WHQrS3YKVkxTbWVZK21YNS8rODAyU1BNcEl4WktFZjY1anp0YXNLQnhHYk9nQUJiZXl4M29YR2Q3ZGU4cWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFENElYSzIKOGJBRXNTZW5aZXUrTi81MGsyYlZqTFBzTXNKM3NFOTFBcmxQeEFJZ1hiMksyOFlPR0FMWUZYc1kvdEdrK2EvMApONSt6L2ZUVGZjaEdmTGFDdHpNPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org2MSP" }, - "nonce": "Z2elICxec2wHTuAqKiJaIFlMXr9tHCbW" + "nonce": "1my5QKBfnPyC8+DJ6vh6L+70F41+2ERh" } } }, - "signature": "MEUCIQDE4R8iX+CAVjm2pqt9P0WPcxtpTQgZT2ocKxNDFaXwIwIgBi04gVJ8WzKfkLoD9iR8QBwEcvUpeBqIYcxikvBnAkE=" + "signature": "MEUCIQCAcjym488qoDElMhvqbmxN9O42ug16VBPDum8m7nUsugIgZwj7PbhdxcI1sBajIRHnKD6+mvxyt6hTXi65CWGbHOs=" } ] }, "header": { - "data_hash": "R4DzcCfhy2NqHAteej/4FJr+xzVxUKqaLts8xoOEYnU=", + "data_hash": "iXgRX8ByGJB6Y5rv9boKjxZh2N6d4fJe326gMmLmbjQ=", "number": "4", - "previous_hash": "NAKZsNILkHUH9CqtXse5x2zhURqirTGAgFQwYjb0r+s=" + "previous_hash": "vR0+cVR9GOpo9azljP6IUAXJSvdDOOYRJX639LFCE64=" }, "metadata": { "metadata": [ - "EvgGCq0GCpAGCgpPcmRlcmVyTVNQEoEGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNERENDQWJLZ0F3SUJBZ0lRWlFCMmZ6M3ZvVFdYODNPNnVOWSt5akFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNVm9YRFRJM01USXhNREE0TkRBeE1Wb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBUnNRbE1uang2d3pMUTNFVkk1ekNXeFhFSFJIQTBGZ0pvYUhYY2NQWllaTXRnQ1NLaE4KdFY0bUJPMXYreFVlOSsxN1U5Ty9GcDdpS1RhbGhiL2VnbnF3bzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDREFrQzh4Y1VkUmcrRDM4eHNDc1NaZDBLNDNDck9FCitFWDNpekdzVU15MVJ6QUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpRUFnbklNTjdoclpTcDRVYVZSOHUrZXRvL3EKWFpOTUdqa3ZkYUFQSG8xYXZnOENJRzZFSkM2NW5vamhLbHVPU0hIQVlranI1Y0dkbWFZRVJJV2ZEc3k1VEZnZAotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIYju62GuXuZ1h/uTRFwW2oz4wlS0GEZRCREkYwRAIgOFZpX/oveWfN7bewoYy183fZ5iUzMw/dXozOyprXEokCIDLAoUZj9TJ1mz1XaWG1QdfDb8kJ1W99wNlQ8+XoxRuC", - "CgIIAhL4BgqtBgqQBgoKT3JkZXJlck1TUBKBBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDRERDQ0FiS2dBd0lCQWdJUVpRQjJmejN2b1RXWDgzTzZ1TlkreWpBS0JnZ3Foa2pPUFFRREFqQnBNUXN3CkNRWURWUVFHRXdKVlV6RVRNQkVHQTFVRUNCTUtRMkZzYVdadmNtNXBZVEVXTUJRR0ExVUVCeE1OVTJGdUlFWnkKWVc1amFYTmpiekVVTUJJR0ExVUVDaE1MWlhoaGJYQnNaUzVqYjIweEZ6QVZCZ05WQkFNVERtTmhMbVY0WVcxdwpiR1V1WTI5dE1CNFhEVEUzTVRJeE1qQTROREF4TVZvWERUSTNNVEl4TURBNE5EQXhNVm93V0RFTE1Ba0dBMVVFCkJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdVkybHoKWTI4eEhEQWFCZ05WQkFNVEUyOXlaR1Z5WlhJdVpYaGhiWEJzWlM1amIyMHdXVEFUQmdjcWhrak9QUUlCQmdncQpoa2pPUFFNQkJ3TkNBQVJzUWxNbmp4Nnd6TFEzRVZJNXpDV3hYRUhSSEEwRmdKb2FIWGNjUFpZWk10Z0NTS2hOCnRWNG1CTzF2K3hVZTkrMTdVOU8vRnA3aUtUYWxoYi9lZ25xd28wMHdTekFPQmdOVkhROEJBZjhFQkFNQ0I0QXcKREFZRFZSMFRBUUgvQkFJd0FEQXJCZ05WSFNNRUpEQWlnQ0RBa0M4eGNVZFJnK0QzOHhzQ3NTWmQwSzQzQ3JPRQorRVgzaXpHc1VNeTFSekFLQmdncWhrak9QUVFEQWdOSUFEQkZBaUVBZ25JTU43aHJaU3A0VWFWUjh1K2V0by9xClhaTk1Hamt2ZGFBUEhvMWF2ZzhDSUc2RUpDNjVub2poS2x1T1NISEFZa2pyNWNHZG1hWUVSSVdmRHN5NVRGZ2QKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQoSGDM2yOVI2zWVJlCrxqy+ilcio2NZukhd3hJGMEQCIF0rQYtg+uvQDSYuOwZnMLH4UDz6o4OMfnFKPpc4IoeNAiAapngGu3T/HLKgNHihUxtvLMovohKNvP/f4fZqXMXy1w==", + "EvkGCq0GCpAGCgpPcmRlcmVyTVNQEoEGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDekNDQWJLZ0F3SUJBZ0lRS3d5NnZBbDRwRkNHaEZybUptWjBVVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBU0tTQ2srMnQxbmFZeGdBcFlhTzAwYTlwN2tHMW1tSjEwL2h0TkNKSVNQdlR1VVExY3YKelFPK2lOOTZtTHVNbmk0dXRrQWRmYWtZdFlXaWNBaDA2VzZjbzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDRDhjb1BFWXJncGVWdnNEcUYxS25rWVZnWEVkbHhkCmliVmllYXJTVEVOMk5UQUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQXlPWUZHWUJWYjk4VGptbkRRaC9WVE5SR3YKempmQ2RBaXNvWUNVdzk1clF3SWdERjg0dWE2Z256UDNrRE9VMDRVUVZLazB1U0FEaXRKMjVLejFwVmhpS1FnPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIYQTSobixOUPYBQceyRUDB2V/SY7KyoVv0EkcwRQIhAPrWkpAiLbMGnldOh35ilJFr3RxW6C2+JHCNwxEGzfs+AiAIyJ59ArI0S2PFa4uIR57ARhbOB6N56LDU0gVGTRAWeA==", + "CgIIAhL5BgqtBgqQBgoKT3JkZXJlck1TUBKBBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDQ3pDQ0FiS2dBd0lCQWdJUUt3eTZ2QWw0cEZDR2hGcm1KbVowVVRBS0JnZ3Foa2pPUFFRREFqQnBNUXN3CkNRWURWUVFHRXdKVlV6RVRNQkVHQTFVRUNCTUtRMkZzYVdadmNtNXBZVEVXTUJRR0ExVUVCeE1OVTJGdUlFWnkKWVc1amFYTmpiekVVTUJJR0ExVUVDaE1MWlhoaGJYQnNaUzVqYjIweEZ6QVZCZ05WQkFNVERtTmhMbVY0WVcxdwpiR1V1WTI5dE1CNFhEVEUzTVRJeE5UQXpNelUxTVZvWERUSTNNVEl4TXpBek16VTFNVm93V0RFTE1Ba0dBMVVFCkJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdVkybHoKWTI4eEhEQWFCZ05WQkFNVEUyOXlaR1Z5WlhJdVpYaGhiWEJzWlM1amIyMHdXVEFUQmdjcWhrak9QUUlCQmdncQpoa2pPUFFNQkJ3TkNBQVNLU0NrKzJ0MW5hWXhnQXBZYU8wMGE5cDdrRzFtbUoxMC9odE5DSklTUHZUdVVRMWN2CnpRTytpTjk2bUx1TW5pNHV0a0FkZmFrWXRZV2ljQWgwNlc2Y28wMHdTekFPQmdOVkhROEJBZjhFQkFNQ0I0QXcKREFZRFZSMFRBUUgvQkFJd0FEQXJCZ05WSFNNRUpEQWlnQ0Q4Y29QRVlyZ3BlVnZzRHFGMUtua1lWZ1hFZGx4ZAppYlZpZWFyU1RFTjJOVEFLQmdncWhrak9QUVFEQWdOSEFEQkVBaUF5T1lGR1lCVmI5OFRqbW5EUWgvVlROUkd2CnpqZkNkQWlzb1lDVXc5NXJRd0lnREY4NHVhNmduelAza0RPVTA0VVFWS2swdVNBRGl0SjI1S3oxcFZoaUtRZz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQoSGIEiXB9Af2NFX2kMo2NCFKOwCL1m6G9KABJHMEUCIQCR0OiR91f/d49XWmu05M4zyL4quzIpjXirwxd7i2QXJgIgaEjbb9zXarxddP38dE5NGQtWDGWWtKgn2Tu93zkbhl4=", "", "" ] diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_4.block_payload.json b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_4.block_payload.json index 121ffa80..8249d3f4 100644 --- a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_4.block_payload.json +++ b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_4.block_payload.json @@ -4,17 +4,17 @@ { "header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRQkh6VlRRRlZwNXY2ZXNHRy9BRnZwREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFSVFPK202SXNsSjdTRzJoL0FXdDZVcFZHYklmSDErWGsKRUVBU0x2WXoxd1FMV2g3M2pVbXJEZTBHN1VoTDVSdXltazN1SDErUVZTS1hzZFU4M0dOczdxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnTW5vREx5dkIKOW9ObEpsVk5YdmRzcVgvcnIvYUxnQ2JsWVJiY3QwTDZXVThDSUF3SmlkZ3FjcG5WVzc0TzM0VWJoQW5lcVFDZgpaTThyd0xsZ1Y2WFVlVExXCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU1LZmJSQTQxNnArZlNheFE1cVA4all3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk0vaC8rRFh4cjJsTTFWdFBEd2hsQXlKVnI0WHQrS3YKVkxTbWVZK21YNS8rODAyU1BNcEl4WktFZjY1anp0YXNLQnhHYk9nQUJiZXl4M29YR2Q3ZGU4cWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFENElYSzIKOGJBRXNTZW5aZXUrTi81MGsyYlZqTFBzTXNKM3NFOTFBcmxQeEFJZ1hiMksyOFlPR0FMWUZYc1kvdEdrK2EvMApONSt6L2ZUVGZjaEdmTGFDdHpNPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org2MSP" }, - "nonce": "Z2elICxec2wHTuAqKiJaIFlMXr9tHCbW" + "nonce": "1my5QKBfnPyC8+DJ6vh6L+70F41+2ERh" }, "payload": { "action": { "endorsements": [ { - "endorser": "CgdPcmcyTVNQEpIGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRSFVLcWprRzRFenFGellCaFZLaURYREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFERXhad1pXVnlNQzV2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFdnZPOSt6WXRSajBpR0Y1OW1HL2hhaDBQdS9Sb0ZmZWkKZitjZGZtVC9tZUEzSHE1YzhWd1p2Y0RyZDlMT1d6aHBiaFZXUFNFKytpcVd1Qk51TlpjNTVxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnWXlla2FSQmMKSEpEeVM5aE1LMmtJYmxpR1FobjY1SDhMVUhJRGx0MjJJOEVDSUJnMCtpMmY2T2M0eDFNRTE5bTVwNW9TZjJuOAppeUk2dXdDWWNsSzBkVTEvCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", - "signature": "MEUCIQC7RjYLwZceKV76JuUma3UAFLilkleqag4xdvn+AFouOQIgfSooq5t0wlzvBX0frdQbzSEVMrnVtgvqLverLsRU07o=" + "endorser": "CgdPcmcyTVNQEpYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUwzTnpLZWs4aEVWdEtRRzAzM25yQTB3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXhNV2NHVmxjakF1YjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkZLZi8xU2hNbmVFSXVxZmp5SHhCVW1wQVo5WG9pekQKMFBZZlhJdFhuOXV2WjV2R1dCR3gwRVhQMjJOYUlyakJEZVNPekkwcXFXT0hVQkhlZkFmSjZLdWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUNwbUsyL2QKZHVOd3NtZmRGeHZFT09qVWVqc2R0bkUzS0FuVXgva2dBYWI3QWlCK0NyRzhmVU1xUUF6S0M3cEJPWTJVU0lZYwpXSTcvWGhMK2ZPT3FyM1NOWXc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "signature": "MEQCIHNMQ2+iPCWxx4bpPEKN0uCJEp9S/TFWXrxUHgrmR3RQAiAHVX4KlIX9JdeMndhLMk4eIdwtXiBV8FmtJHw8hFzIow==" } ], "proposal_response_payload": { @@ -26,12 +26,12 @@ }, "response": { "message": "", - "payload": "CgRteWNjEgMxLjAaBGVzY2MiBHZzY2MqKBIMEgoIARICCAASAggBGgsSCQoHT3JnMU1TUBoLEgkKB09yZzJNU1AyRAogrYSlIS9gv2M6cwB51jpgRxY/hmIHjA88uoIvS7fFwycSIAcfFCkeFSuyrojn/fnlp3TTE2FroxVKhPag1FoXX2MmOiBIdMnpDO43XiR56xWriw52xwRchMkbKk5MIdIugVo5CEIsEgwSCggBEgIIABICCAEaDRILCgdPcmcxTVNQEAEaDRILCgdPcmcyTVNQEAE=", + "payload": "CgRteWNjEgMxLjAaBGVzY2MiBHZzY2MqKBIMEgoIARICCAASAggBGgsSCQoHT3JnMU1TUBoLEgkKB09yZzJNU1AyRAogiOPYBRLW1ontRqy56cBAmCy4Lg23AidfJT9p2eUqzu4SIAcfFCkeFSuyrojn/fnlp3TTE2FroxVKhPag1FoXX2MmOiAaJG6gVPgVOgQ4h0dqJ6hIgJ1XGGu0y4gYbG7vfMNz9kIsEgwSCggBEgIIABICCAEaDRILCgdPcmcxTVNQEAEaDRILCgdPcmcyTVNQEAE=", "status": 200 }, - "results": "EvQBCgRsc2NjEusBCgYKBG15Y2Ma4AEKBG15Y2Ma1wEKBG15Y2MSAzEuMBoEZXNjYyIEdnNjYyooEgwSCggBEgIIABICCAEaCxIJCgdPcmcxTVNQGgsSCQoHT3JnMk1TUDJECiCthKUhL2C/YzpzAHnWOmBHFj+GYgeMDzy6gi9Lt8XDJxIgBx8UKR4VK7KuiOf9+eWndNMTYWujFUqE9qDUWhdfYyY6IEh0yekM7jdeJHnrFauLDnbHBFyEyRsqTkwh0i6BWjkIQiwSDBIKCAESAggAEgIIARoNEgsKB09yZzFNU1AQARoNEgsKB09yZzJNU1AQARIcCgRteWNjEhQaCAoBYRoDMTAwGggKAWIaAzIwMA==" + "results": "EvQBCgRsc2NjEusBCgYKBG15Y2Ma4AEKBG15Y2Ma1wEKBG15Y2MSAzEuMBoEZXNjYyIEdnNjYyooEgwSCggBEgIIABICCAEaCxIJCgdPcmcxTVNQGgsSCQoHT3JnMk1TUDJECiCI49gFEtbWie1GrLnpwECYLLguDbcCJ18lP2nZ5SrO7hIgBx8UKR4VK7KuiOf9+eWndNMTYWujFUqE9qDUWhdfYyY6IBokbqBU+BU6BDiHR2onqEiAnVcYa7TLiBhsbu98w3P2QiwSDBIKCAESAggAEgIIARoNEgsKB09yZzFNU1AQARoNEgsKB09yZzJNU1AQARIcCgRteWNjEhQaCAoBYRoDMTAwGggKAWIaAzIwMA==" }, - "proposal_hash": "M4VzFyvOB8HiOK1l//uKDXvY9FoX7dfnG4/sDM/DUY4=" + "proposal_hash": "ML1EDUrrSYiJjTN+eBYuQG/7BN/XfJ/yalHEQqrJtEk=" } }, "chaincode_proposal_payload": { @@ -67,17 +67,17 @@ "channel_id": "businesschannel", "epoch": "0", "extension": "EgYSBGxzY2M=", - "timestamp": "2017-12-12T14:19:57.064483500Z", - "tx_id": "21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea", + "timestamp": "2017-12-15T03:49:30.337162100Z", + "tx_id": "912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218", "type": 3, "version": 0 }, "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRQkh6VlRRRlZwNXY2ZXNHRy9BRnZwREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFSVFPK202SXNsSjdTRzJoL0FXdDZVcFZHYklmSDErWGsKRUVBU0x2WXoxd1FMV2g3M2pVbXJEZTBHN1VoTDVSdXltazN1SDErUVZTS1hzZFU4M0dOczdxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnTW5vREx5dkIKOW9ObEpsVk5YdmRzcVgvcnIvYUxnQ2JsWVJiY3QwTDZXVThDSUF3SmlkZ3FjcG5WVzc0TzM0VWJoQW5lcVFDZgpaTThyd0xsZ1Y2WFVlVExXCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU1LZmJSQTQxNnArZlNheFE1cVA4all3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk0vaC8rRFh4cjJsTTFWdFBEd2hsQXlKVnI0WHQrS3YKVkxTbWVZK21YNS8rODAyU1BNcEl4WktFZjY1anp0YXNLQnhHYk9nQUJiZXl4M29YR2Q3ZGU4cWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFENElYSzIKOGJBRXNTZW5aZXUrTi81MGsyYlZqTFBzTXNKM3NFOTFBcmxQeEFJZ1hiMksyOFlPR0FMWUZYc1kvdEdrK2EvMApONSt6L2ZUVGZjaEdmTGFDdHpNPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org2MSP" }, - "nonce": "Z2elICxec2wHTuAqKiJaIFlMXr9tHCbW" + "nonce": "1my5QKBfnPyC8+DJ6vh6L+70F41+2ERh" } } } diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_5.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_5.block index 00ad25df..18e87737 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_5.block and b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_5.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_5.block.json b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_5.block.json index d6b9a178..12400702 100644 --- a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_5.block.json +++ b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_5.block.json @@ -8,17 +8,17 @@ { "header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org1MSP" }, - "nonce": "ZPHVav3VlcvA+0kfxsjlnT5/WV/wX8F3" + "nonce": "QQqDtPD9OFi/9aLNkRUxs/s3zWK1FhZT" }, "payload": { "action": { "endorsements": [ { - "endorser": "CgdPcmcxTVNQEpYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRZnhDZ2RIbktXU0IxY2s3TkNJZis0akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFERXhad1pXVnlNQzV2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFdHRQakMzdXAxUTc3aktuWFlJQTdXdTJZckxvQUtxUGEKQ2o5cGRvQ3czdlI5SW1mL2M4ZGduYVJIQnZVK2RneE41ZW4xK240dGtxMERGYW1aODQzV3BxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUtyVW9NSWIKMld3QTk5NDlpTEhZK2lkTmFRbkQ5UzJ3dVVvbWwwSlBOdS9OQWlCUWx4WHVrRWk0OWM5cDErblJPd24wSXVPTQozTlN5cXRUVUdIMjZjeVZVZ3c9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", - "signature": "MEUCIQC2Ij76m+ijcXBo0AHc3qOzqIh5aRNGdOrUylVrxo57GwIgBrRZenT3omkI+PxR0SmHu4x4ovgQt1uWjNXc7YrTXT8=" + "endorser": "CgdPcmcxTVNQEpYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQUlsWEQrSk1TVDYya2NEaXN4OEVkWjR3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXhNV2NHVmxjakF1YjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk9tbTdvL2pTNm4wVzQ2RURzT1pOVEU4OUpFQXNVeTMKSlFwb2NSaTdqUU9QbFNZdG5McE45QjdwWUZYbGR6VUVZUVE2VUxmUkQvWGZ1T0Z4ankzamRDbWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDYXE3WnQKWW9HWktGVHdLeEtJaDBpRldqK0sxcC9Mc2FQak9kMlg0QUxHU0FJZ1ZIUzFqR214UWFhbTg4U2VLVmlVY2s1KwpJRE5LOWRZT3NpS0JwbW9MVkR3PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "signature": "MEQCIBqhh5NQhkgjtdFZxLdPhLlzx0yEcVFreyes/fAM96ACAiBgxqEv0RDnjQ1wtgOtLVS2qnRcL/Sk/ci80NK2qxS1KA==" } ], "proposal_response_payload": { @@ -34,7 +34,7 @@ }, "results": "EhQKBGxzY2MSDAoKCgRteWNjEgIIAxItCgRteWNjEiUKBwoBYRICCAMKBwoBYhICCAMaBwoBYRoCOTAaCAoBYhoDMjEw" }, - "proposal_hash": "Ku/EwhwQZSuB/4ICMjR8m11ezkYNRDLslBwGeB9ETUo=" + "proposal_hash": "96w7mDNMVd0UMbfGhOW4YDprCb9bMACY5S8WHLbmbco=" } }, "chaincode_proposal_payload": { @@ -68,33 +68,33 @@ "channel_id": "businesschannel", "epoch": "0", "extension": "EgYSBG15Y2M=", - "timestamp": "2017-12-12T14:20:10.492745600Z", - "tx_id": "772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7", + "timestamp": "2017-12-15T03:49:45.191222600Z", + "tx_id": "522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e", "type": 3, "version": 0 }, "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org1MSP" }, - "nonce": "ZPHVav3VlcvA+0kfxsjlnT5/WV/wX8F3" + "nonce": "QQqDtPD9OFi/9aLNkRUxs/s3zWK1FhZT" } } }, - "signature": "MEUCIQD0sAYVpJH2VJItn5MpargAzT6vVmiuapV/U6haiu22VQIgE2rbn5XkkR/M0jkQVGoVD81A9UrEDblhNyPG+jJyP/I=" + "signature": "MEQCIAy6kIltWSTuksTxxSIipVPfz3jl+n5XS2KW/iSOPDzGAiA1bOBOtm/W+Ou8VcixRU351ut00vI/SGr/3M9I3Sun7Q==" } ] }, "header": { - "data_hash": "zcRe8eChf+MRwMgAPbHVT73F08vaomdAJfZlFNFY1Bg=", + "data_hash": "aqk0wxecPbDa9OqhRddfhi0a3QCYU/cJrr9QJ4h+cPw=", "number": "5", - "previous_hash": "OS5xIipgpFMHMRK3FaKgt8Z1F0Bx+uQf+SrBWsE70aY=" + "previous_hash": "Fo+HYlZXVif39HDbgZTArPRsidkuko9esqZB7Zd3YcM=" }, "metadata": { "metadata": [ - "EvgGCq0GCpAGCgpPcmRlcmVyTVNQEoEGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNERENDQWJLZ0F3SUJBZ0lRWlFCMmZ6M3ZvVFdYODNPNnVOWSt5akFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNVm9YRFRJM01USXhNREE0TkRBeE1Wb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBUnNRbE1uang2d3pMUTNFVkk1ekNXeFhFSFJIQTBGZ0pvYUhYY2NQWllaTXRnQ1NLaE4KdFY0bUJPMXYreFVlOSsxN1U5Ty9GcDdpS1RhbGhiL2VnbnF3bzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDREFrQzh4Y1VkUmcrRDM4eHNDc1NaZDBLNDNDck9FCitFWDNpekdzVU15MVJ6QUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpRUFnbklNTjdoclpTcDRVYVZSOHUrZXRvL3EKWFpOTUdqa3ZkYUFQSG8xYXZnOENJRzZFSkM2NW5vamhLbHVPU0hIQVlranI1Y0dkbWFZRVJJV2ZEc3k1VEZnZAotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIYukgIDYudKE8LmnJ+pXFtisRFf7zR0GoiEkYwRAIgM8HNYLkWLeyKvVvG/eHearphd+muxjsDYOCvjXDkIXwCIGtToh7Xn8hS1HMBPSX4ytRZsWt9/GAs/W3q114fkqKD", - "CgIIAhL4BgqtBgqQBgoKT3JkZXJlck1TUBKBBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDRERDQ0FiS2dBd0lCQWdJUVpRQjJmejN2b1RXWDgzTzZ1TlkreWpBS0JnZ3Foa2pPUFFRREFqQnBNUXN3CkNRWURWUVFHRXdKVlV6RVRNQkVHQTFVRUNCTUtRMkZzYVdadmNtNXBZVEVXTUJRR0ExVUVCeE1OVTJGdUlFWnkKWVc1amFYTmpiekVVTUJJR0ExVUVDaE1MWlhoaGJYQnNaUzVqYjIweEZ6QVZCZ05WQkFNVERtTmhMbVY0WVcxdwpiR1V1WTI5dE1CNFhEVEUzTVRJeE1qQTROREF4TVZvWERUSTNNVEl4TURBNE5EQXhNVm93V0RFTE1Ba0dBMVVFCkJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdVkybHoKWTI4eEhEQWFCZ05WQkFNVEUyOXlaR1Z5WlhJdVpYaGhiWEJzWlM1amIyMHdXVEFUQmdjcWhrak9QUUlCQmdncQpoa2pPUFFNQkJ3TkNBQVJzUWxNbmp4Nnd6TFEzRVZJNXpDV3hYRUhSSEEwRmdKb2FIWGNjUFpZWk10Z0NTS2hOCnRWNG1CTzF2K3hVZTkrMTdVOU8vRnA3aUtUYWxoYi9lZ25xd28wMHdTekFPQmdOVkhROEJBZjhFQkFNQ0I0QXcKREFZRFZSMFRBUUgvQkFJd0FEQXJCZ05WSFNNRUpEQWlnQ0RBa0M4eGNVZFJnK0QzOHhzQ3NTWmQwSzQzQ3JPRQorRVgzaXpHc1VNeTFSekFLQmdncWhrak9QUVFEQWdOSUFEQkZBaUVBZ25JTU43aHJaU3A0VWFWUjh1K2V0by9xClhaTk1Hamt2ZGFBUEhvMWF2ZzhDSUc2RUpDNjVub2poS2x1T1NISEFZa2pyNWNHZG1hWUVSSVdmRHN5NVRGZ2QKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQoSGFBG26+2PZGV+w5qDVTKuAI3rvGIOnRnaxJGMEQCIBwnyOknETTBAPEAV6lHoJ06tjXcgQ09Tj5WQrgpc74UAiB0j7979Yt8sEP4KdR5t0Vek4Hz0BUSa1Ah+PTL+O6Wog==", + "EvgGCq0GCpAGCgpPcmRlcmVyTVNQEoEGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDekNDQWJLZ0F3SUJBZ0lRS3d5NnZBbDRwRkNHaEZybUptWjBVVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBU0tTQ2srMnQxbmFZeGdBcFlhTzAwYTlwN2tHMW1tSjEwL2h0TkNKSVNQdlR1VVExY3YKelFPK2lOOTZtTHVNbmk0dXRrQWRmYWtZdFlXaWNBaDA2VzZjbzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDRDhjb1BFWXJncGVWdnNEcUYxS25rWVZnWEVkbHhkCmliVmllYXJTVEVOMk5UQUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQXlPWUZHWUJWYjk4VGptbkRRaC9WVE5SR3YKempmQ2RBaXNvWUNVdzk1clF3SWdERjg0dWE2Z256UDNrRE9VMDRVUVZLazB1U0FEaXRKMjVLejFwVmhpS1FnPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIYUU+kiiNqV3XbKhnecZrYIVztS9CcnEftEkYwRAIgM1Yrj46vBgoRPnUMCnwl3e96CSG4HKihGp5gIBN+YaECIDt2nf1PYfD+sxQO/M6BgvFaBUuzvBXwBVgJDr5q+CfU", + "CgIIAhL4BgqtBgqQBgoKT3JkZXJlck1TUBKBBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDQ3pDQ0FiS2dBd0lCQWdJUUt3eTZ2QWw0cEZDR2hGcm1KbVowVVRBS0JnZ3Foa2pPUFFRREFqQnBNUXN3CkNRWURWUVFHRXdKVlV6RVRNQkVHQTFVRUNCTUtRMkZzYVdadmNtNXBZVEVXTUJRR0ExVUVCeE1OVTJGdUlFWnkKWVc1amFYTmpiekVVTUJJR0ExVUVDaE1MWlhoaGJYQnNaUzVqYjIweEZ6QVZCZ05WQkFNVERtTmhMbVY0WVcxdwpiR1V1WTI5dE1CNFhEVEUzTVRJeE5UQXpNelUxTVZvWERUSTNNVEl4TXpBek16VTFNVm93V0RFTE1Ba0dBMVVFCkJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdVkybHoKWTI4eEhEQWFCZ05WQkFNVEUyOXlaR1Z5WlhJdVpYaGhiWEJzWlM1amIyMHdXVEFUQmdjcWhrak9QUUlCQmdncQpoa2pPUFFNQkJ3TkNBQVNLU0NrKzJ0MW5hWXhnQXBZYU8wMGE5cDdrRzFtbUoxMC9odE5DSklTUHZUdVVRMWN2CnpRTytpTjk2bUx1TW5pNHV0a0FkZmFrWXRZV2ljQWgwNlc2Y28wMHdTekFPQmdOVkhROEJBZjhFQkFNQ0I0QXcKREFZRFZSMFRBUUgvQkFJd0FEQXJCZ05WSFNNRUpEQWlnQ0Q4Y29QRVlyZ3BlVnZzRHFGMUtua1lWZ1hFZGx4ZAppYlZpZWFyU1RFTjJOVEFLQmdncWhrak9QUVFEQWdOSEFEQkVBaUF5T1lGR1lCVmI5OFRqbW5EUWgvVlROUkd2CnpqZkNkQWlzb1lDVXc5NXJRd0lnREY4NHVhNmduelAza0RPVTA0VVFWS2swdVNBRGl0SjI1S3oxcFZoaUtRZz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQoSGHlcHfL+MHE8ATquQoijtIdLZ6gy2GA1ixJGMEQCIE0uvTOY82CMmTi4TTN0DSkGCtJnKuZFpniIQy5RYnnNAiBb1Fu1Sx5gUqv23Z0pwF66d2pbthW3iqf/f0byzSvOxA==", "", "" ] diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_5.block_payload.json b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_5.block_payload.json index 7e865b75..cd5e97e4 100644 --- a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_5.block_payload.json +++ b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_5.block_payload.json @@ -4,17 +4,17 @@ { "header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org1MSP" }, - "nonce": "ZPHVav3VlcvA+0kfxsjlnT5/WV/wX8F3" + "nonce": "QQqDtPD9OFi/9aLNkRUxs/s3zWK1FhZT" }, "payload": { "action": { "endorsements": [ { - "endorser": "CgdPcmcxTVNQEpYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRZnhDZ2RIbktXU0IxY2s3TkNJZis0akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFERXhad1pXVnlNQzV2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFdHRQakMzdXAxUTc3aktuWFlJQTdXdTJZckxvQUtxUGEKQ2o5cGRvQ3czdlI5SW1mL2M4ZGduYVJIQnZVK2RneE41ZW4xK240dGtxMERGYW1aODQzV3BxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUtyVW9NSWIKMld3QTk5NDlpTEhZK2lkTmFRbkQ5UzJ3dVVvbWwwSlBOdS9OQWlCUWx4WHVrRWk0OWM5cDErblJPd24wSXVPTQozTlN5cXRUVUdIMjZjeVZVZ3c9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", - "signature": "MEUCIQC2Ij76m+ijcXBo0AHc3qOzqIh5aRNGdOrUylVrxo57GwIgBrRZenT3omkI+PxR0SmHu4x4ovgQt1uWjNXc7YrTXT8=" + "endorser": "CgdPcmcxTVNQEpYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQUlsWEQrSk1TVDYya2NEaXN4OEVkWjR3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXhNV2NHVmxjakF1YjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk9tbTdvL2pTNm4wVzQ2RURzT1pOVEU4OUpFQXNVeTMKSlFwb2NSaTdqUU9QbFNZdG5McE45QjdwWUZYbGR6VUVZUVE2VUxmUkQvWGZ1T0Z4ankzamRDbWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDYXE3WnQKWW9HWktGVHdLeEtJaDBpRldqK0sxcC9Mc2FQak9kMlg0QUxHU0FJZ1ZIUzFqR214UWFhbTg4U2VLVmlVY2s1KwpJRE5LOWRZT3NpS0JwbW9MVkR3PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "signature": "MEQCIBqhh5NQhkgjtdFZxLdPhLlzx0yEcVFreyes/fAM96ACAiBgxqEv0RDnjQ1wtgOtLVS2qnRcL/Sk/ci80NK2qxS1KA==" } ], "proposal_response_payload": { @@ -30,7 +30,7 @@ }, "results": "EhQKBGxzY2MSDAoKCgRteWNjEgIIAxItCgRteWNjEiUKBwoBYRICCAMKBwoBYhICCAMaBwoBYRoCOTAaCAoBYhoDMjEw" }, - "proposal_hash": "Ku/EwhwQZSuB/4ICMjR8m11ezkYNRDLslBwGeB9ETUo=" + "proposal_hash": "96w7mDNMVd0UMbfGhOW4YDprCb9bMACY5S8WHLbmbco=" } }, "chaincode_proposal_payload": { @@ -64,17 +64,17 @@ "channel_id": "businesschannel", "epoch": "0", "extension": "EgYSBG15Y2M=", - "timestamp": "2017-12-12T14:20:10.492745600Z", - "tx_id": "772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7", + "timestamp": "2017-12-15T03:49:45.191222600Z", + "tx_id": "522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e", "type": 3, "version": 0 }, "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org1MSP" }, - "nonce": "ZPHVav3VlcvA+0kfxsjlnT5/WV/wX8F3" + "nonce": "QQqDtPD9OFi/9aLNkRUxs/s3zWK1FhZT" } } } diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_6.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_6.block index 6fe298fa..f257fd82 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_6.block and b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_6.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_6.block.json b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_6.block.json index a7cf2e46..aa017c45 100644 --- a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_6.block.json +++ b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_6.block.json @@ -8,17 +8,17 @@ { "header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRQkh6VlRRRlZwNXY2ZXNHRy9BRnZwREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFSVFPK202SXNsSjdTRzJoL0FXdDZVcFZHYklmSDErWGsKRUVBU0x2WXoxd1FMV2g3M2pVbXJEZTBHN1VoTDVSdXltazN1SDErUVZTS1hzZFU4M0dOczdxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnTW5vREx5dkIKOW9ObEpsVk5YdmRzcVgvcnIvYUxnQ2JsWVJiY3QwTDZXVThDSUF3SmlkZ3FjcG5WVzc0TzM0VWJoQW5lcVFDZgpaTThyd0xsZ1Y2WFVlVExXCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU1LZmJSQTQxNnArZlNheFE1cVA4all3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk0vaC8rRFh4cjJsTTFWdFBEd2hsQXlKVnI0WHQrS3YKVkxTbWVZK21YNS8rODAyU1BNcEl4WktFZjY1anp0YXNLQnhHYk9nQUJiZXl4M29YR2Q3ZGU4cWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFENElYSzIKOGJBRXNTZW5aZXUrTi81MGsyYlZqTFBzTXNKM3NFOTFBcmxQeEFJZ1hiMksyOFlPR0FMWUZYc1kvdEdrK2EvMApONSt6L2ZUVGZjaEdmTGFDdHpNPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org2MSP" }, - "nonce": "0vm/MQCQX0LxFrKgeXvG8ZNEwX6pR7Yc" + "nonce": "IEdkd/HBwgAJ7da1iJSSigE+rKEBk1sO" }, "payload": { "action": { "endorsements": [ { - "endorser": "CgdPcmcyTVNQEpYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQVBHZWxPZHhYYzlvajUxM1UvZ0lBb3N3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFeU1EZzBNREV4V2hjTk1qY3hNakV3TURnME1ERXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXhNV2NHVmxjakV1YjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQlA0OHJxdGNOTlhnV1N0TUpBQWNTczBwTXlia1hseE4KZytidndaQ21rcTFEYklHSnduNUxHUlFKL2RuUC85dnZRQ2NrRWlQa2FyU3VvSDNGdGt2SHVLZWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUIwMEhNYkttRFNWCjAranBDelJUYkVuaXBGSjlBeVQ5aXpRem1JOW1xU1k5TUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUZoTnltUHUKN2lsYkk2MkppdUw5SlVZYStmNitKMzFxTGJWVm91NG5rYndJQWlCRzhleC9zR2YyY1RmNUY1MWdVaGhDUVo0MgpkRVJYQzBpRWVReVllNjNGNXc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", - "signature": "MEUCIQDx59gv9SnXvqbHvhn4ZIJUSaL4n/7q+2KUIN9AzQDciAIgEOeO3Clz7oksRJUkSa1WSIl5NPUV4RM6IQ/nPPDraU4=" + "endorser": "CgdPcmcyTVNQEpIGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRTDlDRDhkdmdMSzBzUThQV0RxNk1sREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRVd016TTFOVEZhRncweU56RXlNVE13TXpNMU5URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFERXhad1pXVnlNUzV2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFMUlCdGFUUXZVVWExYUgxUmNqWGs2Yi83Rm1rUHZ0NDEKQytHbkFkSkV2MnRHT0hLNy9NK1BEVng1YWpmNHZiVnBNaXo0d00rQlJzSTN5WnVRbmZINmxxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSktwWEtzbDZzWHRpCmhjTW9wNVhZQmYvcVRwaURQcDRBL1hnbzU1L21hcnN3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnYjk4ZGJBbk8KeUlISWQrcndlbVFROWFRaWRxTGo3Vzk4MjBiL0JTWUdjQm9DSUV0VTJYVjY0N2JhbmVWaVdhZUd1V0xob2xhNwp2UHphc0xSUDV0bi9yZVVpCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", + "signature": "MEQCIEYf0GxTxcnsbboE8rDyLRb3A4SrNtWluxxz8r/JYwg1AiBB/m3DGQX6QHUUKvPBh2c8MmSORGSUClPAxjz2apsOhg==" } ], "proposal_response_payload": { @@ -34,7 +34,7 @@ }, "results": "EhQKBGxzY2MSDAoKCgRteWNjEgIIAxItCgRteWNjEiUKBwoBYRICCAUKBwoBYhICCAUaBwoBYRoCODAaCAoBYhoDMjIw" }, - "proposal_hash": "hcfZfY6UkJoKJa7GxBVp41RsDKrKfHj/fzSAjR6ze8g=" + "proposal_hash": "ab/O6lLVOM4kHqsFJ5J1bcNk5ALn71L9rs0KPeJnWqA=" } }, "chaincode_proposal_payload": { @@ -68,33 +68,33 @@ "channel_id": "businesschannel", "epoch": "0", "extension": "EgYSBG15Y2M=", - "timestamp": "2017-12-12T14:20:17.479839400Z", - "tx_id": "d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a", + "timestamp": "2017-12-15T03:49:54.620545200Z", + "tx_id": "397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a", "type": 3, "version": 0 }, "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRQkh6VlRRRlZwNXY2ZXNHRy9BRnZwREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFSVFPK202SXNsSjdTRzJoL0FXdDZVcFZHYklmSDErWGsKRUVBU0x2WXoxd1FMV2g3M2pVbXJEZTBHN1VoTDVSdXltazN1SDErUVZTS1hzZFU4M0dOczdxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnTW5vREx5dkIKOW9ObEpsVk5YdmRzcVgvcnIvYUxnQ2JsWVJiY3QwTDZXVThDSUF3SmlkZ3FjcG5WVzc0TzM0VWJoQW5lcVFDZgpaTThyd0xsZ1Y2WFVlVExXCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU1LZmJSQTQxNnArZlNheFE1cVA4all3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk0vaC8rRFh4cjJsTTFWdFBEd2hsQXlKVnI0WHQrS3YKVkxTbWVZK21YNS8rODAyU1BNcEl4WktFZjY1anp0YXNLQnhHYk9nQUJiZXl4M29YR2Q3ZGU4cWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFENElYSzIKOGJBRXNTZW5aZXUrTi81MGsyYlZqTFBzTXNKM3NFOTFBcmxQeEFJZ1hiMksyOFlPR0FMWUZYc1kvdEdrK2EvMApONSt6L2ZUVGZjaEdmTGFDdHpNPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org2MSP" }, - "nonce": "0vm/MQCQX0LxFrKgeXvG8ZNEwX6pR7Yc" + "nonce": "IEdkd/HBwgAJ7da1iJSSigE+rKEBk1sO" } } }, - "signature": "MEQCIAWriLRRst5989cHqEa1XPWQgVv2vmFkVGoK3tQnV28iAiAzJvB7z6VHiNhQd9VvEsVWm736jbu6XN6DAwGA+orBzw==" + "signature": "MEQCIHLsOYQVNxItM9TqVS8qHxli1ebzwt5+wLyjo70Z/aFBAiAnVXQnIN5oQGPZ+b+Z/s7CrHemjTouD8EGbR5mTN25MQ==" } ] }, "header": { - "data_hash": "g+IyJC2P2Y9pOfPrhBSnznUGVMp0WRqVKlxb6oYl5HQ=", + "data_hash": "c913zQ2skzd7luvBskZum/j526SNjKGuNpEAEISXPUg=", "number": "6", - "previous_hash": "K5caNOCfhJOX31jG1fYLDx0vD94CwtsVl4d9lf2NSlY=" + "previous_hash": "y8+2ruTshD3/aezoZ+AEl9TtUVicbdsvUrJ745sqsng=" }, "metadata": { "metadata": [ - "EvkGCq0GCpAGCgpPcmRlcmVyTVNQEoEGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNERENDQWJLZ0F3SUJBZ0lRWlFCMmZ6M3ZvVFdYODNPNnVOWSt5akFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNVm9YRFRJM01USXhNREE0TkRBeE1Wb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBUnNRbE1uang2d3pMUTNFVkk1ekNXeFhFSFJIQTBGZ0pvYUhYY2NQWllaTXRnQ1NLaE4KdFY0bUJPMXYreFVlOSsxN1U5Ty9GcDdpS1RhbGhiL2VnbnF3bzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDREFrQzh4Y1VkUmcrRDM4eHNDc1NaZDBLNDNDck9FCitFWDNpekdzVU15MVJ6QUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpRUFnbklNTjdoclpTcDRVYVZSOHUrZXRvL3EKWFpOTUdqa3ZkYUFQSG8xYXZnOENJRzZFSkM2NW5vamhLbHVPU0hIQVlranI1Y0dkbWFZRVJJV2ZEc3k1VEZnZAotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIYW8NITF7ddr05U+NEVcSBX7qColLrYpXdEkcwRQIhANyxRXiCYbDrKgPmE3wBanl47HeO3OTnMBM4h7Byk047AiB7Z79OX26OmA3l1BVkptm8q38V+Hvq/Hb+r6tmMxrDDQ==", - "CgIIAhL4BgqtBgqQBgoKT3JkZXJlck1TUBKBBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDRERDQ0FiS2dBd0lCQWdJUVpRQjJmejN2b1RXWDgzTzZ1TlkreWpBS0JnZ3Foa2pPUFFRREFqQnBNUXN3CkNRWURWUVFHRXdKVlV6RVRNQkVHQTFVRUNCTUtRMkZzYVdadmNtNXBZVEVXTUJRR0ExVUVCeE1OVTJGdUlFWnkKWVc1amFYTmpiekVVTUJJR0ExVUVDaE1MWlhoaGJYQnNaUzVqYjIweEZ6QVZCZ05WQkFNVERtTmhMbVY0WVcxdwpiR1V1WTI5dE1CNFhEVEUzTVRJeE1qQTROREF4TVZvWERUSTNNVEl4TURBNE5EQXhNVm93V0RFTE1Ba0dBMVVFCkJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdVkybHoKWTI4eEhEQWFCZ05WQkFNVEUyOXlaR1Z5WlhJdVpYaGhiWEJzWlM1amIyMHdXVEFUQmdjcWhrak9QUUlCQmdncQpoa2pPUFFNQkJ3TkNBQVJzUWxNbmp4Nnd6TFEzRVZJNXpDV3hYRUhSSEEwRmdKb2FIWGNjUFpZWk10Z0NTS2hOCnRWNG1CTzF2K3hVZTkrMTdVOU8vRnA3aUtUYWxoYi9lZ25xd28wMHdTekFPQmdOVkhROEJBZjhFQkFNQ0I0QXcKREFZRFZSMFRBUUgvQkFJd0FEQXJCZ05WSFNNRUpEQWlnQ0RBa0M4eGNVZFJnK0QzOHhzQ3NTWmQwSzQzQ3JPRQorRVgzaXpHc1VNeTFSekFLQmdncWhrak9QUVFEQWdOSUFEQkZBaUVBZ25JTU43aHJaU3A0VWFWUjh1K2V0by9xClhaTk1Hamt2ZGFBUEhvMWF2ZzhDSUc2RUpDNjVub2poS2x1T1NISEFZa2pyNWNHZG1hWUVSSVdmRHN5NVRGZ2QKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQoSGCVVGgwXndNu/VbVonbUwRiTyF0BWA5eiRJGMEQCICfJdZY+lPqj4DltNMimuQse3Yy+hrLqQxBEhRb+WxkaAiB5uSE14ZUnVRCSX20HUsCThJCWVHhM/r64xw6WNSQpEw==", + "EvkGCq0GCpAGCgpPcmRlcmVyTVNQEoEGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDekNDQWJLZ0F3SUJBZ0lRS3d5NnZBbDRwRkNHaEZybUptWjBVVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBU0tTQ2srMnQxbmFZeGdBcFlhTzAwYTlwN2tHMW1tSjEwL2h0TkNKSVNQdlR1VVExY3YKelFPK2lOOTZtTHVNbmk0dXRrQWRmYWtZdFlXaWNBaDA2VzZjbzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDRDhjb1BFWXJncGVWdnNEcUYxS25rWVZnWEVkbHhkCmliVmllYXJTVEVOMk5UQUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQXlPWUZHWUJWYjk4VGptbkRRaC9WVE5SR3YKempmQ2RBaXNvWUNVdzk1clF3SWdERjg0dWE2Z256UDNrRE9VMDRVUVZLazB1U0FEaXRKMjVLejFwVmhpS1FnPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIYKQ+ie8uMGmq/BPeomJSWlAlEaE6IR2a9EkcwRQIhAPauuMKQhqFL3X6594bFsVRiAHWgbxhFw1UBqt8yHwBSAiBpQYh0yH9Xql+QCrTMo7gVO24SIUU8apAi8o+8D1iJ6w==", + "CgIIAhL5BgqtBgqQBgoKT3JkZXJlck1TUBKBBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDQ3pDQ0FiS2dBd0lCQWdJUUt3eTZ2QWw0cEZDR2hGcm1KbVowVVRBS0JnZ3Foa2pPUFFRREFqQnBNUXN3CkNRWURWUVFHRXdKVlV6RVRNQkVHQTFVRUNCTUtRMkZzYVdadmNtNXBZVEVXTUJRR0ExVUVCeE1OVTJGdUlFWnkKWVc1amFYTmpiekVVTUJJR0ExVUVDaE1MWlhoaGJYQnNaUzVqYjIweEZ6QVZCZ05WQkFNVERtTmhMbVY0WVcxdwpiR1V1WTI5dE1CNFhEVEUzTVRJeE5UQXpNelUxTVZvWERUSTNNVEl4TXpBek16VTFNVm93V0RFTE1Ba0dBMVVFCkJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdVkybHoKWTI4eEhEQWFCZ05WQkFNVEUyOXlaR1Z5WlhJdVpYaGhiWEJzWlM1amIyMHdXVEFUQmdjcWhrak9QUUlCQmdncQpoa2pPUFFNQkJ3TkNBQVNLU0NrKzJ0MW5hWXhnQXBZYU8wMGE5cDdrRzFtbUoxMC9odE5DSklTUHZUdVVRMWN2CnpRTytpTjk2bUx1TW5pNHV0a0FkZmFrWXRZV2ljQWgwNlc2Y28wMHdTekFPQmdOVkhROEJBZjhFQkFNQ0I0QXcKREFZRFZSMFRBUUgvQkFJd0FEQXJCZ05WSFNNRUpEQWlnQ0Q4Y29QRVlyZ3BlVnZzRHFGMUtua1lWZ1hFZGx4ZAppYlZpZWFyU1RFTjJOVEFLQmdncWhrak9QUVFEQWdOSEFEQkVBaUF5T1lGR1lCVmI5OFRqbW5EUWgvVlROUkd2CnpqZkNkQWlzb1lDVXc5NXJRd0lnREY4NHVhNmduelAza0RPVTA0VVFWS2swdVNBRGl0SjI1S3oxcFZoaUtRZz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQoSGNdlzLqJdrRBA7BbIJb7QXBHcMhKpITlnhJHMEUCIQCPi+yFGWJPEBMYiYii2/APd2IFIcd8zlOmBbY78XpRGwIga9FWJqeeOXCQMXeCJtpcPKZqbmGLb2/g/K2RoK/PP/M=", "", "" ] diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_6.block_payload.json b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_6.block_payload.json index 9f73cc42..a07eb71a 100644 --- a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_6.block_payload.json +++ b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_6.block_payload.json @@ -4,17 +4,17 @@ { "header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRQkh6VlRRRlZwNXY2ZXNHRy9BRnZwREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFSVFPK202SXNsSjdTRzJoL0FXdDZVcFZHYklmSDErWGsKRUVBU0x2WXoxd1FMV2g3M2pVbXJEZTBHN1VoTDVSdXltazN1SDErUVZTS1hzZFU4M0dOczdxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnTW5vREx5dkIKOW9ObEpsVk5YdmRzcVgvcnIvYUxnQ2JsWVJiY3QwTDZXVThDSUF3SmlkZ3FjcG5WVzc0TzM0VWJoQW5lcVFDZgpaTThyd0xsZ1Y2WFVlVExXCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU1LZmJSQTQxNnArZlNheFE1cVA4all3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk0vaC8rRFh4cjJsTTFWdFBEd2hsQXlKVnI0WHQrS3YKVkxTbWVZK21YNS8rODAyU1BNcEl4WktFZjY1anp0YXNLQnhHYk9nQUJiZXl4M29YR2Q3ZGU4cWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFENElYSzIKOGJBRXNTZW5aZXUrTi81MGsyYlZqTFBzTXNKM3NFOTFBcmxQeEFJZ1hiMksyOFlPR0FMWUZYc1kvdEdrK2EvMApONSt6L2ZUVGZjaEdmTGFDdHpNPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org2MSP" }, - "nonce": "0vm/MQCQX0LxFrKgeXvG8ZNEwX6pR7Yc" + "nonce": "IEdkd/HBwgAJ7da1iJSSigE+rKEBk1sO" }, "payload": { "action": { "endorsements": [ { - "endorser": "CgdPcmcyTVNQEpYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQVBHZWxPZHhYYzlvajUxM1UvZ0lBb3N3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFeU1EZzBNREV4V2hjTk1qY3hNakV3TURnME1ERXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXhNV2NHVmxjakV1YjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQlA0OHJxdGNOTlhnV1N0TUpBQWNTczBwTXlia1hseE4KZytidndaQ21rcTFEYklHSnduNUxHUlFKL2RuUC85dnZRQ2NrRWlQa2FyU3VvSDNGdGt2SHVLZWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUIwMEhNYkttRFNWCjAranBDelJUYkVuaXBGSjlBeVQ5aXpRem1JOW1xU1k5TUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUZoTnltUHUKN2lsYkk2MkppdUw5SlVZYStmNitKMzFxTGJWVm91NG5rYndJQWlCRzhleC9zR2YyY1RmNUY1MWdVaGhDUVo0MgpkRVJYQzBpRWVReVllNjNGNXc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", - "signature": "MEUCIQDx59gv9SnXvqbHvhn4ZIJUSaL4n/7q+2KUIN9AzQDciAIgEOeO3Clz7oksRJUkSa1WSIl5NPUV4RM6IQ/nPPDraU4=" + "endorser": "CgdPcmcyTVNQEpIGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRTDlDRDhkdmdMSzBzUThQV0RxNk1sREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRVd016TTFOVEZhRncweU56RXlNVE13TXpNMU5URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFERXhad1pXVnlNUzV2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFMUlCdGFUUXZVVWExYUgxUmNqWGs2Yi83Rm1rUHZ0NDEKQytHbkFkSkV2MnRHT0hLNy9NK1BEVng1YWpmNHZiVnBNaXo0d00rQlJzSTN5WnVRbmZINmxxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSktwWEtzbDZzWHRpCmhjTW9wNVhZQmYvcVRwaURQcDRBL1hnbzU1L21hcnN3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnYjk4ZGJBbk8KeUlISWQrcndlbVFROWFRaWRxTGo3Vzk4MjBiL0JTWUdjQm9DSUV0VTJYVjY0N2JhbmVWaVdhZUd1V0xob2xhNwp2UHphc0xSUDV0bi9yZVVpCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", + "signature": "MEQCIEYf0GxTxcnsbboE8rDyLRb3A4SrNtWluxxz8r/JYwg1AiBB/m3DGQX6QHUUKvPBh2c8MmSORGSUClPAxjz2apsOhg==" } ], "proposal_response_payload": { @@ -30,7 +30,7 @@ }, "results": "EhQKBGxzY2MSDAoKCgRteWNjEgIIAxItCgRteWNjEiUKBwoBYRICCAUKBwoBYhICCAUaBwoBYRoCODAaCAoBYhoDMjIw" }, - "proposal_hash": "hcfZfY6UkJoKJa7GxBVp41RsDKrKfHj/fzSAjR6ze8g=" + "proposal_hash": "ab/O6lLVOM4kHqsFJ5J1bcNk5ALn71L9rs0KPeJnWqA=" } }, "chaincode_proposal_payload": { @@ -64,17 +64,17 @@ "channel_id": "businesschannel", "epoch": "0", "extension": "EgYSBG15Y2M=", - "timestamp": "2017-12-12T14:20:17.479839400Z", - "tx_id": "d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a", + "timestamp": "2017-12-15T03:49:54.620545200Z", + "tx_id": "397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a", "type": 3, "version": 0 }, "signature_header": { "creator": { - "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRQkh6VlRRRlZwNXY2ZXNHRy9BRnZwREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFSVFPK202SXNsSjdTRzJoL0FXdDZVcFZHYklmSDErWGsKRUVBU0x2WXoxd1FMV2g3M2pVbXJEZTBHN1VoTDVSdXltazN1SDErUVZTS1hzZFU4M0dOczdxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnTW5vREx5dkIKOW9ObEpsVk5YdmRzcVgvcnIvYUxnQ2JsWVJiY3QwTDZXVThDSUF3SmlkZ3FjcG5WVzc0TzM0VWJoQW5lcVFDZgpaTThyd0xsZ1Y2WFVlVExXCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", + "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU1LZmJSQTQxNnArZlNheFE1cVA4all3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk0vaC8rRFh4cjJsTTFWdFBEd2hsQXlKVnI0WHQrS3YKVkxTbWVZK21YNS8rODAyU1BNcEl4WktFZjY1anp0YXNLQnhHYk9nQUJiZXl4M29YR2Q3ZGU4cWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFENElYSzIKOGJBRXNTZW5aZXUrTi81MGsyYlZqTFBzTXNKM3NFOTFBcmxQeEFJZ1hiMksyOFlPR0FMWUZYc1kvdEdrK2EvMApONSt6L2ZUVGZjaEdmTGFDdHpNPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org2MSP" }, - "nonce": "0vm/MQCQX0LxFrKgeXvG8ZNEwX6pR7Yc" + "nonce": "IEdkd/HBwgAJ7da1iJSSigE+rKEBk1sO" } } } diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/new_appchannel.tx b/hyperledger_fabric/latest/solo/channel-artifacts/new_appchannel.tx deleted file mode 100644 index 3c90b0f2..00000000 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/new_appchannel.tx and /dev/null differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/new_businesschannel.tx b/hyperledger_fabric/latest/solo/channel-artifacts/new_businesschannel.tx index 5e3f7b27..42216296 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/new_businesschannel.tx and b/hyperledger_fabric/latest/solo/channel-artifacts/new_businesschannel.tx differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.block b/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.block index cdd3f859..49ab7d09 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.block and b/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.block.json b/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.block.json index 09e28859..ca3530c4 100644 --- a/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.block.json +++ b/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.block.json @@ -108,7 +108,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -116,10 +116,10 @@ }, "name": "Org1MSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNSRENDQWVxZ0F3SUJBZ0lSQU1IcWRxVWpjbWdUTDZQTTJTWXJhUTh3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFeU1EZzBNREV3V2hjTk1qY3hNakV3TURnME1ERXcKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NUzVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQkNtMWNnd2dSZ2VuTkJobjlYdVp6UnFId0lWbjRmVElZOEhzMzAvTmNvN2pvd0hxbzV1N0lSWExCaXNua240SQp6L0tPbndneHJiejBETTUzRnZWL2VhYWpYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSVBrZjZXVnZ0dDljMHF2bjc1NHIKR3pwUi84VmtJS1FsWHF4QklRem5pS2xYTUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDV2liVllvTXZIc1g2eApPenNyclBxaExZYklTZDRMaXVMZkNpTDVEa1RUcWdJZ1pjQmdiZDVGekt5enJUektwVDlXK29KQ21rQVBBMG1mCnhFRldrTXRHYmdZPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRU2hqQXdlKzZzeG9TTVo4VXJZS09jVEFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRVd016TTFOVEJhRncweU56RXlNVE13TXpNMU5UQmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3hMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKR3d5eWZETEgwN2RGVmtFdnhKREdPS0dldlVjYVlIcGhadmh6Vjc4TUJYVndJRUdJRU5rN1pzOHgrZHg2aXdJSwpMT0dtWHhxL1dxZDRxTHM2a0Z5WnZxTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1Fnc0s5cEUvcGxJT1YxMG1xZWZVekUKdkNRVTZxYjB4ZkRZc1k2VHhjdXNFMVl3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUw3eFhyWUQxZmt6Y3B4aQp5eVpoRmZFdk1EV0NvVWljUXcyYitjM0dRNk91QWlBMEt0TnVINHlTNCtjMTNXOUxzZDI4WE5RSzg4Rmt3QjJKClFSOXloSkU3ckE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWUrZ0F3SUJBZ0lRYXpUd3QybHc4dXA3NVpDUytGRVFOakFLQmdncWhrak9QUVFEQWpCMk1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHQTFVRUF4TVdkR3h6ClkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1USXdPRFF3TVRCYUZ3MHlOekV5TVRBd09EUXcKTVRCYU1IWXhDekFKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSApFdzFUWVc0Z1JuSmhibU5wYzJOdk1Sa3dGd1lEVlFRS0V4QnZjbWN4TG1WNFlXMXdiR1V1WTI5dE1SOHdIUVlEClZRUURFeFowYkhOallTNXZjbWN4TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJS29aSXpqMEQKQVFjRFFnQUVxZXYzL2hWbmdVRWdoSS9hM3VXQWNadzcwYjVYZ1dud0lLOHdTRHpDWGJqb1dkbDk2alU1TmdBMQo1VnVXNVIyU3VXNnRuNjE5Sm95WDlxcFdCMGJiRktOZk1GMHdEZ1lEVlIwUEFRSC9CQVFEQWdHbU1BOEdBMVVkCkpRUUlNQVlHQkZVZEpRQXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QXBCZ05WSFE0RUlnUWdMQklUTTJyeExIbjUKalBXeUZySmpPandhZWJlYWZ0eW8ycmRpS2Ntajdmc3dDZ1lJS29aSXpqMEVBd0lEU0FBd1JRSWhBTnBoQ0RaUwpUU1ZML0dadDdUNGVaR2hUWFZLMXJtZmNNM0pjODBFMjFXbldBaUI3U0VDZzhRNDRMaU0wdy9YUFcwUkl1V2xzCjBFTG1LSjF1SCs3Y3Y3SnJXUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWUrZ0F3SUJBZ0lRZDlMN1pUUk14NXF3WnEwT1dVZXhSVEFLQmdncWhrak9QUVFEQWpCMk1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHQTFVRUF4TVdkR3h6ClkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1UVXdNek0xTlRCYUZ3MHlOekV5TVRNd016TTEKTlRCYU1IWXhDekFKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSApFdzFUWVc0Z1JuSmhibU5wYzJOdk1Sa3dGd1lEVlFRS0V4QnZjbWN4TG1WNFlXMXdiR1V1WTI5dE1SOHdIUVlEClZRUURFeFowYkhOallTNXZjbWN4TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJS29aSXpqMEQKQVFjRFFnQUVhdFoxeHhjWEQ4OHU0QUduQVR5RUhsNGJsOUVQSTNlQXJDNzBGK1VkOCtMbVRuV3drUjMvRWVOTwpieDJhUExTYi92ZVpONTh1dm1QMnZ0OTdoYktKc2FOZk1GMHdEZ1lEVlIwUEFRSC9CQVFEQWdHbU1BOEdBMVVkCkpRUUlNQVlHQkZVZEpRQXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QXBCZ05WSFE0RUlnUWdybUZCc2dXdUJDTDkKc2x0bEtXMkoyS3AvUHJHQ2ZSYW9lR3ZwTjlYRTZub3dDZ1lJS29aSXpqMEVBd0lEU0FBd1JRSWhBSTBjNDBhNgpmdm44V0ZCNzh2TG5tVHJRTTlDOGVmQjhOdkI3NW9YVjQwem1BaUFVQ3d6VDQzS0dpR0ppUENzdllPWGlwTzFmCkYrWW5NUVJnVzJBWEJpVWhGUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ] }, "type": 0 @@ -226,7 +226,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRQkh6VlRRRlZwNXY2ZXNHRy9BRnZwREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFSVFPK202SXNsSjdTRzJoL0FXdDZVcFZHYklmSDErWGsKRUVBU0x2WXoxd1FMV2g3M2pVbXJEZTBHN1VoTDVSdXltazN1SDErUVZTS1hzZFU4M0dOczdxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnTW5vREx5dkIKOW9ObEpsVk5YdmRzcVgvcnIvYUxnQ2JsWVJiY3QwTDZXVThDSUF3SmlkZ3FjcG5WVzc0TzM0VWJoQW5lcVFDZgpaTThyd0xsZ1Y2WFVlVExXCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU1LZmJSQTQxNnArZlNheFE1cVA4all3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk0vaC8rRFh4cjJsTTFWdFBEd2hsQXlKVnI0WHQrS3YKVkxTbWVZK21YNS8rODAyU1BNcEl4WktFZjY1anp0YXNLQnhHYk9nQUJiZXl4M29YR2Q3ZGU4cWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFENElYSzIKOGJBRXNTZW5aZXUrTi81MGsyYlZqTFBzTXNKM3NFOTFBcmxQeEFJZ1hiMksyOFlPR0FMWUZYc1kvdEdrK2EvMApONSt6L2ZUVGZjaEdmTGFDdHpNPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -234,10 +234,10 @@ }, "name": "Org2MSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRWDEyWGxPSkNpR1FqajBTQ0NweVI1REFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3lMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKbjFwTG4vcEVGYW5BMXhnUTB2cXZ5WkVmODZTY2F4VVpHNEJkMFFlUXpHbnBpUmxYUXRhcHd0TnBySXc4SndaRworOGZDbnlFeWRiY2lTUzdmRjdNRkxhTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1FnSFRRY3hzcVlOSlhUNk9rTE5GTnMKU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUpwOXZqZm5qbkhGTlhhWQp1SmtNY2ExK3BLQmMrSWZGNTJCQlZMRmliMllWQWlCTFM4U2hvd2xDRCt1ajhpOWZ0djFaT1pEZVpFZUp2MDdZCmNOdkFYVThMbFE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVxZ0F3SUJBZ0lSQU10KzR5Yk9LMXI3QjhlYXZMVlRNQlV3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NaTVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQlBHcnRKdEhqMVFsMDJncTdJMFpRUUtKd3Z0WmhwMHQzckN3RjFjRklMVEhJQk00cGhKL1pZSlFhMWxiMTJwTwpzeFN4dUV2UkdURmNaWHR1blVjMFNlV2pYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSUNTcVZ5ckplckY3WW9YREtLZVYKMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUIrcHNpZWs3RnFQMThsMQozczJhbmJ0ZnBpR1RIYkFubTJCaWhwRDlzUlBqQWlBSXZzZHlmbituYjJiQ1FCSzZzb2RiTytMeFNrdVp1bGtQCm9NUjN5Q0gvZUE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQUtHM2phVjU3WnpSTWNNYmQ0ZElrWTR3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qRXlNRGcwTURFeFdoY05NamN4TWpFd01EZzAKTURFeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCSElBK2pnVVVmV0s3cWRoMFU2RHBac0lGYXgwQktZZHBXdkR6Y1M3R1d3T1dHQUdyU09MR1V5bAowMTFzd2V1SlJLZUhPRHB0UUxubTUrV25wb0l6Mmxhalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJQ0RqWlFvNUJFTVoKMVhvMHhrQVJKODFFb3AvV0JReEtJL2hhcTdxZU12dERNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJRm0yVVhHUwpKMEw1K1dIOHpDRTR6L01FSGpSeTdkeHk5eGpSZkNxb2hxYmhBaUF6MXlhK1krTWpaS3ZsTkwwcEpyOTNvbThGCkd6NTFkOHdHb0RjTE4vT0tOUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQVBIWHVlVnByUFBVMngvUjNpQitqZTB3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qRTFNRE16TlRVeFdoY05NamN4TWpFek1ETXoKTlRVeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCQ1ErTnJ0MzRuYjJWQ0RheDYrZmdFa200bnFwN241aGNCY2E2ell5cDRlRFdlRmhvRmtsTHVHZAo2bG1jNVVpZkZLbkVPeDhtdmtva2ovMmNFRUpkU1NDalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJT0k0NEJEMUtVRHMKYXkxNzlBTk5Qa2FjODZ4aFY2alNtTkV3bTdHYW1oSkdNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJSFBlUUt3MwpOOUpUY3BuZVBzVVBzLzdzWHdvTW1OUFY1RTJiYnhNM3B1ZEFBaUI1NG9XTkt0Ulp2ZzVlUXV6d2RnZkhYNjl0CnBBc1YvQ2xxd0JxaGswOUdxUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ] }, "type": 0 @@ -384,7 +384,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRTS90M2dIdWgyQVRiM2p3UjdDeDVkVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNbG9YRFRJM01USXhNREE0TkRBeE1sb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRWZDR1cxZmRieDBPNS9JcE0vZk0yYW1qM3pJVEE3WWIrZDdTSTB2b1g4azFtckdWcCtOYWEKdGhQRFo2TjNKNVJ3dm01K3M0TnVWT3NEMHVmbm5aTC9DNk5OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZ3dKQXZNWEZIVVlQZzkvTWJBckVtWGRDdU53cXpoUGhGCjk0c3hyRkRNdFVjd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ1d0OVd5ZkwrT2lzeFlFY1VqNDVnUmFLSUxqTHIKNE80eUptOVAwUTlKTXVvQ0lHRTVwZDFMOWxHTzB6dHhTb1hYTXhrL2tmYUlpaHlGbEs5K2xOSTI0QzNBCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRV1BvVHBQZSt3eFFuNFlDMW56S1pVVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRVR4R1lRdHdXVStqdUgxV1BtNmE4ckplRk9RU0FtUWZab1VHNXdXZzZzeENaMTBuWDlGbEQKRVNaMnpUZDYwcjVzVGhYSmxBblpoSG1pMGdTNUIrOVNSS05OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZy9IS0R4R0s0S1hsYjdBNmhkU3A1R0ZZRnhIWmNYWW0xCllubXEwa3hEZGpVd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ2ZhamFrRVVOeGcrdmRWVU9taVJHOStYT3FyT2EKc3FvK21RYmVtV2R4TGljQ0lDZzFpTWxtUkJjdFhtSmVMOXY0RldDYmExZnRnazd4eFh6d1JmWWUva2M4Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -392,10 +392,10 @@ }, "name": "OrdererMSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRXZ0F3SUJBZ0lRU3o1MVV2bmE4eVBYT3NGaUswbHJBVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNVm9YRFRJM01USXhNREE0TkRBeE1Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJDUTRNQURILzltTkdVWCtoTVFwWmlMRjZoOGkKWmpVNG5zQnM2Yk5ZdURUREc1alJQVVF2OEQvaXE2VzFMTnhZbURyaFFZS0NUYlB1L1ZkTVBWMFJxMktqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJTUNRTHpGeFIxR0Q0UGZ6R3dLeEpsM1FyamNLczRUNFJmZUxNYXhRekxWSE1Bb0cKQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUURNeFBiNXdac1lSM0d0Nm5KdU1XSVhaR09UZjZ1bzRZcFR1c2Uxd2lYZwowQUlnRGtWSHJHRW5ia0Z4cXhndDhwZzIwOEZrZWZmblZZS1dhUDF2YnFPdlNDYz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRXZ0F3SUJBZ0lRR1hmNXpFZ2psZWprRTFySlcyem53REFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJGU0tQUnNYblh2YVRUcVJLamtUUllZb1BqR2cKVGdYUkFvTVF3SSs5QWFMWFRTTCtBc0Fwd2x4ZWRyK1BKK1VnZkJOY3hleTIyNllTWlJKcUxlaUgvVGFqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJUHh5ZzhSaXVDbDVXK3dPb1hVcWVSaFdCY1IyWEYySnRXSjVxdEpNUTNZMU1Bb0cKQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUUNvUnJsWllQaDBRbnNwM1o5S2l0bVREa1JxaTZKeVI0UkxpT3lmdjhUZgpRZ0lnZEhiRnFYR1RaMEhGUW1rblVGZDVERDRUVGx0djhJam1mbThKMXNrUzRqYz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR1Z0F3SUJBZ0lRSG9NcWNCakFsQXFIODhjb00vanUrREFLQmdncWhrak9QUVFEQWpCc01Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4R2pBWUJnTlZCQU1URVhSc2MyTmhMbVY0CllXMXdiR1V1WTI5dE1CNFhEVEUzTVRJeE1qQTROREF4TVZvWERUSTNNVEl4TURBNE5EQXhNVm93YkRFTE1Ba0cKQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdQpZMmx6WTI4eEZEQVNCZ05WQkFvVEMyVjRZVzF3YkdVdVkyOXRNUm93R0FZRFZRUURFeEYwYkhOallTNWxlR0Z0CmNHeGxMbU52YlRCWk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkF5cFJOSmpib1pqSHdqRElLK2YKYTc4TkUvNUdnOHlrelIzOGM0MUN0cnFqNldOTkZiSkZkcUV4WnE5L1NybnV4NUlCMjJFblV6eVd1M2RpV1lLTAp1Y0tqWHpCZE1BNEdBMVVkRHdFQi93UUVBd0lCcGpBUEJnTlZIU1VFQ0RBR0JnUlZIU1VBTUE4R0ExVWRFd0VCCi93UUZNQU1CQWY4d0tRWURWUjBPQkNJRUlNZlFlM3pBRVFpSXJBRjRwZUM0a2RHOUMxWG4rQUI2UzJaeTRlUjEKZzBTZE1Bb0dDQ3FHU000OUJBTUNBMGdBTUVVQ0lRRDV5akFtTTBHS3BWeFVqVVkyL0lBN3pmeXNQSXBhQ0p5RQpzNVJHN2xtZG5BSWdMb0lXZUYvUXNmV1dYVlM3K3dhRTJOVld3cENDZ3hqekd3K1B3ajE2T2p3PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR5Z0F3SUJBZ0lSQUlyYWx1UFN0RmhWaEVyZFpRZEtDS0F3Q2dZSUtvWkl6ajBFQXdJd2JERUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJvd0dBWURWUVFERXhGMGJITmpZUzVsCmVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1UVXdNek0xTlRGYUZ3MHlOekV5TVRNd016TTFOVEZhTUd3eEN6QUoKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaApibU5wYzJOdk1SUXdFZ1lEVlFRS0V3dGxlR0Z0Y0d4bExtTnZiVEVhTUJnR0ExVUVBeE1SZEd4elkyRXVaWGhoCmJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxaGtqT1BRTUJCd05DQUFTRkp0dnBDMmhoY2l4RXZPYisKTW1VYW5IWDQwMTJVSldGeXZxR1RWYlpDYnpGbDBBb1luUkQ4azllcnRsazQvYmxiSGVuRW1wM05zUGkxRXNJVQp3azVHbzE4d1hUQU9CZ05WSFE4QkFmOEVCQU1DQWFZd0R3WURWUjBsQkFnd0JnWUVWUjBsQURBUEJnTlZIUk1CCkFmOEVCVEFEQVFIL01Da0dBMVVkRGdRaUJDQklPWlFkUGVLOUN0dFdSUnFUME5LaXE3RjZabktSRll4UVVjcG0KOFcvQi96QUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQWFrNTlBS21vMkw1UEZTME4rWjhMem5uTW5mKzBNVEt2bgpJN2pRTDdZN0dRSWdPTktjWWRvS3duYzhPcUdObzJLQXl3RTJlTVVKZUxHaVFLeTB0NTAydW1RPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ] }, "type": 0 @@ -574,13 +574,13 @@ "channel_header": { "channel_id": "testchainid", "epoch": "0", - "timestamp": "2017-12-12T08:45:12.000Z", - "tx_id": "ac91efddd7bdd65ca55d559643507abea2627c48a01a74fae5cd65476a3057ab", + "timestamp": "2017-12-15T03:42:11.000Z", + "tx_id": "9897fdffd343cfbea7231dc5e9438a04d09931683ce555fdf3ab2b02be33fd3e", "type": 1, "version": 1 }, "signature_header": { - "nonce": "oMN8r7PaesDZoo9Qxk7CCpsL1rQVELXu" + "nonce": "7BNqK3bA8SPk5xmIi2HyeoQeVaJUqG5t" } } } @@ -588,7 +588,7 @@ ] }, "header": { - "data_hash": "EghFQO248mGKcH7WiGY24q8zrsxkGOFAGPfbm+mGJoY=", + "data_hash": "NiBplxvf9O/DMz6X5BZSqAtRTcNGwa3MbG4HG/EZzJo=", "number": "0" }, "metadata": { diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.block_payload.json b/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.block_payload.json index ccb1e645..08fa4323 100644 --- a/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.block_payload.json +++ b/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.block_payload.json @@ -104,7 +104,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -112,10 +112,10 @@ }, "name": "Org1MSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNSRENDQWVxZ0F3SUJBZ0lSQU1IcWRxVWpjbWdUTDZQTTJTWXJhUTh3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFeU1EZzBNREV3V2hjTk1qY3hNakV3TURnME1ERXcKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NUzVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQkNtMWNnd2dSZ2VuTkJobjlYdVp6UnFId0lWbjRmVElZOEhzMzAvTmNvN2pvd0hxbzV1N0lSWExCaXNua240SQp6L0tPbndneHJiejBETTUzRnZWL2VhYWpYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSVBrZjZXVnZ0dDljMHF2bjc1NHIKR3pwUi84VmtJS1FsWHF4QklRem5pS2xYTUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDV2liVllvTXZIc1g2eApPenNyclBxaExZYklTZDRMaXVMZkNpTDVEa1RUcWdJZ1pjQmdiZDVGekt5enJUektwVDlXK29KQ21rQVBBMG1mCnhFRldrTXRHYmdZPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRU2hqQXdlKzZzeG9TTVo4VXJZS09jVEFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRVd016TTFOVEJhRncweU56RXlNVE13TXpNMU5UQmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3hMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKR3d5eWZETEgwN2RGVmtFdnhKREdPS0dldlVjYVlIcGhadmh6Vjc4TUJYVndJRUdJRU5rN1pzOHgrZHg2aXdJSwpMT0dtWHhxL1dxZDRxTHM2a0Z5WnZxTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1Fnc0s5cEUvcGxJT1YxMG1xZWZVekUKdkNRVTZxYjB4ZkRZc1k2VHhjdXNFMVl3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUw3eFhyWUQxZmt6Y3B4aQp5eVpoRmZFdk1EV0NvVWljUXcyYitjM0dRNk91QWlBMEt0TnVINHlTNCtjMTNXOUxzZDI4WE5RSzg4Rmt3QjJKClFSOXloSkU3ckE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWUrZ0F3SUJBZ0lRYXpUd3QybHc4dXA3NVpDUytGRVFOakFLQmdncWhrak9QUVFEQWpCMk1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHQTFVRUF4TVdkR3h6ClkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1USXdPRFF3TVRCYUZ3MHlOekV5TVRBd09EUXcKTVRCYU1IWXhDekFKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSApFdzFUWVc0Z1JuSmhibU5wYzJOdk1Sa3dGd1lEVlFRS0V4QnZjbWN4TG1WNFlXMXdiR1V1WTI5dE1SOHdIUVlEClZRUURFeFowYkhOallTNXZjbWN4TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJS29aSXpqMEQKQVFjRFFnQUVxZXYzL2hWbmdVRWdoSS9hM3VXQWNadzcwYjVYZ1dud0lLOHdTRHpDWGJqb1dkbDk2alU1TmdBMQo1VnVXNVIyU3VXNnRuNjE5Sm95WDlxcFdCMGJiRktOZk1GMHdEZ1lEVlIwUEFRSC9CQVFEQWdHbU1BOEdBMVVkCkpRUUlNQVlHQkZVZEpRQXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QXBCZ05WSFE0RUlnUWdMQklUTTJyeExIbjUKalBXeUZySmpPandhZWJlYWZ0eW8ycmRpS2Ntajdmc3dDZ1lJS29aSXpqMEVBd0lEU0FBd1JRSWhBTnBoQ0RaUwpUU1ZML0dadDdUNGVaR2hUWFZLMXJtZmNNM0pjODBFMjFXbldBaUI3U0VDZzhRNDRMaU0wdy9YUFcwUkl1V2xzCjBFTG1LSjF1SCs3Y3Y3SnJXUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWUrZ0F3SUJBZ0lRZDlMN1pUUk14NXF3WnEwT1dVZXhSVEFLQmdncWhrak9QUVFEQWpCMk1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHQTFVRUF4TVdkR3h6ClkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1UVXdNek0xTlRCYUZ3MHlOekV5TVRNd016TTEKTlRCYU1IWXhDekFKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSApFdzFUWVc0Z1JuSmhibU5wYzJOdk1Sa3dGd1lEVlFRS0V4QnZjbWN4TG1WNFlXMXdiR1V1WTI5dE1SOHdIUVlEClZRUURFeFowYkhOallTNXZjbWN4TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJS29aSXpqMEQKQVFjRFFnQUVhdFoxeHhjWEQ4OHU0QUduQVR5RUhsNGJsOUVQSTNlQXJDNzBGK1VkOCtMbVRuV3drUjMvRWVOTwpieDJhUExTYi92ZVpONTh1dm1QMnZ0OTdoYktKc2FOZk1GMHdEZ1lEVlIwUEFRSC9CQVFEQWdHbU1BOEdBMVVkCkpRUUlNQVlHQkZVZEpRQXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QXBCZ05WSFE0RUlnUWdybUZCc2dXdUJDTDkKc2x0bEtXMkoyS3AvUHJHQ2ZSYW9lR3ZwTjlYRTZub3dDZ1lJS29aSXpqMEVBd0lEU0FBd1JRSWhBSTBjNDBhNgpmdm44V0ZCNzh2TG5tVHJRTTlDOGVmQjhOdkI3NW9YVjQwem1BaUFVQ3d6VDQzS0dpR0ppUENzdllPWGlwTzFmCkYrWW5NUVJnVzJBWEJpVWhGUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ] }, "type": 0 @@ -222,7 +222,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRQkh6VlRRRlZwNXY2ZXNHRy9BRnZwREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFSVFPK202SXNsSjdTRzJoL0FXdDZVcFZHYklmSDErWGsKRUVBU0x2WXoxd1FMV2g3M2pVbXJEZTBHN1VoTDVSdXltazN1SDErUVZTS1hzZFU4M0dOczdxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnTW5vREx5dkIKOW9ObEpsVk5YdmRzcVgvcnIvYUxnQ2JsWVJiY3QwTDZXVThDSUF3SmlkZ3FjcG5WVzc0TzM0VWJoQW5lcVFDZgpaTThyd0xsZ1Y2WFVlVExXCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU1LZmJSQTQxNnArZlNheFE1cVA4all3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk0vaC8rRFh4cjJsTTFWdFBEd2hsQXlKVnI0WHQrS3YKVkxTbWVZK21YNS8rODAyU1BNcEl4WktFZjY1anp0YXNLQnhHYk9nQUJiZXl4M29YR2Q3ZGU4cWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFENElYSzIKOGJBRXNTZW5aZXUrTi81MGsyYlZqTFBzTXNKM3NFOTFBcmxQeEFJZ1hiMksyOFlPR0FMWUZYc1kvdEdrK2EvMApONSt6L2ZUVGZjaEdmTGFDdHpNPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -230,10 +230,10 @@ }, "name": "Org2MSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRWDEyWGxPSkNpR1FqajBTQ0NweVI1REFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3lMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKbjFwTG4vcEVGYW5BMXhnUTB2cXZ5WkVmODZTY2F4VVpHNEJkMFFlUXpHbnBpUmxYUXRhcHd0TnBySXc4SndaRworOGZDbnlFeWRiY2lTUzdmRjdNRkxhTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1FnSFRRY3hzcVlOSlhUNk9rTE5GTnMKU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUpwOXZqZm5qbkhGTlhhWQp1SmtNY2ExK3BLQmMrSWZGNTJCQlZMRmliMllWQWlCTFM4U2hvd2xDRCt1ajhpOWZ0djFaT1pEZVpFZUp2MDdZCmNOdkFYVThMbFE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVxZ0F3SUJBZ0lSQU10KzR5Yk9LMXI3QjhlYXZMVlRNQlV3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NaTVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQlBHcnRKdEhqMVFsMDJncTdJMFpRUUtKd3Z0WmhwMHQzckN3RjFjRklMVEhJQk00cGhKL1pZSlFhMWxiMTJwTwpzeFN4dUV2UkdURmNaWHR1blVjMFNlV2pYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSUNTcVZ5ckplckY3WW9YREtLZVYKMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUIrcHNpZWs3RnFQMThsMQozczJhbmJ0ZnBpR1RIYkFubTJCaWhwRDlzUlBqQWlBSXZzZHlmbituYjJiQ1FCSzZzb2RiTytMeFNrdVp1bGtQCm9NUjN5Q0gvZUE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQUtHM2phVjU3WnpSTWNNYmQ0ZElrWTR3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qRXlNRGcwTURFeFdoY05NamN4TWpFd01EZzAKTURFeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCSElBK2pnVVVmV0s3cWRoMFU2RHBac0lGYXgwQktZZHBXdkR6Y1M3R1d3T1dHQUdyU09MR1V5bAowMTFzd2V1SlJLZUhPRHB0UUxubTUrV25wb0l6Mmxhalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJQ0RqWlFvNUJFTVoKMVhvMHhrQVJKODFFb3AvV0JReEtJL2hhcTdxZU12dERNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJRm0yVVhHUwpKMEw1K1dIOHpDRTR6L01FSGpSeTdkeHk5eGpSZkNxb2hxYmhBaUF6MXlhK1krTWpaS3ZsTkwwcEpyOTNvbThGCkd6NTFkOHdHb0RjTE4vT0tOUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQVBIWHVlVnByUFBVMngvUjNpQitqZTB3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qRTFNRE16TlRVeFdoY05NamN4TWpFek1ETXoKTlRVeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCQ1ErTnJ0MzRuYjJWQ0RheDYrZmdFa200bnFwN241aGNCY2E2ell5cDRlRFdlRmhvRmtsTHVHZAo2bG1jNVVpZkZLbkVPeDhtdmtva2ovMmNFRUpkU1NDalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJT0k0NEJEMUtVRHMKYXkxNzlBTk5Qa2FjODZ4aFY2alNtTkV3bTdHYW1oSkdNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJSFBlUUt3MwpOOUpUY3BuZVBzVVBzLzdzWHdvTW1OUFY1RTJiYnhNM3B1ZEFBaUI1NG9XTkt0Ulp2ZzVlUXV6d2RnZkhYNjl0CnBBc1YvQ2xxd0JxaGswOUdxUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ] }, "type": 0 @@ -380,7 +380,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRTS90M2dIdWgyQVRiM2p3UjdDeDVkVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNbG9YRFRJM01USXhNREE0TkRBeE1sb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRWZDR1cxZmRieDBPNS9JcE0vZk0yYW1qM3pJVEE3WWIrZDdTSTB2b1g4azFtckdWcCtOYWEKdGhQRFo2TjNKNVJ3dm01K3M0TnVWT3NEMHVmbm5aTC9DNk5OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZ3dKQXZNWEZIVVlQZzkvTWJBckVtWGRDdU53cXpoUGhGCjk0c3hyRkRNdFVjd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ1d0OVd5ZkwrT2lzeFlFY1VqNDVnUmFLSUxqTHIKNE80eUptOVAwUTlKTXVvQ0lHRTVwZDFMOWxHTzB6dHhTb1hYTXhrL2tmYUlpaHlGbEs5K2xOSTI0QzNBCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRV1BvVHBQZSt3eFFuNFlDMW56S1pVVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRVR4R1lRdHdXVStqdUgxV1BtNmE4ckplRk9RU0FtUWZab1VHNXdXZzZzeENaMTBuWDlGbEQKRVNaMnpUZDYwcjVzVGhYSmxBblpoSG1pMGdTNUIrOVNSS05OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZy9IS0R4R0s0S1hsYjdBNmhkU3A1R0ZZRnhIWmNYWW0xCllubXEwa3hEZGpVd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ2ZhamFrRVVOeGcrdmRWVU9taVJHOStYT3FyT2EKc3FvK21RYmVtV2R4TGljQ0lDZzFpTWxtUkJjdFhtSmVMOXY0RldDYmExZnRnazd4eFh6d1JmWWUva2M4Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -388,10 +388,10 @@ }, "name": "OrdererMSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRXZ0F3SUJBZ0lRU3o1MVV2bmE4eVBYT3NGaUswbHJBVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNVm9YRFRJM01USXhNREE0TkRBeE1Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJDUTRNQURILzltTkdVWCtoTVFwWmlMRjZoOGkKWmpVNG5zQnM2Yk5ZdURUREc1alJQVVF2OEQvaXE2VzFMTnhZbURyaFFZS0NUYlB1L1ZkTVBWMFJxMktqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJTUNRTHpGeFIxR0Q0UGZ6R3dLeEpsM1FyamNLczRUNFJmZUxNYXhRekxWSE1Bb0cKQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUURNeFBiNXdac1lSM0d0Nm5KdU1XSVhaR09UZjZ1bzRZcFR1c2Uxd2lYZwowQUlnRGtWSHJHRW5ia0Z4cXhndDhwZzIwOEZrZWZmblZZS1dhUDF2YnFPdlNDYz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRXZ0F3SUJBZ0lRR1hmNXpFZ2psZWprRTFySlcyem53REFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJGU0tQUnNYblh2YVRUcVJLamtUUllZb1BqR2cKVGdYUkFvTVF3SSs5QWFMWFRTTCtBc0Fwd2x4ZWRyK1BKK1VnZkJOY3hleTIyNllTWlJKcUxlaUgvVGFqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJUHh5ZzhSaXVDbDVXK3dPb1hVcWVSaFdCY1IyWEYySnRXSjVxdEpNUTNZMU1Bb0cKQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUUNvUnJsWllQaDBRbnNwM1o5S2l0bVREa1JxaTZKeVI0UkxpT3lmdjhUZgpRZ0lnZEhiRnFYR1RaMEhGUW1rblVGZDVERDRUVGx0djhJam1mbThKMXNrUzRqYz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR1Z0F3SUJBZ0lRSG9NcWNCakFsQXFIODhjb00vanUrREFLQmdncWhrak9QUVFEQWpCc01Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4R2pBWUJnTlZCQU1URVhSc2MyTmhMbVY0CllXMXdiR1V1WTI5dE1CNFhEVEUzTVRJeE1qQTROREF4TVZvWERUSTNNVEl4TURBNE5EQXhNVm93YkRFTE1Ba0cKQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdQpZMmx6WTI4eEZEQVNCZ05WQkFvVEMyVjRZVzF3YkdVdVkyOXRNUm93R0FZRFZRUURFeEYwYkhOallTNWxlR0Z0CmNHeGxMbU52YlRCWk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkF5cFJOSmpib1pqSHdqRElLK2YKYTc4TkUvNUdnOHlrelIzOGM0MUN0cnFqNldOTkZiSkZkcUV4WnE5L1NybnV4NUlCMjJFblV6eVd1M2RpV1lLTAp1Y0tqWHpCZE1BNEdBMVVkRHdFQi93UUVBd0lCcGpBUEJnTlZIU1VFQ0RBR0JnUlZIU1VBTUE4R0ExVWRFd0VCCi93UUZNQU1CQWY4d0tRWURWUjBPQkNJRUlNZlFlM3pBRVFpSXJBRjRwZUM0a2RHOUMxWG4rQUI2UzJaeTRlUjEKZzBTZE1Bb0dDQ3FHU000OUJBTUNBMGdBTUVVQ0lRRDV5akFtTTBHS3BWeFVqVVkyL0lBN3pmeXNQSXBhQ0p5RQpzNVJHN2xtZG5BSWdMb0lXZUYvUXNmV1dYVlM3K3dhRTJOVld3cENDZ3hqekd3K1B3ajE2T2p3PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR5Z0F3SUJBZ0lSQUlyYWx1UFN0RmhWaEVyZFpRZEtDS0F3Q2dZSUtvWkl6ajBFQXdJd2JERUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJvd0dBWURWUVFERXhGMGJITmpZUzVsCmVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1UVXdNek0xTlRGYUZ3MHlOekV5TVRNd016TTFOVEZhTUd3eEN6QUoKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaApibU5wYzJOdk1SUXdFZ1lEVlFRS0V3dGxlR0Z0Y0d4bExtTnZiVEVhTUJnR0ExVUVBeE1SZEd4elkyRXVaWGhoCmJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxaGtqT1BRTUJCd05DQUFTRkp0dnBDMmhoY2l4RXZPYisKTW1VYW5IWDQwMTJVSldGeXZxR1RWYlpDYnpGbDBBb1luUkQ4azllcnRsazQvYmxiSGVuRW1wM05zUGkxRXNJVQp3azVHbzE4d1hUQU9CZ05WSFE4QkFmOEVCQU1DQWFZd0R3WURWUjBsQkFnd0JnWUVWUjBsQURBUEJnTlZIUk1CCkFmOEVCVEFEQVFIL01Da0dBMVVkRGdRaUJDQklPWlFkUGVLOUN0dFdSUnFUME5LaXE3RjZabktSRll4UVVjcG0KOFcvQi96QUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQWFrNTlBS21vMkw1UEZTME4rWjhMem5uTW5mKzBNVEt2bgpJN2pRTDdZN0dRSWdPTktjWWRvS3duYzhPcUdObzJLQXl3RTJlTVVKZUxHaVFLeTB0NTAydW1RPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ] }, "type": 0 @@ -570,13 +570,13 @@ "channel_header": { "channel_id": "testchainid", "epoch": "0", - "timestamp": "2017-12-12T08:45:12.000Z", - "tx_id": "ac91efddd7bdd65ca55d559643507abea2627c48a01a74fae5cd65476a3057ab", + "timestamp": "2017-12-15T03:42:11.000Z", + "tx_id": "9897fdffd343cfbea7231dc5e9438a04d09931683ce555fdf3ab2b02be33fd3e", "type": 1, "version": 1 }, "signature_header": { - "nonce": "oMN8r7PaesDZoo9Qxk7CCpsL1rQVELXu" + "nonce": "7BNqK3bA8SPk5xmIi2HyeoQeVaJUqG5t" } } } diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.updated.block b/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.updated.block index 8ecc9f2c..7f125486 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.updated.block and b/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.updated.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.updated.block.json b/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.updated.block.json index 36c9b182..41bf5eeb 100644 --- a/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.updated.block.json +++ b/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.updated.block.json @@ -108,7 +108,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -116,10 +116,10 @@ }, "name": "Org1MSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNSRENDQWVxZ0F3SUJBZ0lSQU1IcWRxVWpjbWdUTDZQTTJTWXJhUTh3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFeU1EZzBNREV3V2hjTk1qY3hNakV3TURnME1ERXcKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NUzVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQkNtMWNnd2dSZ2VuTkJobjlYdVp6UnFId0lWbjRmVElZOEhzMzAvTmNvN2pvd0hxbzV1N0lSWExCaXNua240SQp6L0tPbndneHJiejBETTUzRnZWL2VhYWpYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSVBrZjZXVnZ0dDljMHF2bjc1NHIKR3pwUi84VmtJS1FsWHF4QklRem5pS2xYTUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDV2liVllvTXZIc1g2eApPenNyclBxaExZYklTZDRMaXVMZkNpTDVEa1RUcWdJZ1pjQmdiZDVGekt5enJUektwVDlXK29KQ21rQVBBMG1mCnhFRldrTXRHYmdZPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRU2hqQXdlKzZzeG9TTVo4VXJZS09jVEFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRVd016TTFOVEJhRncweU56RXlNVE13TXpNMU5UQmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3hMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKR3d5eWZETEgwN2RGVmtFdnhKREdPS0dldlVjYVlIcGhadmh6Vjc4TUJYVndJRUdJRU5rN1pzOHgrZHg2aXdJSwpMT0dtWHhxL1dxZDRxTHM2a0Z5WnZxTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1Fnc0s5cEUvcGxJT1YxMG1xZWZVekUKdkNRVTZxYjB4ZkRZc1k2VHhjdXNFMVl3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUw3eFhyWUQxZmt6Y3B4aQp5eVpoRmZFdk1EV0NvVWljUXcyYitjM0dRNk91QWlBMEt0TnVINHlTNCtjMTNXOUxzZDI4WE5RSzg4Rmt3QjJKClFSOXloSkU3ckE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWUrZ0F3SUJBZ0lRYXpUd3QybHc4dXA3NVpDUytGRVFOakFLQmdncWhrak9QUVFEQWpCMk1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHQTFVRUF4TVdkR3h6ClkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1USXdPRFF3TVRCYUZ3MHlOekV5TVRBd09EUXcKTVRCYU1IWXhDekFKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSApFdzFUWVc0Z1JuSmhibU5wYzJOdk1Sa3dGd1lEVlFRS0V4QnZjbWN4TG1WNFlXMXdiR1V1WTI5dE1SOHdIUVlEClZRUURFeFowYkhOallTNXZjbWN4TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJS29aSXpqMEQKQVFjRFFnQUVxZXYzL2hWbmdVRWdoSS9hM3VXQWNadzcwYjVYZ1dud0lLOHdTRHpDWGJqb1dkbDk2alU1TmdBMQo1VnVXNVIyU3VXNnRuNjE5Sm95WDlxcFdCMGJiRktOZk1GMHdEZ1lEVlIwUEFRSC9CQVFEQWdHbU1BOEdBMVVkCkpRUUlNQVlHQkZVZEpRQXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QXBCZ05WSFE0RUlnUWdMQklUTTJyeExIbjUKalBXeUZySmpPandhZWJlYWZ0eW8ycmRpS2Ntajdmc3dDZ1lJS29aSXpqMEVBd0lEU0FBd1JRSWhBTnBoQ0RaUwpUU1ZML0dadDdUNGVaR2hUWFZLMXJtZmNNM0pjODBFMjFXbldBaUI3U0VDZzhRNDRMaU0wdy9YUFcwUkl1V2xzCjBFTG1LSjF1SCs3Y3Y3SnJXUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWUrZ0F3SUJBZ0lRZDlMN1pUUk14NXF3WnEwT1dVZXhSVEFLQmdncWhrak9QUVFEQWpCMk1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHQTFVRUF4TVdkR3h6ClkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1UVXdNek0xTlRCYUZ3MHlOekV5TVRNd016TTEKTlRCYU1IWXhDekFKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSApFdzFUWVc0Z1JuSmhibU5wYzJOdk1Sa3dGd1lEVlFRS0V4QnZjbWN4TG1WNFlXMXdiR1V1WTI5dE1SOHdIUVlEClZRUURFeFowYkhOallTNXZjbWN4TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJS29aSXpqMEQKQVFjRFFnQUVhdFoxeHhjWEQ4OHU0QUduQVR5RUhsNGJsOUVQSTNlQXJDNzBGK1VkOCtMbVRuV3drUjMvRWVOTwpieDJhUExTYi92ZVpONTh1dm1QMnZ0OTdoYktKc2FOZk1GMHdEZ1lEVlIwUEFRSC9CQVFEQWdHbU1BOEdBMVVkCkpRUUlNQVlHQkZVZEpRQXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QXBCZ05WSFE0RUlnUWdybUZCc2dXdUJDTDkKc2x0bEtXMkoyS3AvUHJHQ2ZSYW9lR3ZwTjlYRTZub3dDZ1lJS29aSXpqMEVBd0lEU0FBd1JRSWhBSTBjNDBhNgpmdm44V0ZCNzh2TG5tVHJRTTlDOGVmQjhOdkI3NW9YVjQwem1BaUFVQ3d6VDQzS0dpR0ppUENzdllPWGlwTzFmCkYrWW5NUVJnVzJBWEJpVWhGUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ] }, "type": 0 @@ -226,7 +226,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRQkh6VlRRRlZwNXY2ZXNHRy9BRnZwREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFSVFPK202SXNsSjdTRzJoL0FXdDZVcFZHYklmSDErWGsKRUVBU0x2WXoxd1FMV2g3M2pVbXJEZTBHN1VoTDVSdXltazN1SDErUVZTS1hzZFU4M0dOczdxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnTW5vREx5dkIKOW9ObEpsVk5YdmRzcVgvcnIvYUxnQ2JsWVJiY3QwTDZXVThDSUF3SmlkZ3FjcG5WVzc0TzM0VWJoQW5lcVFDZgpaTThyd0xsZ1Y2WFVlVExXCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU1LZmJSQTQxNnArZlNheFE1cVA4all3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk0vaC8rRFh4cjJsTTFWdFBEd2hsQXlKVnI0WHQrS3YKVkxTbWVZK21YNS8rODAyU1BNcEl4WktFZjY1anp0YXNLQnhHYk9nQUJiZXl4M29YR2Q3ZGU4cWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFENElYSzIKOGJBRXNTZW5aZXUrTi81MGsyYlZqTFBzTXNKM3NFOTFBcmxQeEFJZ1hiMksyOFlPR0FMWUZYc1kvdEdrK2EvMApONSt6L2ZUVGZjaEdmTGFDdHpNPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -234,10 +234,10 @@ }, "name": "Org2MSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRWDEyWGxPSkNpR1FqajBTQ0NweVI1REFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3lMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKbjFwTG4vcEVGYW5BMXhnUTB2cXZ5WkVmODZTY2F4VVpHNEJkMFFlUXpHbnBpUmxYUXRhcHd0TnBySXc4SndaRworOGZDbnlFeWRiY2lTUzdmRjdNRkxhTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1FnSFRRY3hzcVlOSlhUNk9rTE5GTnMKU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUpwOXZqZm5qbkhGTlhhWQp1SmtNY2ExK3BLQmMrSWZGNTJCQlZMRmliMllWQWlCTFM4U2hvd2xDRCt1ajhpOWZ0djFaT1pEZVpFZUp2MDdZCmNOdkFYVThMbFE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVxZ0F3SUJBZ0lSQU10KzR5Yk9LMXI3QjhlYXZMVlRNQlV3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NaTVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQlBHcnRKdEhqMVFsMDJncTdJMFpRUUtKd3Z0WmhwMHQzckN3RjFjRklMVEhJQk00cGhKL1pZSlFhMWxiMTJwTwpzeFN4dUV2UkdURmNaWHR1blVjMFNlV2pYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSUNTcVZ5ckplckY3WW9YREtLZVYKMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUIrcHNpZWs3RnFQMThsMQozczJhbmJ0ZnBpR1RIYkFubTJCaWhwRDlzUlBqQWlBSXZzZHlmbituYjJiQ1FCSzZzb2RiTytMeFNrdVp1bGtQCm9NUjN5Q0gvZUE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQUtHM2phVjU3WnpSTWNNYmQ0ZElrWTR3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qRXlNRGcwTURFeFdoY05NamN4TWpFd01EZzAKTURFeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCSElBK2pnVVVmV0s3cWRoMFU2RHBac0lGYXgwQktZZHBXdkR6Y1M3R1d3T1dHQUdyU09MR1V5bAowMTFzd2V1SlJLZUhPRHB0UUxubTUrV25wb0l6Mmxhalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJQ0RqWlFvNUJFTVoKMVhvMHhrQVJKODFFb3AvV0JReEtJL2hhcTdxZU12dERNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJRm0yVVhHUwpKMEw1K1dIOHpDRTR6L01FSGpSeTdkeHk5eGpSZkNxb2hxYmhBaUF6MXlhK1krTWpaS3ZsTkwwcEpyOTNvbThGCkd6NTFkOHdHb0RjTE4vT0tOUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQVBIWHVlVnByUFBVMngvUjNpQitqZTB3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qRTFNRE16TlRVeFdoY05NamN4TWpFek1ETXoKTlRVeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCQ1ErTnJ0MzRuYjJWQ0RheDYrZmdFa200bnFwN241aGNCY2E2ell5cDRlRFdlRmhvRmtsTHVHZAo2bG1jNVVpZkZLbkVPeDhtdmtva2ovMmNFRUpkU1NDalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJT0k0NEJEMUtVRHMKYXkxNzlBTk5Qa2FjODZ4aFY2alNtTkV3bTdHYW1oSkdNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJSFBlUUt3MwpOOUpUY3BuZVBzVVBzLzdzWHdvTW1OUFY1RTJiYnhNM3B1ZEFBaUI1NG9XTkt0Ulp2ZzVlUXV6d2RnZkhYNjl0CnBBc1YvQ2xxd0JxaGswOUdxUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ] }, "type": 0 @@ -384,7 +384,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRTS90M2dIdWgyQVRiM2p3UjdDeDVkVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNbG9YRFRJM01USXhNREE0TkRBeE1sb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRWZDR1cxZmRieDBPNS9JcE0vZk0yYW1qM3pJVEE3WWIrZDdTSTB2b1g4azFtckdWcCtOYWEKdGhQRFo2TjNKNVJ3dm01K3M0TnVWT3NEMHVmbm5aTC9DNk5OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZ3dKQXZNWEZIVVlQZzkvTWJBckVtWGRDdU53cXpoUGhGCjk0c3hyRkRNdFVjd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ1d0OVd5ZkwrT2lzeFlFY1VqNDVnUmFLSUxqTHIKNE80eUptOVAwUTlKTXVvQ0lHRTVwZDFMOWxHTzB6dHhTb1hYTXhrL2tmYUlpaHlGbEs5K2xOSTI0QzNBCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRV1BvVHBQZSt3eFFuNFlDMW56S1pVVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRVR4R1lRdHdXVStqdUgxV1BtNmE4ckplRk9RU0FtUWZab1VHNXdXZzZzeENaMTBuWDlGbEQKRVNaMnpUZDYwcjVzVGhYSmxBblpoSG1pMGdTNUIrOVNSS05OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZy9IS0R4R0s0S1hsYjdBNmhkU3A1R0ZZRnhIWmNYWW0xCllubXEwa3hEZGpVd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ2ZhamFrRVVOeGcrdmRWVU9taVJHOStYT3FyT2EKc3FvK21RYmVtV2R4TGljQ0lDZzFpTWxtUkJjdFhtSmVMOXY0RldDYmExZnRnazd4eFh6d1JmWWUva2M4Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -392,10 +392,10 @@ }, "name": "OrdererMSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRXZ0F3SUJBZ0lRU3o1MVV2bmE4eVBYT3NGaUswbHJBVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNVm9YRFRJM01USXhNREE0TkRBeE1Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJDUTRNQURILzltTkdVWCtoTVFwWmlMRjZoOGkKWmpVNG5zQnM2Yk5ZdURUREc1alJQVVF2OEQvaXE2VzFMTnhZbURyaFFZS0NUYlB1L1ZkTVBWMFJxMktqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJTUNRTHpGeFIxR0Q0UGZ6R3dLeEpsM1FyamNLczRUNFJmZUxNYXhRekxWSE1Bb0cKQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUURNeFBiNXdac1lSM0d0Nm5KdU1XSVhaR09UZjZ1bzRZcFR1c2Uxd2lYZwowQUlnRGtWSHJHRW5ia0Z4cXhndDhwZzIwOEZrZWZmblZZS1dhUDF2YnFPdlNDYz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRXZ0F3SUJBZ0lRR1hmNXpFZ2psZWprRTFySlcyem53REFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJGU0tQUnNYblh2YVRUcVJLamtUUllZb1BqR2cKVGdYUkFvTVF3SSs5QWFMWFRTTCtBc0Fwd2x4ZWRyK1BKK1VnZkJOY3hleTIyNllTWlJKcUxlaUgvVGFqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJUHh5ZzhSaXVDbDVXK3dPb1hVcWVSaFdCY1IyWEYySnRXSjVxdEpNUTNZMU1Bb0cKQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUUNvUnJsWllQaDBRbnNwM1o5S2l0bVREa1JxaTZKeVI0UkxpT3lmdjhUZgpRZ0lnZEhiRnFYR1RaMEhGUW1rblVGZDVERDRUVGx0djhJam1mbThKMXNrUzRqYz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR1Z0F3SUJBZ0lRSG9NcWNCakFsQXFIODhjb00vanUrREFLQmdncWhrak9QUVFEQWpCc01Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4R2pBWUJnTlZCQU1URVhSc2MyTmhMbVY0CllXMXdiR1V1WTI5dE1CNFhEVEUzTVRJeE1qQTROREF4TVZvWERUSTNNVEl4TURBNE5EQXhNVm93YkRFTE1Ba0cKQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdQpZMmx6WTI4eEZEQVNCZ05WQkFvVEMyVjRZVzF3YkdVdVkyOXRNUm93R0FZRFZRUURFeEYwYkhOallTNWxlR0Z0CmNHeGxMbU52YlRCWk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkF5cFJOSmpib1pqSHdqRElLK2YKYTc4TkUvNUdnOHlrelIzOGM0MUN0cnFqNldOTkZiSkZkcUV4WnE5L1NybnV4NUlCMjJFblV6eVd1M2RpV1lLTAp1Y0tqWHpCZE1BNEdBMVVkRHdFQi93UUVBd0lCcGpBUEJnTlZIU1VFQ0RBR0JnUlZIU1VBTUE4R0ExVWRFd0VCCi93UUZNQU1CQWY4d0tRWURWUjBPQkNJRUlNZlFlM3pBRVFpSXJBRjRwZUM0a2RHOUMxWG4rQUI2UzJaeTRlUjEKZzBTZE1Bb0dDQ3FHU000OUJBTUNBMGdBTUVVQ0lRRDV5akFtTTBHS3BWeFVqVVkyL0lBN3pmeXNQSXBhQ0p5RQpzNVJHN2xtZG5BSWdMb0lXZUYvUXNmV1dYVlM3K3dhRTJOVld3cENDZ3hqekd3K1B3ajE2T2p3PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR5Z0F3SUJBZ0lSQUlyYWx1UFN0RmhWaEVyZFpRZEtDS0F3Q2dZSUtvWkl6ajBFQXdJd2JERUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJvd0dBWURWUVFERXhGMGJITmpZUzVsCmVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1UVXdNek0xTlRGYUZ3MHlOekV5TVRNd016TTFOVEZhTUd3eEN6QUoKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaApibU5wYzJOdk1SUXdFZ1lEVlFRS0V3dGxlR0Z0Y0d4bExtTnZiVEVhTUJnR0ExVUVBeE1SZEd4elkyRXVaWGhoCmJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxaGtqT1BRTUJCd05DQUFTRkp0dnBDMmhoY2l4RXZPYisKTW1VYW5IWDQwMTJVSldGeXZxR1RWYlpDYnpGbDBBb1luUkQ4azllcnRsazQvYmxiSGVuRW1wM05zUGkxRXNJVQp3azVHbzE4d1hUQU9CZ05WSFE4QkFmOEVCQU1DQWFZd0R3WURWUjBsQkFnd0JnWUVWUjBsQURBUEJnTlZIUk1CCkFmOEVCVEFEQVFIL01Da0dBMVVkRGdRaUJDQklPWlFkUGVLOUN0dFdSUnFUME5LaXE3RjZabktSRll4UVVjcG0KOFcvQi96QUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQWFrNTlBS21vMkw1UEZTME4rWjhMem5uTW5mKzBNVEt2bgpJN2pRTDdZN0dRSWdPTktjWWRvS3duYzhPcUdObzJLQXl3RTJlTVVKZUxHaVFLeTB0NTAydW1RPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ] }, "type": 0 @@ -574,13 +574,13 @@ "channel_header": { "channel_id": "testchainid", "epoch": "0", - "timestamp": "2017-12-12T08:45:12.000Z", - "tx_id": "ac91efddd7bdd65ca55d559643507abea2627c48a01a74fae5cd65476a3057ab", + "timestamp": "2017-12-15T03:42:11.000Z", + "tx_id": "9897fdffd343cfbea7231dc5e9438a04d09931683ce555fdf3ab2b02be33fd3e", "type": 1, "version": 1 }, "signature_header": { - "nonce": "oMN8r7PaesDZoo9Qxk7CCpsL1rQVELXu" + "nonce": "7BNqK3bA8SPk5xmIi2HyeoQeVaJUqG5t" } } } @@ -588,7 +588,7 @@ ] }, "header": { - "data_hash": "EghFQO248mGKcH7WiGY24q8zrsxkGOFAGPfbm+mGJoY=", + "data_hash": "NiBplxvf9O/DMz6X5BZSqAtRTcNGwa3MbG4HG/EZzJo=", "number": "0" }, "metadata": { diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.updated.block_payload.json b/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.updated.block_payload.json new file mode 100644 index 00000000..96ec543a --- /dev/null +++ b/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.updated.block_payload.json @@ -0,0 +1,582 @@ +{ + "data": { + "config": { + "channel_group": { + "groups": { + "Consortiums": { + "groups": { + "SampleConsortium": { + "groups": { + "Org1MSP": { + "mod_policy": "Admins", + "policies": { + "Admins": { + "mod_policy": "Admins", + "policy": { + "type": 1, + "value": { + "identities": [ + { + "principal": { + "msp_identifier": "Org1MSP", + "role": "ADMIN" + }, + "principal_classification": "ROLE" + } + ], + "rule": { + "n_out_of": { + "n": 1, + "rules": [ + { + "signed_by": 0 + } + ] + } + }, + "version": 0 + } + }, + "version": "0" + }, + "Readers": { + "mod_policy": "Admins", + "policy": { + "type": 1, + "value": { + "identities": [ + { + "principal": { + "msp_identifier": "Org1MSP", + "role": "MEMBER" + }, + "principal_classification": "ROLE" + } + ], + "rule": { + "n_out_of": { + "n": 1, + "rules": [ + { + "signed_by": 0 + } + ] + } + }, + "version": 0 + } + }, + "version": "0" + }, + "Writers": { + "mod_policy": "Admins", + "policy": { + "type": 1, + "value": { + "identities": [ + { + "principal": { + "msp_identifier": "Org1MSP", + "role": "MEMBER" + }, + "principal_classification": "ROLE" + } + ], + "rule": { + "n_out_of": { + "n": 1, + "rules": [ + { + "signed_by": 0 + } + ] + } + }, + "version": 0 + } + }, + "version": "0" + } + }, + "values": { + "MSP": { + "mod_policy": "Admins", + "value": { + "config": { + "admins": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + ], + "crypto_config": { + "identity_identifier_hash_function": "SHA256", + "signature_hash_family": "SHA2" + }, + "name": "Org1MSP", + "root_certs": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRU2hqQXdlKzZzeG9TTVo4VXJZS09jVEFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRVd016TTFOVEJhRncweU56RXlNVE13TXpNMU5UQmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3hMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKR3d5eWZETEgwN2RGVmtFdnhKREdPS0dldlVjYVlIcGhadmh6Vjc4TUJYVndJRUdJRU5rN1pzOHgrZHg2aXdJSwpMT0dtWHhxL1dxZDRxTHM2a0Z5WnZxTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1Fnc0s5cEUvcGxJT1YxMG1xZWZVekUKdkNRVTZxYjB4ZkRZc1k2VHhjdXNFMVl3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUw3eFhyWUQxZmt6Y3B4aQp5eVpoRmZFdk1EV0NvVWljUXcyYitjM0dRNk91QWlBMEt0TnVINHlTNCtjMTNXOUxzZDI4WE5RSzg4Rmt3QjJKClFSOXloSkU3ckE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + ], + "tls_root_certs": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWUrZ0F3SUJBZ0lRZDlMN1pUUk14NXF3WnEwT1dVZXhSVEFLQmdncWhrak9QUVFEQWpCMk1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHQTFVRUF4TVdkR3h6ClkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1UVXdNek0xTlRCYUZ3MHlOekV5TVRNd016TTEKTlRCYU1IWXhDekFKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSApFdzFUWVc0Z1JuSmhibU5wYzJOdk1Sa3dGd1lEVlFRS0V4QnZjbWN4TG1WNFlXMXdiR1V1WTI5dE1SOHdIUVlEClZRUURFeFowYkhOallTNXZjbWN4TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJS29aSXpqMEQKQVFjRFFnQUVhdFoxeHhjWEQ4OHU0QUduQVR5RUhsNGJsOUVQSTNlQXJDNzBGK1VkOCtMbVRuV3drUjMvRWVOTwpieDJhUExTYi92ZVpONTh1dm1QMnZ0OTdoYktKc2FOZk1GMHdEZ1lEVlIwUEFRSC9CQVFEQWdHbU1BOEdBMVVkCkpRUUlNQVlHQkZVZEpRQXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QXBCZ05WSFE0RUlnUWdybUZCc2dXdUJDTDkKc2x0bEtXMkoyS3AvUHJHQ2ZSYW9lR3ZwTjlYRTZub3dDZ1lJS29aSXpqMEVBd0lEU0FBd1JRSWhBSTBjNDBhNgpmdm44V0ZCNzh2TG5tVHJRTTlDOGVmQjhOdkI3NW9YVjQwem1BaUFVQ3d6VDQzS0dpR0ppUENzdllPWGlwTzFmCkYrWW5NUVJnVzJBWEJpVWhGUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + ] + }, + "type": 0 + }, + "version": "0" + } + }, + "version": "0" + }, + "Org2MSP": { + "mod_policy": "Admins", + "policies": { + "Admins": { + "mod_policy": "Admins", + "policy": { + "type": 1, + "value": { + "identities": [ + { + "principal": { + "msp_identifier": "Org2MSP", + "role": "ADMIN" + }, + "principal_classification": "ROLE" + } + ], + "rule": { + "n_out_of": { + "n": 1, + "rules": [ + { + "signed_by": 0 + } + ] + } + }, + "version": 0 + } + }, + "version": "0" + }, + "Readers": { + "mod_policy": "Admins", + "policy": { + "type": 1, + "value": { + "identities": [ + { + "principal": { + "msp_identifier": "Org2MSP", + "role": "MEMBER" + }, + "principal_classification": "ROLE" + } + ], + "rule": { + "n_out_of": { + "n": 1, + "rules": [ + { + "signed_by": 0 + } + ] + } + }, + "version": 0 + } + }, + "version": "0" + }, + "Writers": { + "mod_policy": "Admins", + "policy": { + "type": 1, + "value": { + "identities": [ + { + "principal": { + "msp_identifier": "Org2MSP", + "role": "MEMBER" + }, + "principal_classification": "ROLE" + } + ], + "rule": { + "n_out_of": { + "n": 1, + "rules": [ + { + "signed_by": 0 + } + ] + } + }, + "version": 0 + } + }, + "version": "0" + } + }, + "values": { + "MSP": { + "mod_policy": "Admins", + "value": { + "config": { + "admins": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU1LZmJSQTQxNnArZlNheFE1cVA4all3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk0vaC8rRFh4cjJsTTFWdFBEd2hsQXlKVnI0WHQrS3YKVkxTbWVZK21YNS8rODAyU1BNcEl4WktFZjY1anp0YXNLQnhHYk9nQUJiZXl4M29YR2Q3ZGU4cWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFENElYSzIKOGJBRXNTZW5aZXUrTi81MGsyYlZqTFBzTXNKM3NFOTFBcmxQeEFJZ1hiMksyOFlPR0FMWUZYc1kvdEdrK2EvMApONSt6L2ZUVGZjaEdmTGFDdHpNPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + ], + "crypto_config": { + "identity_identifier_hash_function": "SHA256", + "signature_hash_family": "SHA2" + }, + "name": "Org2MSP", + "root_certs": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVxZ0F3SUJBZ0lSQU10KzR5Yk9LMXI3QjhlYXZMVlRNQlV3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NaTVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQlBHcnRKdEhqMVFsMDJncTdJMFpRUUtKd3Z0WmhwMHQzckN3RjFjRklMVEhJQk00cGhKL1pZSlFhMWxiMTJwTwpzeFN4dUV2UkdURmNaWHR1blVjMFNlV2pYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSUNTcVZ5ckplckY3WW9YREtLZVYKMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUIrcHNpZWs3RnFQMThsMQozczJhbmJ0ZnBpR1RIYkFubTJCaWhwRDlzUlBqQWlBSXZzZHlmbituYjJiQ1FCSzZzb2RiTytMeFNrdVp1bGtQCm9NUjN5Q0gvZUE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + ], + "tls_root_certs": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQVBIWHVlVnByUFBVMngvUjNpQitqZTB3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qRTFNRE16TlRVeFdoY05NamN4TWpFek1ETXoKTlRVeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCQ1ErTnJ0MzRuYjJWQ0RheDYrZmdFa200bnFwN241aGNCY2E2ell5cDRlRFdlRmhvRmtsTHVHZAo2bG1jNVVpZkZLbkVPeDhtdmtva2ovMmNFRUpkU1NDalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJT0k0NEJEMUtVRHMKYXkxNzlBTk5Qa2FjODZ4aFY2alNtTkV3bTdHYW1oSkdNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJSFBlUUt3MwpOOUpUY3BuZVBzVVBzLzdzWHdvTW1OUFY1RTJiYnhNM3B1ZEFBaUI1NG9XTkt0Ulp2ZzVlUXV6d2RnZkhYNjl0CnBBc1YvQ2xxd0JxaGswOUdxUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + ] + }, + "type": 0 + }, + "version": "0" + } + }, + "version": "0" + } + }, + "mod_policy": "/Channel/Orderer/Admins", + "values": { + "ChannelCreationPolicy": { + "mod_policy": "/Channel/Orderer/Admins", + "value": { + "type": 3, + "value": { + "rule": "ANY", + "sub_policy": "Admins" + } + }, + "version": "0" + } + }, + "version": "0" + } + }, + "mod_policy": "/Channel/Orderer/Admins", + "policies": { + "Admins": { + "mod_policy": "/Channel/Orderer/Admins", + "policy": { + "type": 1, + "value": { + "rule": { + "n_out_of": { + "n": 0 + } + }, + "version": 0 + } + }, + "version": "0" + } + }, + "version": "0" + }, + "Orderer": { + "groups": { + "OrdererOrg": { + "mod_policy": "Admins", + "policies": { + "Admins": { + "mod_policy": "Admins", + "policy": { + "type": 1, + "value": { + "identities": [ + { + "principal": { + "msp_identifier": "OrdererMSP", + "role": "ADMIN" + }, + "principal_classification": "ROLE" + } + ], + "rule": { + "n_out_of": { + "n": 1, + "rules": [ + { + "signed_by": 0 + } + ] + } + }, + "version": 0 + } + }, + "version": "0" + }, + "Readers": { + "mod_policy": "Admins", + "policy": { + "type": 1, + "value": { + "identities": [ + { + "principal": { + "msp_identifier": "OrdererMSP", + "role": "MEMBER" + }, + "principal_classification": "ROLE" + } + ], + "rule": { + "n_out_of": { + "n": 1, + "rules": [ + { + "signed_by": 0 + } + ] + } + }, + "version": 0 + } + }, + "version": "0" + }, + "Writers": { + "mod_policy": "Admins", + "policy": { + "type": 1, + "value": { + "identities": [ + { + "principal": { + "msp_identifier": "OrdererMSP", + "role": "MEMBER" + }, + "principal_classification": "ROLE" + } + ], + "rule": { + "n_out_of": { + "n": 1, + "rules": [ + { + "signed_by": 0 + } + ] + } + }, + "version": 0 + } + }, + "version": "0" + } + }, + "values": { + "MSP": { + "mod_policy": "Admins", + "value": { + "config": { + "admins": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRV1BvVHBQZSt3eFFuNFlDMW56S1pVVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRVR4R1lRdHdXVStqdUgxV1BtNmE4ckplRk9RU0FtUWZab1VHNXdXZzZzeENaMTBuWDlGbEQKRVNaMnpUZDYwcjVzVGhYSmxBblpoSG1pMGdTNUIrOVNSS05OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZy9IS0R4R0s0S1hsYjdBNmhkU3A1R0ZZRnhIWmNYWW0xCllubXEwa3hEZGpVd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ2ZhamFrRVVOeGcrdmRWVU9taVJHOStYT3FyT2EKc3FvK21RYmVtV2R4TGljQ0lDZzFpTWxtUkJjdFhtSmVMOXY0RldDYmExZnRnazd4eFh6d1JmWWUva2M4Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + ], + "crypto_config": { + "identity_identifier_hash_function": "SHA256", + "signature_hash_family": "SHA2" + }, + "name": "OrdererMSP", + "root_certs": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRXZ0F3SUJBZ0lRR1hmNXpFZ2psZWprRTFySlcyem53REFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJGU0tQUnNYblh2YVRUcVJLamtUUllZb1BqR2cKVGdYUkFvTVF3SSs5QWFMWFRTTCtBc0Fwd2x4ZWRyK1BKK1VnZkJOY3hleTIyNllTWlJKcUxlaUgvVGFqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJUHh5ZzhSaXVDbDVXK3dPb1hVcWVSaFdCY1IyWEYySnRXSjVxdEpNUTNZMU1Bb0cKQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUUNvUnJsWllQaDBRbnNwM1o5S2l0bVREa1JxaTZKeVI0UkxpT3lmdjhUZgpRZ0lnZEhiRnFYR1RaMEhGUW1rblVGZDVERDRUVGx0djhJam1mbThKMXNrUzRqYz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" + ], + "tls_root_certs": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR5Z0F3SUJBZ0lSQUlyYWx1UFN0RmhWaEVyZFpRZEtDS0F3Q2dZSUtvWkl6ajBFQXdJd2JERUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJvd0dBWURWUVFERXhGMGJITmpZUzVsCmVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1UVXdNek0xTlRGYUZ3MHlOekV5TVRNd016TTFOVEZhTUd3eEN6QUoKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaApibU5wYzJOdk1SUXdFZ1lEVlFRS0V3dGxlR0Z0Y0d4bExtTnZiVEVhTUJnR0ExVUVBeE1SZEd4elkyRXVaWGhoCmJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxaGtqT1BRTUJCd05DQUFTRkp0dnBDMmhoY2l4RXZPYisKTW1VYW5IWDQwMTJVSldGeXZxR1RWYlpDYnpGbDBBb1luUkQ4azllcnRsazQvYmxiSGVuRW1wM05zUGkxRXNJVQp3azVHbzE4d1hUQU9CZ05WSFE4QkFmOEVCQU1DQWFZd0R3WURWUjBsQkFnd0JnWUVWUjBsQURBUEJnTlZIUk1CCkFmOEVCVEFEQVFIL01Da0dBMVVkRGdRaUJDQklPWlFkUGVLOUN0dFdSUnFUME5LaXE3RjZabktSRll4UVVjcG0KOFcvQi96QUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQWFrNTlBS21vMkw1UEZTME4rWjhMem5uTW5mKzBNVEt2bgpJN2pRTDdZN0dRSWdPTktjWWRvS3duYzhPcUdObzJLQXl3RTJlTVVKZUxHaVFLeTB0NTAydW1RPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + ] + }, + "type": 0 + }, + "version": "0" + } + }, + "version": "0" + } + }, + "mod_policy": "Admins", + "policies": { + "Admins": { + "mod_policy": "Admins", + "policy": { + "type": 3, + "value": { + "rule": "MAJORITY", + "sub_policy": "Admins" + } + }, + "version": "0" + }, + "BlockValidation": { + "mod_policy": "Admins", + "policy": { + "type": 3, + "value": { + "rule": "ANY", + "sub_policy": "Writers" + } + }, + "version": "0" + }, + "Readers": { + "mod_policy": "Admins", + "policy": { + "type": 3, + "value": { + "rule": "ANY", + "sub_policy": "Readers" + } + }, + "version": "0" + }, + "Writers": { + "mod_policy": "Admins", + "policy": { + "type": 3, + "value": { + "rule": "ANY", + "sub_policy": "Writers" + } + }, + "version": "0" + } + }, + "values": { + "BatchSize": { + "mod_policy": "Admins", + "value": { + "absolute_max_bytes": 102760448, + "max_message_count": 20, + "preferred_max_bytes": 524288 + }, + "version": "0" + }, + "BatchTimeout": { + "mod_policy": "Admins", + "value": { + "timeout": "2s" + }, + "version": "0" + }, + "Capabilities": { + "mod_policy": "Admins", + "value": { + "capabilities": { + "V1_1": {} + } + }, + "version": "0" + }, + "ChannelRestrictions": { + "mod_policy": "Admins", + "version": "0" + }, + "ConsensusType": { + "mod_policy": "Admins", + "value": { + "type": "solo" + }, + "version": "0" + } + }, + "version": "0" + } + }, + "mod_policy": "Admins", + "policies": { + "Admins": { + "mod_policy": "Admins", + "policy": { + "type": 3, + "value": { + "rule": "MAJORITY", + "sub_policy": "Admins" + } + }, + "version": "0" + }, + "Readers": { + "mod_policy": "Admins", + "policy": { + "type": 3, + "value": { + "rule": "ANY", + "sub_policy": "Readers" + } + }, + "version": "0" + }, + "Writers": { + "mod_policy": "Admins", + "policy": { + "type": 3, + "value": { + "rule": "ANY", + "sub_policy": "Writers" + } + }, + "version": "0" + } + }, + "values": { + "BlockDataHashingStructure": { + "mod_policy": "Admins", + "value": { + "width": 4294967295 + }, + "version": "0" + }, + "Capabilities": { + "mod_policy": "Admins", + "value": { + "capabilities": { + "V1_1": {} + } + }, + "version": "0" + }, + "HashingAlgorithm": { + "mod_policy": "Admins", + "value": { + "name": "SHA256" + }, + "version": "0" + }, + "OrdererAddresses": { + "mod_policy": "/Channel/Orderer/Admins", + "value": { + "addresses": [ + "orderer.example.com:7050" + ] + }, + "version": "0" + } + }, + "version": "0" + }, + "sequence": "0", + "type": 0 + } + }, + "header": { + "channel_header": { + "channel_id": "testchainid", + "epoch": "0", + "timestamp": "2017-12-15T03:42:11.000Z", + "tx_id": "9897fdffd343cfbea7231dc5e9438a04d09931683ce555fdf3ab2b02be33fd3e", + "type": 1, + "version": 1 + }, + "signature_header": { + "nonce": "7BNqK3bA8SPk5xmIi2HyeoQeVaJUqG5t" + } + } +} diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_0.block b/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_0.block index cdd3f859..49ab7d09 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_0.block and b/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_0.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_0.block.json b/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_0.block.json index 09e28859..ca3530c4 100644 --- a/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_0.block.json +++ b/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_0.block.json @@ -108,7 +108,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -116,10 +116,10 @@ }, "name": "Org1MSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNSRENDQWVxZ0F3SUJBZ0lSQU1IcWRxVWpjbWdUTDZQTTJTWXJhUTh3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFeU1EZzBNREV3V2hjTk1qY3hNakV3TURnME1ERXcKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NUzVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQkNtMWNnd2dSZ2VuTkJobjlYdVp6UnFId0lWbjRmVElZOEhzMzAvTmNvN2pvd0hxbzV1N0lSWExCaXNua240SQp6L0tPbndneHJiejBETTUzRnZWL2VhYWpYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSVBrZjZXVnZ0dDljMHF2bjc1NHIKR3pwUi84VmtJS1FsWHF4QklRem5pS2xYTUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDV2liVllvTXZIc1g2eApPenNyclBxaExZYklTZDRMaXVMZkNpTDVEa1RUcWdJZ1pjQmdiZDVGekt5enJUektwVDlXK29KQ21rQVBBMG1mCnhFRldrTXRHYmdZPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRU2hqQXdlKzZzeG9TTVo4VXJZS09jVEFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRVd016TTFOVEJhRncweU56RXlNVE13TXpNMU5UQmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3hMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKR3d5eWZETEgwN2RGVmtFdnhKREdPS0dldlVjYVlIcGhadmh6Vjc4TUJYVndJRUdJRU5rN1pzOHgrZHg2aXdJSwpMT0dtWHhxL1dxZDRxTHM2a0Z5WnZxTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1Fnc0s5cEUvcGxJT1YxMG1xZWZVekUKdkNRVTZxYjB4ZkRZc1k2VHhjdXNFMVl3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUw3eFhyWUQxZmt6Y3B4aQp5eVpoRmZFdk1EV0NvVWljUXcyYitjM0dRNk91QWlBMEt0TnVINHlTNCtjMTNXOUxzZDI4WE5RSzg4Rmt3QjJKClFSOXloSkU3ckE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWUrZ0F3SUJBZ0lRYXpUd3QybHc4dXA3NVpDUytGRVFOakFLQmdncWhrak9QUVFEQWpCMk1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHQTFVRUF4TVdkR3h6ClkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1USXdPRFF3TVRCYUZ3MHlOekV5TVRBd09EUXcKTVRCYU1IWXhDekFKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSApFdzFUWVc0Z1JuSmhibU5wYzJOdk1Sa3dGd1lEVlFRS0V4QnZjbWN4TG1WNFlXMXdiR1V1WTI5dE1SOHdIUVlEClZRUURFeFowYkhOallTNXZjbWN4TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJS29aSXpqMEQKQVFjRFFnQUVxZXYzL2hWbmdVRWdoSS9hM3VXQWNadzcwYjVYZ1dud0lLOHdTRHpDWGJqb1dkbDk2alU1TmdBMQo1VnVXNVIyU3VXNnRuNjE5Sm95WDlxcFdCMGJiRktOZk1GMHdEZ1lEVlIwUEFRSC9CQVFEQWdHbU1BOEdBMVVkCkpRUUlNQVlHQkZVZEpRQXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QXBCZ05WSFE0RUlnUWdMQklUTTJyeExIbjUKalBXeUZySmpPandhZWJlYWZ0eW8ycmRpS2Ntajdmc3dDZ1lJS29aSXpqMEVBd0lEU0FBd1JRSWhBTnBoQ0RaUwpUU1ZML0dadDdUNGVaR2hUWFZLMXJtZmNNM0pjODBFMjFXbldBaUI3U0VDZzhRNDRMaU0wdy9YUFcwUkl1V2xzCjBFTG1LSjF1SCs3Y3Y3SnJXUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWUrZ0F3SUJBZ0lRZDlMN1pUUk14NXF3WnEwT1dVZXhSVEFLQmdncWhrak9QUVFEQWpCMk1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHQTFVRUF4TVdkR3h6ClkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1UVXdNek0xTlRCYUZ3MHlOekV5TVRNd016TTEKTlRCYU1IWXhDekFKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSApFdzFUWVc0Z1JuSmhibU5wYzJOdk1Sa3dGd1lEVlFRS0V4QnZjbWN4TG1WNFlXMXdiR1V1WTI5dE1SOHdIUVlEClZRUURFeFowYkhOallTNXZjbWN4TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJS29aSXpqMEQKQVFjRFFnQUVhdFoxeHhjWEQ4OHU0QUduQVR5RUhsNGJsOUVQSTNlQXJDNzBGK1VkOCtMbVRuV3drUjMvRWVOTwpieDJhUExTYi92ZVpONTh1dm1QMnZ0OTdoYktKc2FOZk1GMHdEZ1lEVlIwUEFRSC9CQVFEQWdHbU1BOEdBMVVkCkpRUUlNQVlHQkZVZEpRQXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QXBCZ05WSFE0RUlnUWdybUZCc2dXdUJDTDkKc2x0bEtXMkoyS3AvUHJHQ2ZSYW9lR3ZwTjlYRTZub3dDZ1lJS29aSXpqMEVBd0lEU0FBd1JRSWhBSTBjNDBhNgpmdm44V0ZCNzh2TG5tVHJRTTlDOGVmQjhOdkI3NW9YVjQwem1BaUFVQ3d6VDQzS0dpR0ppUENzdllPWGlwTzFmCkYrWW5NUVJnVzJBWEJpVWhGUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ] }, "type": 0 @@ -226,7 +226,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRQkh6VlRRRlZwNXY2ZXNHRy9BRnZwREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFSVFPK202SXNsSjdTRzJoL0FXdDZVcFZHYklmSDErWGsKRUVBU0x2WXoxd1FMV2g3M2pVbXJEZTBHN1VoTDVSdXltazN1SDErUVZTS1hzZFU4M0dOczdxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnTW5vREx5dkIKOW9ObEpsVk5YdmRzcVgvcnIvYUxnQ2JsWVJiY3QwTDZXVThDSUF3SmlkZ3FjcG5WVzc0TzM0VWJoQW5lcVFDZgpaTThyd0xsZ1Y2WFVlVExXCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU1LZmJSQTQxNnArZlNheFE1cVA4all3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk0vaC8rRFh4cjJsTTFWdFBEd2hsQXlKVnI0WHQrS3YKVkxTbWVZK21YNS8rODAyU1BNcEl4WktFZjY1anp0YXNLQnhHYk9nQUJiZXl4M29YR2Q3ZGU4cWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFENElYSzIKOGJBRXNTZW5aZXUrTi81MGsyYlZqTFBzTXNKM3NFOTFBcmxQeEFJZ1hiMksyOFlPR0FMWUZYc1kvdEdrK2EvMApONSt6L2ZUVGZjaEdmTGFDdHpNPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -234,10 +234,10 @@ }, "name": "Org2MSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRWDEyWGxPSkNpR1FqajBTQ0NweVI1REFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3lMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKbjFwTG4vcEVGYW5BMXhnUTB2cXZ5WkVmODZTY2F4VVpHNEJkMFFlUXpHbnBpUmxYUXRhcHd0TnBySXc4SndaRworOGZDbnlFeWRiY2lTUzdmRjdNRkxhTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1FnSFRRY3hzcVlOSlhUNk9rTE5GTnMKU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUpwOXZqZm5qbkhGTlhhWQp1SmtNY2ExK3BLQmMrSWZGNTJCQlZMRmliMllWQWlCTFM4U2hvd2xDRCt1ajhpOWZ0djFaT1pEZVpFZUp2MDdZCmNOdkFYVThMbFE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVxZ0F3SUJBZ0lSQU10KzR5Yk9LMXI3QjhlYXZMVlRNQlV3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NaTVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQlBHcnRKdEhqMVFsMDJncTdJMFpRUUtKd3Z0WmhwMHQzckN3RjFjRklMVEhJQk00cGhKL1pZSlFhMWxiMTJwTwpzeFN4dUV2UkdURmNaWHR1blVjMFNlV2pYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSUNTcVZ5ckplckY3WW9YREtLZVYKMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUIrcHNpZWs3RnFQMThsMQozczJhbmJ0ZnBpR1RIYkFubTJCaWhwRDlzUlBqQWlBSXZzZHlmbituYjJiQ1FCSzZzb2RiTytMeFNrdVp1bGtQCm9NUjN5Q0gvZUE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQUtHM2phVjU3WnpSTWNNYmQ0ZElrWTR3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qRXlNRGcwTURFeFdoY05NamN4TWpFd01EZzAKTURFeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCSElBK2pnVVVmV0s3cWRoMFU2RHBac0lGYXgwQktZZHBXdkR6Y1M3R1d3T1dHQUdyU09MR1V5bAowMTFzd2V1SlJLZUhPRHB0UUxubTUrV25wb0l6Mmxhalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJQ0RqWlFvNUJFTVoKMVhvMHhrQVJKODFFb3AvV0JReEtJL2hhcTdxZU12dERNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJRm0yVVhHUwpKMEw1K1dIOHpDRTR6L01FSGpSeTdkeHk5eGpSZkNxb2hxYmhBaUF6MXlhK1krTWpaS3ZsTkwwcEpyOTNvbThGCkd6NTFkOHdHb0RjTE4vT0tOUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQVBIWHVlVnByUFBVMngvUjNpQitqZTB3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qRTFNRE16TlRVeFdoY05NamN4TWpFek1ETXoKTlRVeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCQ1ErTnJ0MzRuYjJWQ0RheDYrZmdFa200bnFwN241aGNCY2E2ell5cDRlRFdlRmhvRmtsTHVHZAo2bG1jNVVpZkZLbkVPeDhtdmtva2ovMmNFRUpkU1NDalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJT0k0NEJEMUtVRHMKYXkxNzlBTk5Qa2FjODZ4aFY2alNtTkV3bTdHYW1oSkdNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJSFBlUUt3MwpOOUpUY3BuZVBzVVBzLzdzWHdvTW1OUFY1RTJiYnhNM3B1ZEFBaUI1NG9XTkt0Ulp2ZzVlUXV6d2RnZkhYNjl0CnBBc1YvQ2xxd0JxaGswOUdxUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ] }, "type": 0 @@ -384,7 +384,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRTS90M2dIdWgyQVRiM2p3UjdDeDVkVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNbG9YRFRJM01USXhNREE0TkRBeE1sb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRWZDR1cxZmRieDBPNS9JcE0vZk0yYW1qM3pJVEE3WWIrZDdTSTB2b1g4azFtckdWcCtOYWEKdGhQRFo2TjNKNVJ3dm01K3M0TnVWT3NEMHVmbm5aTC9DNk5OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZ3dKQXZNWEZIVVlQZzkvTWJBckVtWGRDdU53cXpoUGhGCjk0c3hyRkRNdFVjd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ1d0OVd5ZkwrT2lzeFlFY1VqNDVnUmFLSUxqTHIKNE80eUptOVAwUTlKTXVvQ0lHRTVwZDFMOWxHTzB6dHhTb1hYTXhrL2tmYUlpaHlGbEs5K2xOSTI0QzNBCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRV1BvVHBQZSt3eFFuNFlDMW56S1pVVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRVR4R1lRdHdXVStqdUgxV1BtNmE4ckplRk9RU0FtUWZab1VHNXdXZzZzeENaMTBuWDlGbEQKRVNaMnpUZDYwcjVzVGhYSmxBblpoSG1pMGdTNUIrOVNSS05OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZy9IS0R4R0s0S1hsYjdBNmhkU3A1R0ZZRnhIWmNYWW0xCllubXEwa3hEZGpVd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ2ZhamFrRVVOeGcrdmRWVU9taVJHOStYT3FyT2EKc3FvK21RYmVtV2R4TGljQ0lDZzFpTWxtUkJjdFhtSmVMOXY0RldDYmExZnRnazd4eFh6d1JmWWUva2M4Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -392,10 +392,10 @@ }, "name": "OrdererMSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRXZ0F3SUJBZ0lRU3o1MVV2bmE4eVBYT3NGaUswbHJBVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNVm9YRFRJM01USXhNREE0TkRBeE1Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJDUTRNQURILzltTkdVWCtoTVFwWmlMRjZoOGkKWmpVNG5zQnM2Yk5ZdURUREc1alJQVVF2OEQvaXE2VzFMTnhZbURyaFFZS0NUYlB1L1ZkTVBWMFJxMktqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJTUNRTHpGeFIxR0Q0UGZ6R3dLeEpsM1FyamNLczRUNFJmZUxNYXhRekxWSE1Bb0cKQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUURNeFBiNXdac1lSM0d0Nm5KdU1XSVhaR09UZjZ1bzRZcFR1c2Uxd2lYZwowQUlnRGtWSHJHRW5ia0Z4cXhndDhwZzIwOEZrZWZmblZZS1dhUDF2YnFPdlNDYz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRXZ0F3SUJBZ0lRR1hmNXpFZ2psZWprRTFySlcyem53REFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJGU0tQUnNYblh2YVRUcVJLamtUUllZb1BqR2cKVGdYUkFvTVF3SSs5QWFMWFRTTCtBc0Fwd2x4ZWRyK1BKK1VnZkJOY3hleTIyNllTWlJKcUxlaUgvVGFqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJUHh5ZzhSaXVDbDVXK3dPb1hVcWVSaFdCY1IyWEYySnRXSjVxdEpNUTNZMU1Bb0cKQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUUNvUnJsWllQaDBRbnNwM1o5S2l0bVREa1JxaTZKeVI0UkxpT3lmdjhUZgpRZ0lnZEhiRnFYR1RaMEhGUW1rblVGZDVERDRUVGx0djhJam1mbThKMXNrUzRqYz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR1Z0F3SUJBZ0lRSG9NcWNCakFsQXFIODhjb00vanUrREFLQmdncWhrak9QUVFEQWpCc01Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4R2pBWUJnTlZCQU1URVhSc2MyTmhMbVY0CllXMXdiR1V1WTI5dE1CNFhEVEUzTVRJeE1qQTROREF4TVZvWERUSTNNVEl4TURBNE5EQXhNVm93YkRFTE1Ba0cKQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdQpZMmx6WTI4eEZEQVNCZ05WQkFvVEMyVjRZVzF3YkdVdVkyOXRNUm93R0FZRFZRUURFeEYwYkhOallTNWxlR0Z0CmNHeGxMbU52YlRCWk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkF5cFJOSmpib1pqSHdqRElLK2YKYTc4TkUvNUdnOHlrelIzOGM0MUN0cnFqNldOTkZiSkZkcUV4WnE5L1NybnV4NUlCMjJFblV6eVd1M2RpV1lLTAp1Y0tqWHpCZE1BNEdBMVVkRHdFQi93UUVBd0lCcGpBUEJnTlZIU1VFQ0RBR0JnUlZIU1VBTUE4R0ExVWRFd0VCCi93UUZNQU1CQWY4d0tRWURWUjBPQkNJRUlNZlFlM3pBRVFpSXJBRjRwZUM0a2RHOUMxWG4rQUI2UzJaeTRlUjEKZzBTZE1Bb0dDQ3FHU000OUJBTUNBMGdBTUVVQ0lRRDV5akFtTTBHS3BWeFVqVVkyL0lBN3pmeXNQSXBhQ0p5RQpzNVJHN2xtZG5BSWdMb0lXZUYvUXNmV1dYVlM3K3dhRTJOVld3cENDZ3hqekd3K1B3ajE2T2p3PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR5Z0F3SUJBZ0lSQUlyYWx1UFN0RmhWaEVyZFpRZEtDS0F3Q2dZSUtvWkl6ajBFQXdJd2JERUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJvd0dBWURWUVFERXhGMGJITmpZUzVsCmVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1UVXdNek0xTlRGYUZ3MHlOekV5TVRNd016TTFOVEZhTUd3eEN6QUoKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaApibU5wYzJOdk1SUXdFZ1lEVlFRS0V3dGxlR0Z0Y0d4bExtTnZiVEVhTUJnR0ExVUVBeE1SZEd4elkyRXVaWGhoCmJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxaGtqT1BRTUJCd05DQUFTRkp0dnBDMmhoY2l4RXZPYisKTW1VYW5IWDQwMTJVSldGeXZxR1RWYlpDYnpGbDBBb1luUkQ4azllcnRsazQvYmxiSGVuRW1wM05zUGkxRXNJVQp3azVHbzE4d1hUQU9CZ05WSFE4QkFmOEVCQU1DQWFZd0R3WURWUjBsQkFnd0JnWUVWUjBsQURBUEJnTlZIUk1CCkFmOEVCVEFEQVFIL01Da0dBMVVkRGdRaUJDQklPWlFkUGVLOUN0dFdSUnFUME5LaXE3RjZabktSRll4UVVjcG0KOFcvQi96QUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQWFrNTlBS21vMkw1UEZTME4rWjhMem5uTW5mKzBNVEt2bgpJN2pRTDdZN0dRSWdPTktjWWRvS3duYzhPcUdObzJLQXl3RTJlTVVKZUxHaVFLeTB0NTAydW1RPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ] }, "type": 0 @@ -574,13 +574,13 @@ "channel_header": { "channel_id": "testchainid", "epoch": "0", - "timestamp": "2017-12-12T08:45:12.000Z", - "tx_id": "ac91efddd7bdd65ca55d559643507abea2627c48a01a74fae5cd65476a3057ab", + "timestamp": "2017-12-15T03:42:11.000Z", + "tx_id": "9897fdffd343cfbea7231dc5e9438a04d09931683ce555fdf3ab2b02be33fd3e", "type": 1, "version": 1 }, "signature_header": { - "nonce": "oMN8r7PaesDZoo9Qxk7CCpsL1rQVELXu" + "nonce": "7BNqK3bA8SPk5xmIi2HyeoQeVaJUqG5t" } } } @@ -588,7 +588,7 @@ ] }, "header": { - "data_hash": "EghFQO248mGKcH7WiGY24q8zrsxkGOFAGPfbm+mGJoY=", + "data_hash": "NiBplxvf9O/DMz6X5BZSqAtRTcNGwa3MbG4HG/EZzJo=", "number": "0" }, "metadata": { diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_0.block_payload.json b/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_0.block_payload.json index ccb1e645..08fa4323 100644 --- a/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_0.block_payload.json +++ b/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_0.block_payload.json @@ -104,7 +104,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRREErM1RLUVdDS0J6RlY3Z3VQR1l4akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEJhRncweU56RXlNVEF3T0RRd01UQmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFd1p0RlJnSUlUQmlTKzRrMmJUbkVibS9VTzRSaVR2aHYKcHlkQ2dyUEYwQXRCR01kNzZnQWlhSFZ6K1gyYytJYVJwTUxtWFBBb2NURXhvN2I4Y3c4N3JhTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1IvcFpXKzIzMXpTCnErZnZuaXNiT2xIL3hXUWdwQ1ZlckVFaERPZUlxVmN3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUljZGdPMGMKZ0hBY3ptMXRZOHU5cnBVOUxwOUlySFQyYitHaWNQWTlUL2UwQWlCeTNXb0tPR0pMZzFTUU1qbkJWbCsxQ21MZgpPd0pwb3luTkN5S3NXb3p1Vnc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUt4ZktvMnFxdFlmUFRBUDlSa0E2eW93Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV3V2hjTk1qY3hNakV6TURNek5UVXcKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkxJOFNwTnJrQzBBWWhpN0dJY3c1MjdQUFY2TnVoK0EKa29rdnBRY1VDZ0ZTbTczdFlaN1FBVWxURjhOL1ZCQk5RQ25GTDJrcnVrT0xkMUlvQjd3blpudWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUxDdmFSUDZaU0RsCmRkSnFubjFNeEx3a0ZPcW05TVh3MkxHT2s4WExyQk5XTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUI1M0plRngKT2ZWRERsaStKaVVja0Y0WTdrTWRZVVBxR3hHc3N1WUgwVXBpQWlBb3FZV3pZak9MOXBxZ3h0SVQwMy9ZcXNwYwpicUVpNi9sWTJrSzBFdEdSbkE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -112,10 +112,10 @@ }, "name": "Org1MSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNSRENDQWVxZ0F3SUJBZ0lSQU1IcWRxVWpjbWdUTDZQTTJTWXJhUTh3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFeU1EZzBNREV3V2hjTk1qY3hNakV3TURnME1ERXcKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NUzVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQkNtMWNnd2dSZ2VuTkJobjlYdVp6UnFId0lWbjRmVElZOEhzMzAvTmNvN2pvd0hxbzV1N0lSWExCaXNua240SQp6L0tPbndneHJiejBETTUzRnZWL2VhYWpYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSVBrZjZXVnZ0dDljMHF2bjc1NHIKR3pwUi84VmtJS1FsWHF4QklRem5pS2xYTUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDV2liVllvTXZIc1g2eApPenNyclBxaExZYklTZDRMaXVMZkNpTDVEa1RUcWdJZ1pjQmdiZDVGekt5enJUektwVDlXK29KQ21rQVBBMG1mCnhFRldrTXRHYmdZPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRU2hqQXdlKzZzeG9TTVo4VXJZS09jVEFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRVd016TTFOVEJhRncweU56RXlNVE13TXpNMU5UQmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3hMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKR3d5eWZETEgwN2RGVmtFdnhKREdPS0dldlVjYVlIcGhadmh6Vjc4TUJYVndJRUdJRU5rN1pzOHgrZHg2aXdJSwpMT0dtWHhxL1dxZDRxTHM2a0Z5WnZxTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1Fnc0s5cEUvcGxJT1YxMG1xZWZVekUKdkNRVTZxYjB4ZkRZc1k2VHhjdXNFMVl3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUw3eFhyWUQxZmt6Y3B4aQp5eVpoRmZFdk1EV0NvVWljUXcyYitjM0dRNk91QWlBMEt0TnVINHlTNCtjMTNXOUxzZDI4WE5RSzg4Rmt3QjJKClFSOXloSkU3ckE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWUrZ0F3SUJBZ0lRYXpUd3QybHc4dXA3NVpDUytGRVFOakFLQmdncWhrak9QUVFEQWpCMk1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHQTFVRUF4TVdkR3h6ClkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1USXdPRFF3TVRCYUZ3MHlOekV5TVRBd09EUXcKTVRCYU1IWXhDekFKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSApFdzFUWVc0Z1JuSmhibU5wYzJOdk1Sa3dGd1lEVlFRS0V4QnZjbWN4TG1WNFlXMXdiR1V1WTI5dE1SOHdIUVlEClZRUURFeFowYkhOallTNXZjbWN4TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJS29aSXpqMEQKQVFjRFFnQUVxZXYzL2hWbmdVRWdoSS9hM3VXQWNadzcwYjVYZ1dud0lLOHdTRHpDWGJqb1dkbDk2alU1TmdBMQo1VnVXNVIyU3VXNnRuNjE5Sm95WDlxcFdCMGJiRktOZk1GMHdEZ1lEVlIwUEFRSC9CQVFEQWdHbU1BOEdBMVVkCkpRUUlNQVlHQkZVZEpRQXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QXBCZ05WSFE0RUlnUWdMQklUTTJyeExIbjUKalBXeUZySmpPandhZWJlYWZ0eW8ycmRpS2Ntajdmc3dDZ1lJS29aSXpqMEVBd0lEU0FBd1JRSWhBTnBoQ0RaUwpUU1ZML0dadDdUNGVaR2hUWFZLMXJtZmNNM0pjODBFMjFXbldBaUI3U0VDZzhRNDRMaU0wdy9YUFcwUkl1V2xzCjBFTG1LSjF1SCs3Y3Y3SnJXUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWUrZ0F3SUJBZ0lRZDlMN1pUUk14NXF3WnEwT1dVZXhSVEFLQmdncWhrak9QUVFEQWpCMk1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHQTFVRUF4TVdkR3h6ClkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1UVXdNek0xTlRCYUZ3MHlOekV5TVRNd016TTEKTlRCYU1IWXhDekFKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSApFdzFUWVc0Z1JuSmhibU5wYzJOdk1Sa3dGd1lEVlFRS0V4QnZjbWN4TG1WNFlXMXdiR1V1WTI5dE1SOHdIUVlEClZRUURFeFowYkhOallTNXZjbWN4TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJS29aSXpqMEQKQVFjRFFnQUVhdFoxeHhjWEQ4OHU0QUduQVR5RUhsNGJsOUVQSTNlQXJDNzBGK1VkOCtMbVRuV3drUjMvRWVOTwpieDJhUExTYi92ZVpONTh1dm1QMnZ0OTdoYktKc2FOZk1GMHdEZ1lEVlIwUEFRSC9CQVFEQWdHbU1BOEdBMVVkCkpRUUlNQVlHQkZVZEpRQXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QXBCZ05WSFE0RUlnUWdybUZCc2dXdUJDTDkKc2x0bEtXMkoyS3AvUHJHQ2ZSYW9lR3ZwTjlYRTZub3dDZ1lJS29aSXpqMEVBd0lEU0FBd1JRSWhBSTBjNDBhNgpmdm44V0ZCNzh2TG5tVHJRTTlDOGVmQjhOdkI3NW9YVjQwem1BaUFVQ3d6VDQzS0dpR0ppUENzdllPWGlwTzFmCkYrWW5NUVJnVzJBWEJpVWhGUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ] }, "type": 0 @@ -222,7 +222,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRQkh6VlRRRlZwNXY2ZXNHRy9BRnZwREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFSVFPK202SXNsSjdTRzJoL0FXdDZVcFZHYklmSDErWGsKRUVBU0x2WXoxd1FMV2g3M2pVbXJEZTBHN1VoTDVSdXltazN1SDErUVZTS1hzZFU4M0dOczdxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnSFRRY3hzcVlOSlhUCjZPa0xORk5zU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnTW5vREx5dkIKOW9ObEpsVk5YdmRzcVgvcnIvYUxnQ2JsWVJiY3QwTDZXVThDSUF3SmlkZ3FjcG5WVzc0TzM0VWJoQW5lcVFDZgpaTThyd0xsZ1Y2WFVlVExXCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU1LZmJSQTQxNnArZlNheFE1cVA4all3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk0vaC8rRFh4cjJsTTFWdFBEd2hsQXlKVnI0WHQrS3YKVkxTbWVZK21YNS8rODAyU1BNcEl4WktFZjY1anp0YXNLQnhHYk9nQUJiZXl4M29YR2Q3ZGU4cWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNTcVZ5ckplckY3CllvWERLS2VWMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFENElYSzIKOGJBRXNTZW5aZXUrTi81MGsyYlZqTFBzTXNKM3NFOTFBcmxQeEFJZ1hiMksyOFlPR0FMWUZYc1kvdEdrK2EvMApONSt6L2ZUVGZjaEdmTGFDdHpNPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -230,10 +230,10 @@ }, "name": "Org2MSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRWDEyWGxPSkNpR1FqajBTQ0NweVI1REFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TVRJd09EUXdNVEZhRncweU56RXlNVEF3T0RRd01URmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3lMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKbjFwTG4vcEVGYW5BMXhnUTB2cXZ5WkVmODZTY2F4VVpHNEJkMFFlUXpHbnBpUmxYUXRhcHd0TnBySXc4SndaRworOGZDbnlFeWRiY2lTUzdmRjdNRkxhTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1FnSFRRY3hzcVlOSlhUNk9rTE5GTnMKU2VLa1VuMERKUDJMTkRPWWoyYXBKajB3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUpwOXZqZm5qbkhGTlhhWQp1SmtNY2ExK3BLQmMrSWZGNTJCQlZMRmliMllWQWlCTFM4U2hvd2xDRCt1ajhpOWZ0djFaT1pEZVpFZUp2MDdZCmNOdkFYVThMbFE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVxZ0F3SUJBZ0lSQU10KzR5Yk9LMXI3QjhlYXZMVlRNQlV3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TWpFMU1ETXpOVFV4V2hjTk1qY3hNakV6TURNek5UVXgKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NaTVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQlBHcnRKdEhqMVFsMDJncTdJMFpRUUtKd3Z0WmhwMHQzckN3RjFjRklMVEhJQk00cGhKL1pZSlFhMWxiMTJwTwpzeFN4dUV2UkdURmNaWHR1blVjMFNlV2pYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSUNTcVZ5ckplckY3WW9YREtLZVYKMkFYLzZrNllnejZlQVAxNEtPZWY1bXE3TUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUIrcHNpZWs3RnFQMThsMQozczJhbmJ0ZnBpR1RIYkFubTJCaWhwRDlzUlBqQWlBSXZzZHlmbituYjJiQ1FCSzZzb2RiTytMeFNrdVp1bGtQCm9NUjN5Q0gvZUE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQUtHM2phVjU3WnpSTWNNYmQ0ZElrWTR3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qRXlNRGcwTURFeFdoY05NamN4TWpFd01EZzAKTURFeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCSElBK2pnVVVmV0s3cWRoMFU2RHBac0lGYXgwQktZZHBXdkR6Y1M3R1d3T1dHQUdyU09MR1V5bAowMTFzd2V1SlJLZUhPRHB0UUxubTUrV25wb0l6Mmxhalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJQ0RqWlFvNUJFTVoKMVhvMHhrQVJKODFFb3AvV0JReEtJL2hhcTdxZU12dERNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJRm0yVVhHUwpKMEw1K1dIOHpDRTR6L01FSGpSeTdkeHk5eGpSZkNxb2hxYmhBaUF6MXlhK1krTWpaS3ZsTkwwcEpyOTNvbThGCkd6NTFkOHdHb0RjTE4vT0tOUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQVBIWHVlVnByUFBVMngvUjNpQitqZTB3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qRTFNRE16TlRVeFdoY05NamN4TWpFek1ETXoKTlRVeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCQ1ErTnJ0MzRuYjJWQ0RheDYrZmdFa200bnFwN241aGNCY2E2ell5cDRlRFdlRmhvRmtsTHVHZAo2bG1jNVVpZkZLbkVPeDhtdmtva2ovMmNFRUpkU1NDalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJT0k0NEJEMUtVRHMKYXkxNzlBTk5Qa2FjODZ4aFY2alNtTkV3bTdHYW1oSkdNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJSFBlUUt3MwpOOUpUY3BuZVBzVVBzLzdzWHdvTW1OUFY1RTJiYnhNM3B1ZEFBaUI1NG9XTkt0Ulp2ZzVlUXV6d2RnZkhYNjl0CnBBc1YvQ2xxd0JxaGswOUdxUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ] }, "type": 0 @@ -380,7 +380,7 @@ "value": { "config": { "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRTS90M2dIdWgyQVRiM2p3UjdDeDVkVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNbG9YRFRJM01USXhNREE0TkRBeE1sb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRWZDR1cxZmRieDBPNS9JcE0vZk0yYW1qM3pJVEE3WWIrZDdTSTB2b1g4azFtckdWcCtOYWEKdGhQRFo2TjNKNVJ3dm01K3M0TnVWT3NEMHVmbm5aTC9DNk5OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZ3dKQXZNWEZIVVlQZzkvTWJBckVtWGRDdU53cXpoUGhGCjk0c3hyRkRNdFVjd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ1d0OVd5ZkwrT2lzeFlFY1VqNDVnUmFLSUxqTHIKNE80eUptOVAwUTlKTXVvQ0lHRTVwZDFMOWxHTzB6dHhTb1hYTXhrL2tmYUlpaHlGbEs5K2xOSTI0QzNBCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRV1BvVHBQZSt3eFFuNFlDMW56S1pVVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRVR4R1lRdHdXVStqdUgxV1BtNmE4ckplRk9RU0FtUWZab1VHNXdXZzZzeENaMTBuWDlGbEQKRVNaMnpUZDYwcjVzVGhYSmxBblpoSG1pMGdTNUIrOVNSS05OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZy9IS0R4R0s0S1hsYjdBNmhkU3A1R0ZZRnhIWmNYWW0xCllubXEwa3hEZGpVd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ2ZhamFrRVVOeGcrdmRWVU9taVJHOStYT3FyT2EKc3FvK21RYmVtV2R4TGljQ0lDZzFpTWxtUkJjdFhtSmVMOXY0RldDYmExZnRnazd4eFh6d1JmWWUva2M4Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ], "crypto_config": { "identity_identifier_hash_function": "SHA256", @@ -388,10 +388,10 @@ }, "name": "OrdererMSP", "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRXZ0F3SUJBZ0lRU3o1MVV2bmE4eVBYT3NGaUswbHJBVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TWpBNE5EQXhNVm9YRFRJM01USXhNREE0TkRBeE1Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJDUTRNQURILzltTkdVWCtoTVFwWmlMRjZoOGkKWmpVNG5zQnM2Yk5ZdURUREc1alJQVVF2OEQvaXE2VzFMTnhZbURyaFFZS0NUYlB1L1ZkTVBWMFJxMktqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJTUNRTHpGeFIxR0Q0UGZ6R3dLeEpsM1FyamNLczRUNFJmZUxNYXhRekxWSE1Bb0cKQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUURNeFBiNXdac1lSM0d0Nm5KdU1XSVhaR09UZjZ1bzRZcFR1c2Uxd2lYZwowQUlnRGtWSHJHRW5ia0Z4cXhndDhwZzIwOEZrZWZmblZZS1dhUDF2YnFPdlNDYz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRXZ0F3SUJBZ0lRR1hmNXpFZ2psZWprRTFySlcyem53REFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEl4TlRBek16VTFNVm9YRFRJM01USXhNekF6TXpVMU1Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJGU0tQUnNYblh2YVRUcVJLamtUUllZb1BqR2cKVGdYUkFvTVF3SSs5QWFMWFRTTCtBc0Fwd2x4ZWRyK1BKK1VnZkJOY3hleTIyNllTWlJKcUxlaUgvVGFqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJUHh5ZzhSaXVDbDVXK3dPb1hVcWVSaFdCY1IyWEYySnRXSjVxdEpNUTNZMU1Bb0cKQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUUNvUnJsWllQaDBRbnNwM1o5S2l0bVREa1JxaTZKeVI0UkxpT3lmdjhUZgpRZ0lnZEhiRnFYR1RaMEhGUW1rblVGZDVERDRUVGx0djhJam1mbThKMXNrUzRqYz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" ], "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR1Z0F3SUJBZ0lRSG9NcWNCakFsQXFIODhjb00vanUrREFLQmdncWhrak9QUVFEQWpCc01Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4R2pBWUJnTlZCQU1URVhSc2MyTmhMbVY0CllXMXdiR1V1WTI5dE1CNFhEVEUzTVRJeE1qQTROREF4TVZvWERUSTNNVEl4TURBNE5EQXhNVm93YkRFTE1Ba0cKQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdQpZMmx6WTI4eEZEQVNCZ05WQkFvVEMyVjRZVzF3YkdVdVkyOXRNUm93R0FZRFZRUURFeEYwYkhOallTNWxlR0Z0CmNHeGxMbU52YlRCWk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkF5cFJOSmpib1pqSHdqRElLK2YKYTc4TkUvNUdnOHlrelIzOGM0MUN0cnFqNldOTkZiSkZkcUV4WnE5L1NybnV4NUlCMjJFblV6eVd1M2RpV1lLTAp1Y0tqWHpCZE1BNEdBMVVkRHdFQi93UUVBd0lCcGpBUEJnTlZIU1VFQ0RBR0JnUlZIU1VBTUE4R0ExVWRFd0VCCi93UUZNQU1CQWY4d0tRWURWUjBPQkNJRUlNZlFlM3pBRVFpSXJBRjRwZUM0a2RHOUMxWG4rQUI2UzJaeTRlUjEKZzBTZE1Bb0dDQ3FHU000OUJBTUNBMGdBTUVVQ0lRRDV5akFtTTBHS3BWeFVqVVkyL0lBN3pmeXNQSXBhQ0p5RQpzNVJHN2xtZG5BSWdMb0lXZUYvUXNmV1dYVlM3K3dhRTJOVld3cENDZ3hqekd3K1B3ajE2T2p3PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR5Z0F3SUJBZ0lSQUlyYWx1UFN0RmhWaEVyZFpRZEtDS0F3Q2dZSUtvWkl6ajBFQXdJd2JERUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJvd0dBWURWUVFERXhGMGJITmpZUzVsCmVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFeU1UVXdNek0xTlRGYUZ3MHlOekV5TVRNd016TTFOVEZhTUd3eEN6QUoKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaApibU5wYzJOdk1SUXdFZ1lEVlFRS0V3dGxlR0Z0Y0d4bExtTnZiVEVhTUJnR0ExVUVBeE1SZEd4elkyRXVaWGhoCmJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxaGtqT1BRTUJCd05DQUFTRkp0dnBDMmhoY2l4RXZPYisKTW1VYW5IWDQwMTJVSldGeXZxR1RWYlpDYnpGbDBBb1luUkQ4azllcnRsazQvYmxiSGVuRW1wM05zUGkxRXNJVQp3azVHbzE4d1hUQU9CZ05WSFE4QkFmOEVCQU1DQWFZd0R3WURWUjBsQkFnd0JnWUVWUjBsQURBUEJnTlZIUk1CCkFmOEVCVEFEQVFIL01Da0dBMVVkRGdRaUJDQklPWlFkUGVLOUN0dFdSUnFUME5LaXE3RjZabktSRll4UVVjcG0KOFcvQi96QUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQWFrNTlBS21vMkw1UEZTME4rWjhMem5uTW5mKzBNVEt2bgpJN2pRTDdZN0dRSWdPTktjWWRvS3duYzhPcUdObzJLQXl3RTJlTVVKZUxHaVFLeTB0NTAydW1RPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ] }, "type": 0 @@ -570,13 +570,13 @@ "channel_header": { "channel_id": "testchainid", "epoch": "0", - "timestamp": "2017-12-12T08:45:12.000Z", - "tx_id": "ac91efddd7bdd65ca55d559643507abea2627c48a01a74fae5cd65476a3057ab", + "timestamp": "2017-12-15T03:42:11.000Z", + "tx_id": "9897fdffd343cfbea7231dc5e9438a04d09931683ce555fdf3ab2b02be33fd3e", "type": 1, "version": 1 }, "signature_header": { - "nonce": "oMN8r7PaesDZoo9Qxk7CCpsL1rQVELXu" + "nonce": "7BNqK3bA8SPk5xmIi2HyeoQeVaJUqG5t" } } } diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_1.block b/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_1.block index 33c02951..5b87ac16 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_1.block and b/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_1.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_2.block b/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_2.block deleted file mode 100644 index c74e9dfc..00000000 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_2.block and /dev/null differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_2.block.json b/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_2.block.json deleted file mode 100644 index 9e82f9e9..00000000 --- a/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_2.block.json +++ /dev/null @@ -1 +0,0 @@ -*common.Block: error in PopulateTo for field data for message *common.Block: *common.BlockData: error in PopulateTo for slice field data at index 0 for message *common.BlockData: *common.Envelope: error in PopulateTo for field payload for message *common.Envelope: *common.Payload: error in PopulateTo for field data for message *common.Payload: decoding type 4 is unimplemented diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_2.block_payload.json b/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_2.block_payload.json deleted file mode 100644 index e69de29b..00000000 diff --git a/hyperledger_fabric/latest/solo/crypto-config.yaml b/hyperledger_fabric/latest/solo/crypto-config.yaml index 74e01beb..b5012309 100644 --- a/hyperledger_fabric/latest/solo/crypto-config.yaml +++ b/hyperledger_fabric/latest/solo/crypto-config.yaml @@ -90,4 +90,4 @@ PeerOrgs: Template: Count: 2 Users: - Count: 1 + Count: 1 \ No newline at end of file diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/ca/c0902f3171475183e0f7f31b02b1265dd0ae370ab384f845f78b31ac50ccb547_sk b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/ca/c0902f3171475183e0f7f31b02b1265dd0ae370ab384f845f78b31ac50ccb547_sk deleted file mode 100644 index 0f075a5d..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/ca/c0902f3171475183e0f7f31b02b1265dd0ae370ab384f845f78b31ac50ccb547_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgGg85tzDCH7Hv+gUp -AUemhcmCoi83YlO9a36QtL7NI9ihRANCAAQkODAAx//ZjRlF/oTEKWYixeofImY1 -OJ7AbOmzWLg0wxuY0T1EL/A/4qultSzcWJg64UGCgk2z7v1XTD1dEati ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem index 88512c41..a67bac7e 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw +MIICLzCCAdWgAwIBAgIQGXf5zEgjlejkE1rJW2znwDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowaTELMAkGA1UE BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFSKPRsXnXvaTTqRKjkTRYYoPjGg +TgXRAoMQwI+9AaLXTSL+AsApwlxedr+PJ+UgfBNcxey226YSZRJqLeiH/TajXzBd MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= +Af8wKQYDVR0OBCIEIPxyg8RiuCl5W+wOoXUqeRhWBcR2XF2JtWJ5qtJMQ3Y1MAoG +CCqGSM49BAMCA0gAMEUCIQCoRrlZYPh0Qnsp3Z9KitmTDkRqi6JyR4RLiOyfv8Tf +QgIgdHbFqXGTZ0HFQmknUFd5DD4TTltv8Ijmfm8J1skS4jc= -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/ca/fc7283c462b829795bec0ea1752a79185605c4765c5d89b56279aad24c437635_sk b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/ca/fc7283c462b829795bec0ea1752a79185605c4765c5d89b56279aad24c437635_sk new file mode 100644 index 00000000..daa42286 --- /dev/null +++ b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/ca/fc7283c462b829795bec0ea1752a79185605c4765c5d89b56279aad24c437635_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgetGqd8Qmc9zdl/uG +CaQM6HfODX8g95osPLVSLFUOfDOhRANCAARUij0bF5172k06kSo5E0WGKD4xoE4F +0QKDEMCPvQGi100i/gLAKcJcXna/jyflIHwTXMXsttumEmUSai3oh/02 +-----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem index 4fcbd842..cf214e86 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem @@ -1,13 +1,13 @@ -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem index 88512c41..a67bac7e 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw +MIICLzCCAdWgAwIBAgIQGXf5zEgjlejkE1rJW2znwDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowaTELMAkGA1UE BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFSKPRsXnXvaTTqRKjkTRYYoPjGg +TgXRAoMQwI+9AaLXTSL+AsApwlxedr+PJ+UgfBNcxey226YSZRJqLeiH/TajXzBd MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= +Af8wKQYDVR0OBCIEIPxyg8RiuCl5W+wOoXUqeRhWBcR2XF2JtWJ5qtJMQ3Y1MAoG +CCqGSM49BAMCA0gAMEUCIQCoRrlZYPh0Qnsp3Z9KitmTDkRqi6JyR4RLiOyfv8Tf +QgIgdHbFqXGTZ0HFQmknUFd5DD4TTltv8Ijmfm8J1skS4jc= -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem index 6870d748..8a20a601 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICNTCCAdugAwIBAgIQHoMqcBjAlAqH88coM/ju+DAKBggqhkjOPQQDAjBsMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xGjAYBgNVBAMTEXRsc2NhLmV4 -YW1wbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowbDELMAkG -A1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFu -Y2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5leGFt -cGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAypRNJjboZjHwjDIK+f -a78NE/5Gg8ykzR38c41Ctrqj6WNNFbJFdqExZq9/Srnux5IB22EnUzyWu3diWYKL -ucKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB -/wQFMAMBAf8wKQYDVR0OBCIEIMfQe3zAEQiIrAF4peC4kdG9C1Xn+AB6S2Zy4eR1 -g0SdMAoGCCqGSM49BAMCA0gAMEUCIQD5yjAmM0GKpVxUjUY2/IA7zfysPIpaCJyE -s5RG7lmdnAIgLoIWeF/QsfWWXVS7+waE2NVWwpCCgxjzGw+Pwj16Ojw= +MIICNTCCAdygAwIBAgIRAIraluPStFhVhErdZQdKCKAwCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTFaFw0yNzEyMTMwMzM1NTFaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASFJtvpC2hhcixEvOb+ +MmUanHX4012UJWFyvqGTVbZCbzFl0AoYnRD8k9ertlk4/blbHenEmp3NsPi1EsIU +wk5Go18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCBIOZQdPeK9CttWRRqT0NKiq7F6ZnKRFYxQUcpm +8W/B/zAKBggqhkjOPQQDAgNHADBEAiAak59AKmo2L5PFS0N+Z8LznnMnf+0MTKvn +I7jQL7Y7GQIgONKcYdoKwnc8OqGNo2KAywE2eMUJeLGiQKy0t502umQ= -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem index 4fcbd842..cf214e86 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem @@ -1,13 +1,13 @@ -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem index 88512c41..a67bac7e 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw +MIICLzCCAdWgAwIBAgIQGXf5zEgjlejkE1rJW2znwDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowaTELMAkGA1UE BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFSKPRsXnXvaTTqRKjkTRYYoPjGg +TgXRAoMQwI+9AaLXTSL+AsApwlxedr+PJ+UgfBNcxey226YSZRJqLeiH/TajXzBd MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= +Af8wKQYDVR0OBCIEIPxyg8RiuCl5W+wOoXUqeRhWBcR2XF2JtWJ5qtJMQ3Y1MAoG +CCqGSM49BAMCA0gAMEUCIQCoRrlZYPh0Qnsp3Z9KitmTDkRqi6JyR4RLiOyfv8Tf +QgIgdHbFqXGTZ0HFQmknUFd5DD4TTltv8Ijmfm8J1skS4jc= -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/7b66ccb4d35b4cf4a76d02d4af54bfe2a62dab4763bd3c3ba458944f42ec9881_sk b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/7b66ccb4d35b4cf4a76d02d4af54bfe2a62dab4763bd3c3ba458944f42ec9881_sk new file mode 100644 index 00000000..280dbf05 --- /dev/null +++ b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/7b66ccb4d35b4cf4a76d02d4af54bfe2a62dab4763bd3c3ba458944f42ec9881_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgUY4pybWYffYDXzaO +GugZDMqEf1ZHw8yafV0oElm2nEShRANCAASKSCk+2t1naYxgApYaO00a9p7kG1mm +J10/htNCJISPvTuUQ1cvzQO+iN96mLuMni4utkAdfakYtYWicAh06W6c +-----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/d80ee555fb204c63d83ff1b5969f32b66bf818b233fc7b129d548526c916334f_sk b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/d80ee555fb204c63d83ff1b5969f32b66bf818b233fc7b129d548526c916334f_sk deleted file mode 100644 index 5cfe8e40..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/d80ee555fb204c63d83ff1b5969f32b66bf818b233fc7b129d548526c916334f_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgj2ZEvYIinXbyMhi6 -Iwodl8amNxrcemmPU48TIiSlMWmhRANCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0F -gJoaHXccPZYZMtgCSKhNtV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqw ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem index f87a8e4f..3f678ae6 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem @@ -1,13 +1,13 @@ -----BEGIN CERTIFICATE----- -MIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw +MIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -hkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN -tV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE -+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q -XZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd +hkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv +zQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd +ibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv +zjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg= -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem index 6870d748..8a20a601 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICNTCCAdugAwIBAgIQHoMqcBjAlAqH88coM/ju+DAKBggqhkjOPQQDAjBsMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xGjAYBgNVBAMTEXRsc2NhLmV4 -YW1wbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowbDELMAkG -A1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFu -Y2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5leGFt -cGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAypRNJjboZjHwjDIK+f -a78NE/5Gg8ykzR38c41Ctrqj6WNNFbJFdqExZq9/Srnux5IB22EnUzyWu3diWYKL -ucKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB -/wQFMAMBAf8wKQYDVR0OBCIEIMfQe3zAEQiIrAF4peC4kdG9C1Xn+AB6S2Zy4eR1 -g0SdMAoGCCqGSM49BAMCA0gAMEUCIQD5yjAmM0GKpVxUjUY2/IA7zfysPIpaCJyE -s5RG7lmdnAIgLoIWeF/QsfWWXVS7+waE2NVWwpCCgxjzGw+Pwj16Ojw= +MIICNTCCAdygAwIBAgIRAIraluPStFhVhErdZQdKCKAwCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTFaFw0yNzEyMTMwMzM1NTFaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASFJtvpC2hhcixEvOb+ +MmUanHX4012UJWFyvqGTVbZCbzFl0AoYnRD8k9ertlk4/blbHenEmp3NsPi1EsIU +wk5Go18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCBIOZQdPeK9CttWRRqT0NKiq7F6ZnKRFYxQUcpm +8W/B/zAKBggqhkjOPQQDAgNHADBEAiAak59AKmo2L5PFS0N+Z8LznnMnf+0MTKvn +I7jQL7Y7GQIgONKcYdoKwnc8OqGNo2KAywE2eMUJeLGiQKy0t502umQ= -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt index 6870d748..8a20a601 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt +++ b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICNTCCAdugAwIBAgIQHoMqcBjAlAqH88coM/ju+DAKBggqhkjOPQQDAjBsMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xGjAYBgNVBAMTEXRsc2NhLmV4 -YW1wbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowbDELMAkG -A1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFu -Y2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5leGFt -cGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAypRNJjboZjHwjDIK+f -a78NE/5Gg8ykzR38c41Ctrqj6WNNFbJFdqExZq9/Srnux5IB22EnUzyWu3diWYKL -ucKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB -/wQFMAMBAf8wKQYDVR0OBCIEIMfQe3zAEQiIrAF4peC4kdG9C1Xn+AB6S2Zy4eR1 -g0SdMAoGCCqGSM49BAMCA0gAMEUCIQD5yjAmM0GKpVxUjUY2/IA7zfysPIpaCJyE -s5RG7lmdnAIgLoIWeF/QsfWWXVS7+waE2NVWwpCCgxjzGw+Pwj16Ojw= +MIICNTCCAdygAwIBAgIRAIraluPStFhVhErdZQdKCKAwCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTFaFw0yNzEyMTMwMzM1NTFaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASFJtvpC2hhcixEvOb+ +MmUanHX4012UJWFyvqGTVbZCbzFl0AoYnRD8k9ertlk4/blbHenEmp3NsPi1EsIU +wk5Go18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCBIOZQdPeK9CttWRRqT0NKiq7F6ZnKRFYxQUcpm +8W/B/zAKBggqhkjOPQQDAgNHADBEAiAak59AKmo2L5PFS0N+Z8LznnMnf+0MTKvn +I7jQL7Y7GQIgONKcYdoKwnc8OqGNo2KAywE2eMUJeLGiQKy0t502umQ= -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt index 8a1cfdf5..e39af147 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt +++ b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICWjCCAgCgAwIBAgIRAKUsdiZ8J9ZIfXDpjuDoJVYwCgYIKoZIzj0EAwIwbDEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l -eGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFaMFgxCzAJ -BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh -bmNpc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0C -AQYIKoZIzj0DAQcDQgAEPKJSJo2A4DeFBKQPsWLscYEpreqIR1Y3wnCEW4wt4pY2 -OmycEH939+c3fjK0j6250m6o+Z6Rc/MaIfAH6ozBOKOBljCBkzAOBgNVHQ8BAf8E -BAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQC -MAAwKwYDVR0jBCQwIoAgx9B7fMARCIisAXil4LiR0b0LVef4AHpLZnLh5HWDRJ0w -JwYDVR0RBCAwHoITb3JkZXJlci5leGFtcGxlLmNvbYIHb3JkZXJlcjAKBggqhkjO -PQQDAgNIADBFAiEAmSM70DtmcE3BdNArEzUSrynq777NVGPYAHTmP0BfgaUCIGww -VeFhQRY5V07tiqgqSE0c4MgV86Se+ehr8WewZ36Q +MIICWDCCAf+gAwIBAgIQFjfAn0YbmDp6qvwPkfU90DAKBggqhkjOPQQDAjBsMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xGjAYBgNVBAMTEXRsc2NhLmV4 +YW1wbGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkG +A1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFu +Y2lzY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIB +BggqhkjOPQMBBwNCAARlQGUZuih8P5mJlVD7bpgr9b2OOOwyyv0vrr5cWULxzXOr +LFapHVekrKu4jpkSio+0JszBYaEEj1jlEvdYkz9uo4GWMIGTMA4GA1UdDwEB/wQE +AwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDAYDVR0TAQH/BAIw +ADArBgNVHSMEJDAigCBIOZQdPeK9CttWRRqT0NKiq7F6ZnKRFYxQUcpm8W/B/zAn +BgNVHREEIDAeghNvcmRlcmVyLmV4YW1wbGUuY29tggdvcmRlcmVyMAoGCCqGSM49 +BAMCA0cAMEQCIFHmu2MMP0fW5I+jsfEvFQDk3pEdH0B32+S4eiDeeCxYAiBNxbKS +ZexvERIJStMggnWYEwy228a6woJjEqJbwQkVmA== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key index 949af837..d997a49b 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key +++ b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key @@ -1,5 +1,5 @@ -----BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQguwmm4vRao1I/RqPO -PnawUqU9+tvXe+hR+UthSQNOsb6hRANCAAQ8olImjYDgN4UEpA+xYuxxgSmt6ohH -VjfCcIRbjC3iljY6bJwQf3f35zd+MrSPrbnSbqj5npFz8xoh8AfqjME4 +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgk8SHbC3DIr8W7Uvj +/3UnbefLx3nYCBqhES3yMak4l5ahRANCAARlQGUZuih8P5mJlVD7bpgr9b2OOOwy +yv0vrr5cWULxzXOrLFapHVekrKu4jpkSio+0JszBYaEEj1jlEvdYkz9u -----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/tlsca/4839941d3de2bd0adb56451a93d0d2a2abb17a667291158c5051ca66f16fc1ff_sk b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/tlsca/4839941d3de2bd0adb56451a93d0d2a2abb17a667291158c5051ca66f16fc1ff_sk new file mode 100644 index 00000000..0d5956e0 --- /dev/null +++ b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/tlsca/4839941d3de2bd0adb56451a93d0d2a2abb17a667291158c5051ca66f16fc1ff_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg8fdjvl5qKrVhe58v +8xw9AfSqtnYFfJVcJ/IZ2zqHflKhRANCAASFJtvpC2hhcixEvOb+MmUanHX4012U +JWFyvqGTVbZCbzFl0AoYnRD8k9ertlk4/blbHenEmp3NsPi1EsIUwk5G +-----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/tlsca/c7d07b7cc0110888ac0178a5e0b891d1bd0b55e7f8007a4b6672e1e47583449d_sk b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/tlsca/c7d07b7cc0110888ac0178a5e0b891d1bd0b55e7f8007a4b6672e1e47583449d_sk deleted file mode 100644 index 9916f54e..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/tlsca/c7d07b7cc0110888ac0178a5e0b891d1bd0b55e7f8007a4b6672e1e47583449d_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgUrdBqPngsWf1d73+ -+jVR9HFfaXKf2l1O/3DadFpZoXqhRANCAAQMqUTSY26GYx8IwyCvn2u/DRP+RoPM -pM0d/HONQra6o+ljTRWyRXahMWavf0q57seSAdthJ1M8lrt3YlmCi7nC ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem index 6870d748..8a20a601 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICNTCCAdugAwIBAgIQHoMqcBjAlAqH88coM/ju+DAKBggqhkjOPQQDAjBsMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xGjAYBgNVBAMTEXRsc2NhLmV4 -YW1wbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowbDELMAkG -A1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFu -Y2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5leGFt -cGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAypRNJjboZjHwjDIK+f -a78NE/5Gg8ykzR38c41Ctrqj6WNNFbJFdqExZq9/Srnux5IB22EnUzyWu3diWYKL -ucKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB -/wQFMAMBAf8wKQYDVR0OBCIEIMfQe3zAEQiIrAF4peC4kdG9C1Xn+AB6S2Zy4eR1 -g0SdMAoGCCqGSM49BAMCA0gAMEUCIQD5yjAmM0GKpVxUjUY2/IA7zfysPIpaCJyE -s5RG7lmdnAIgLoIWeF/QsfWWXVS7+waE2NVWwpCCgxjzGw+Pwj16Ojw= +MIICNTCCAdygAwIBAgIRAIraluPStFhVhErdZQdKCKAwCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTFaFw0yNzEyMTMwMzM1NTFaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASFJtvpC2hhcixEvOb+ +MmUanHX4012UJWFyvqGTVbZCbzFl0AoYnRD8k9ertlk4/blbHenEmp3NsPi1EsIU +wk5Go18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCBIOZQdPeK9CttWRRqT0NKiq7F6ZnKRFYxQUcpm +8W/B/zAKBggqhkjOPQQDAgNHADBEAiAak59AKmo2L5PFS0N+Z8LznnMnf+0MTKvn +I7jQL7Y7GQIgONKcYdoKwnc8OqGNo2KAywE2eMUJeLGiQKy0t502umQ= -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem index 4fcbd842..cf214e86 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem @@ -1,13 +1,13 @@ -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem index 88512c41..a67bac7e 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw +MIICLzCCAdWgAwIBAgIQGXf5zEgjlejkE1rJW2znwDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowaTELMAkGA1UE BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFSKPRsXnXvaTTqRKjkTRYYoPjGg +TgXRAoMQwI+9AaLXTSL+AsApwlxedr+PJ+UgfBNcxey226YSZRJqLeiH/TajXzBd MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= +Af8wKQYDVR0OBCIEIPxyg8RiuCl5W+wOoXUqeRhWBcR2XF2JtWJ5qtJMQ3Y1MAoG +CCqGSM49BAMCA0gAMEUCIQCoRrlZYPh0Qnsp3Z9KitmTDkRqi6JyR4RLiOyfv8Tf +QgIgdHbFqXGTZ0HFQmknUFd5DD4TTltv8Ijmfm8J1skS4jc= -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/1ba50aa68f5290d02dc21c1a3a0817d100aace0c5a8223af8fbe9744f14b4a12_sk b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/1ba50aa68f5290d02dc21c1a3a0817d100aace0c5a8223af8fbe9744f14b4a12_sk deleted file mode 100644 index 1f218e4c..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/1ba50aa68f5290d02dc21c1a3a0817d100aace0c5a8223af8fbe9744f14b4a12_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgRi7pnp4yu2bHfSJb -CnU0UCdQQkV7AWTJEUiMEnqMfr2hRANCAAR8IZbV91vHQ7n8ikz98zZqaPfMhMDt -hv53tIjS+hfyTWasZWn41pq2E8Nno3cnlHC+bn6zg25U6wPS5+edkv8L ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/6e88e3fadf1ba813377215af7bf976ff9e5772c7503ac2a477c2bd1a506fdb4b_sk b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/6e88e3fadf1ba813377215af7bf976ff9e5772c7503ac2a477c2bd1a506fdb4b_sk new file mode 100644 index 00000000..3ce01f2c --- /dev/null +++ b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/6e88e3fadf1ba813377215af7bf976ff9e5772c7503ac2a477c2bd1a506fdb4b_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgCC4D/lq5kDYsijsJ +g8SQyRHmyewojic8Kfc3ADjs0WmhRANCAARPEZhC3BZT6O4fVY+bprysl4U5BICZ +B9mhQbnBaDqzEJnXSdf0WUMRJnbNN3rSvmxOFcmUCdmEeaLSBLkH71JE +-----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem index 4fcbd842..cf214e86 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem @@ -1,13 +1,13 @@ -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem index 6870d748..8a20a601 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICNTCCAdugAwIBAgIQHoMqcBjAlAqH88coM/ju+DAKBggqhkjOPQQDAjBsMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xGjAYBgNVBAMTEXRsc2NhLmV4 -YW1wbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowbDELMAkG -A1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFu -Y2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5leGFt -cGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAypRNJjboZjHwjDIK+f -a78NE/5Gg8ykzR38c41Ctrqj6WNNFbJFdqExZq9/Srnux5IB22EnUzyWu3diWYKL -ucKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB -/wQFMAMBAf8wKQYDVR0OBCIEIMfQe3zAEQiIrAF4peC4kdG9C1Xn+AB6S2Zy4eR1 -g0SdMAoGCCqGSM49BAMCA0gAMEUCIQD5yjAmM0GKpVxUjUY2/IA7zfysPIpaCJyE -s5RG7lmdnAIgLoIWeF/QsfWWXVS7+waE2NVWwpCCgxjzGw+Pwj16Ojw= +MIICNTCCAdygAwIBAgIRAIraluPStFhVhErdZQdKCKAwCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTFaFw0yNzEyMTMwMzM1NTFaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASFJtvpC2hhcixEvOb+ +MmUanHX4012UJWFyvqGTVbZCbzFl0AoYnRD8k9ertlk4/blbHenEmp3NsPi1EsIU +wk5Go18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCBIOZQdPeK9CttWRRqT0NKiq7F6ZnKRFYxQUcpm +8W/B/zAKBggqhkjOPQQDAgNHADBEAiAak59AKmo2L5PFS0N+Z8LznnMnf+0MTKvn +I7jQL7Y7GQIgONKcYdoKwnc8OqGNo2KAywE2eMUJeLGiQKy0t502umQ= -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt index 6870d748..8a20a601 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt +++ b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICNTCCAdugAwIBAgIQHoMqcBjAlAqH88coM/ju+DAKBggqhkjOPQQDAjBsMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xGjAYBgNVBAMTEXRsc2NhLmV4 -YW1wbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowbDELMAkG -A1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFu -Y2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5leGFt -cGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAypRNJjboZjHwjDIK+f -a78NE/5Gg8ykzR38c41Ctrqj6WNNFbJFdqExZq9/Srnux5IB22EnUzyWu3diWYKL -ucKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB -/wQFMAMBAf8wKQYDVR0OBCIEIMfQe3zAEQiIrAF4peC4kdG9C1Xn+AB6S2Zy4eR1 -g0SdMAoGCCqGSM49BAMCA0gAMEUCIQD5yjAmM0GKpVxUjUY2/IA7zfysPIpaCJyE -s5RG7lmdnAIgLoIWeF/QsfWWXVS7+waE2NVWwpCCgxjzGw+Pwj16Ojw= +MIICNTCCAdygAwIBAgIRAIraluPStFhVhErdZQdKCKAwCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTFaFw0yNzEyMTMwMzM1NTFaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASFJtvpC2hhcixEvOb+ +MmUanHX4012UJWFyvqGTVbZCbzFl0AoYnRD8k9ertlk4/blbHenEmp3NsPi1EsIU +wk5Go18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCBIOZQdPeK9CttWRRqT0NKiq7F6ZnKRFYxQUcpm +8W/B/zAKBggqhkjOPQQDAgNHADBEAiAak59AKmo2L5PFS0N+Z8LznnMnf+0MTKvn +I7jQL7Y7GQIgONKcYdoKwnc8OqGNo2KAywE2eMUJeLGiQKy0t502umQ= -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.crt b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.crt index c5d9fd5e..f84fd916 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.crt +++ b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.crt @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICLTCCAdOgAwIBAgIRALXY9QNpeuMII+QhF25TgsgwCgYIKoZIzj0EAwIwbDEL +MIICLTCCAdOgAwIBAgIRAKxe9940zgaKFpJBYYzhwAEwCgYIKoZIzj0EAwIwbDEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l -eGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTJaFw0yNzEyMTAwODQwMTJaMFYxCzAJ +eGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTJaFw0yNzEyMTMwMzM1NTJaMFYxCzAJ BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh bmNpc2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEG -CCqGSM49AwEHA0IABDW3JQldrSpdF93XPi7jHWX+dE8KYmbTr4ATRkBy/TtcN8XP -BSlX3NjspEHxvtt1/J5BB3HsqpcMruH26VaqfTOjbDBqMA4GA1UdDwEB/wQEAwIF +CCqGSM49AwEHA0IABJONtDnN4SIO811cuRoEUlJm+na1/3O8nOBFGkkC4mhq6VHa +CS42BsJnu60191OTiIq1gZ7aCP1adXHCMnaJiZCjbDBqMA4GA1UdDwEB/wQEAwIF oDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDAYDVR0TAQH/BAIwADAr -BgNVHSMEJDAigCDH0Ht8wBEIiKwBeKXguJHRvQtV5/gAektmcuHkdYNEnTAKBggq -hkjOPQQDAgNIADBFAiEAteNHiuzmO8s5dSPW1jR+5iwt27YsEcGet59XdPH1GGYC -IDrTl6ZOuZsdlX7t6rPeDuwyYYH3kfbY0uvSFVDXCr9q +BgNVHSMEJDAigCBIOZQdPeK9CttWRRqT0NKiq7F6ZnKRFYxQUcpm8W/B/zAKBggq +hkjOPQQDAgNIADBFAiEA47/KJdLTTx5U1A9np3LW4DNRfSt809UKcqqv6mbA/FMC +ICNGLpiTFswlzX701/X+QMWLubK1NREuUGhOWLjdJf2/ -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.key b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.key index f0f0849b..f409dee9 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.key +++ b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.key @@ -1,5 +1,5 @@ -----BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgXa0Vqnw6Zh9MmksK -KTFC84OuL/QkkhhrFHWPeONu+BGhRANCAAQ1tyUJXa0qXRfd1z4u4x1l/nRPCmJm -06+AE0ZAcv07XDfFzwUpV9zY7KRB8b7bdfyeQQdx7KqXDK7h9ulWqn0z +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg2NdcWA+pHmmZv93E +wEbzIFcVcdwPvPhf9bW3tOXxso6hRANCAASTjbQ5zeEiDvNdXLkaBFJSZvp2tf9z +vJzgRRpJAuJoaulR2gkuNgbCZ7utNfdTk4iKtYGe2gj9WnVxwjJ2iYmQ -----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/ca/b0af6913fa6520e575d26a9e7d4cc4bc2414eaa6f4c5f0d8b18e93c5cbac1356_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/ca/b0af6913fa6520e575d26a9e7d4cc4bc2414eaa6f4c5f0d8b18e93c5cbac1356_sk new file mode 100644 index 00000000..ca38bc13 --- /dev/null +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/ca/b0af6913fa6520e575d26a9e7d4cc4bc2414eaa6f4c5f0d8b18e93c5cbac1356_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg/hQCNXTURCws6Y8x +7xU9hkICpNGFOr0lz7SECcEPe4ehRANCAAQbDLJ8MsfTt0VWQS/EkMY4oZ69Rxpg +emFm+HNXvwwFdXAgQYgQ2TtmzzH53HqLAgos4aZfGr9ap3iouzqQXJm+ +-----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem index aecb08f5..8966670f 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -xEFWkMtGbgY= +MIICQzCCAemgAwIBAgIQShjAwe+6sxoSMZ8UrYKOcTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +GwyyfDLH07dFVkEvxJDGOKGevUcaYHphZvhzV78MBXVwIEGIENk7Zs8x+dx6iwIK +LOGmXxq/Wqd4qLs6kFyZvqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgsK9pE/plIOV10mqefUzE +vCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAL7xXrYD1fkzcpxi +yyZhFfEvMDWCoUicQw2b+c3GQ6OuAiA0KtNuH4yS4+c13W9Lsd28XNQK88FkwB2J +QR9yhJE7rA== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/ca/f91fe9656fb6df5cd2abe7ef9e2b1b3a51ffc56420a4255eac41210ce788a957_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/ca/f91fe9656fb6df5cd2abe7ef9e2b1b3a51ffc56420a4255eac41210ce788a957_sk deleted file mode 100644 index 7374937a..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/ca/f91fe9656fb6df5cd2abe7ef9e2b1b3a51ffc56420a4255eac41210ce788a957_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgyiXCTCgRR/Mo5NNb -ELwatT9PnCHETFPUHhNyr1KJgRahRANCAAQptXIMIEYHpzQYZ/V7mc0ah8CFZ+H0 -yGPB7N9PzXKO46MB6qObuyEVywYrJ5J+CM/yjp8IMa289AzOdxb1f3mm ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem index 669ae793..f58a0b8a 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem index aecb08f5..8966670f 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -xEFWkMtGbgY= +MIICQzCCAemgAwIBAgIQShjAwe+6sxoSMZ8UrYKOcTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +GwyyfDLH07dFVkEvxJDGOKGevUcaYHphZvhzV78MBXVwIEGIENk7Zs8x+dx6iwIK +LOGmXxq/Wqd4qLs6kFyZvqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgsK9pE/plIOV10mqefUzE +vCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAL7xXrYD1fkzcpxi +yyZhFfEvMDWCoUicQw2b+c3GQ6OuAiA0KtNuH4yS4+c13W9Lsd28XNQK88FkwB2J +QR9yhJE7rA== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem index faf200a4..088d3179 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICSTCCAe+gAwIBAgIQazTwt2lw8up75ZCS+FEQNjAKBggqhkjOPQQDAjB2MQsw +MIICSTCCAe+gAwIBAgIQd9L7ZTRMx5qwZq0OWUexRTAKBggqhkjOPQQDAjB2MQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz -Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQw -MTBaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1 +NTBaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D -AQcDQgAEqev3/hVngUEghI/a3uWAcZw70b5XgWnwIK8wSDzCXbjoWdl96jU5NgA1 -5VuW5R2SuW6tn619JoyX9qpWB0bbFKNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud -JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgLBITM2rxLHn5 -jPWyFrJjOjwaebeaftyo2rdiKcmj7fswCgYIKoZIzj0EAwIDSAAwRQIhANphCDZS -TSVL/GZt7T4eZGhTXVK1rmfcM3Jc80E21WnWAiB7SECg8Q44LiM0w/XPW0RIuWls -0ELmKJ1uH+7cv7JrWQ== +AQcDQgAEatZ1xxcXD88u4AGnATyEHl4bl9EPI3eArC70F+Ud8+LmTnWwkR3/EeNO +bx2aPLSb/veZN58uvmP2vt97hbKJsaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrmFBsgWuBCL9 +sltlKW2J2Kp/PrGCfRaoeGvpN9XE6nowCgYIKoZIzj0EAwIDSAAwRQIhAI0c40a6 +fvn8WFB78vLnmTrQM9C8efB8NvB75oXV40zmAiAUCwzT43KGiGJiPCsvYOXipO1f +F+YnMQRgW2AXBiUhFQ== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem index 669ae793..f58a0b8a 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem index aecb08f5..8966670f 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -xEFWkMtGbgY= +MIICQzCCAemgAwIBAgIQShjAwe+6sxoSMZ8UrYKOcTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +GwyyfDLH07dFVkEvxJDGOKGevUcaYHphZvhzV78MBXVwIEGIENk7Zs8x+dx6iwIK +LOGmXxq/Wqd4qLs6kFyZvqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgsK9pE/plIOV10mqefUzE +vCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAL7xXrYD1fkzcpxi +yyZhFfEvMDWCoUicQw2b+c3GQ6OuAiA0KtNuH4yS4+c13W9Lsd28XNQK88FkwB2J +QR9yhJE7rA== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/1f64a31e60fa9feb8eb0d39b3afc64052ab01dd537fa582cc4606521ea8a73cb_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/1f64a31e60fa9feb8eb0d39b3afc64052ab01dd537fa582cc4606521ea8a73cb_sk deleted file mode 100644 index 97961dd4..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/1f64a31e60fa9feb8eb0d39b3afc64052ab01dd537fa582cc4606521ea8a73cb_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgMlpBlnpzSCX5YqEt -pTHRNukxv7t7tfLm/dkH5+jm1xmhRANCAAS20+MLe6nVDvuMqddggDta7ZisugAq -o9oKP2l2gLDe9H0iZ/9zx2CdpEcG9T52DE3l6fX6fi2SrQMVqZnzjdam ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/50203a4fdb7002209dcb62769caf43f4c91dbce4d006baff1f0e1a395f2b123a_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/50203a4fdb7002209dcb62769caf43f4c91dbce4d006baff1f0e1a395f2b123a_sk new file mode 100644 index 00000000..5f553149 --- /dev/null +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/50203a4fdb7002209dcb62769caf43f4c91dbce4d006baff1f0e1a395f2b123a_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgfiNvWwBmdbBoUFrA +Zlwf1tiEgwZEhhEiEhYAsaRARbOhRANCAATppu6P40up9FuOhA7DmTUxPPSRALFM +tyUKaHEYu40Dj5UmLZy6TfQe6WBV5Xc1BGEEOlC30Q/137jhcY8t43Qp +-----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem index 90cf90a2..8a207674 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQfxCgdHnKWSB1ck7NCIf+4jAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEttPjC3up1Q77jKnXYIA7Wu2YrLoAKqPa -Cj9pdoCw3vR9Imf/c8dgnaRHBvU+dgxN5en1+n4tkq0DFamZ843WpqNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAKrUoMIb -2WwA9949iLHY+idNaQnD9S2wuUoml0JPNu/NAiBQlxXukEi49c9p1+nROwn0IuOM -3NSyqtTUGH26cyVUgw== +MIICGjCCAcCgAwIBAgIRAIlXD+JMST62kcDisx8EdZ4wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOmm7o/jS6n0W46EDsOZNTE89JEAsUy3 +JQpocRi7jQOPlSYtnLpN9B7pYFXldzUEYQQ6ULfRD/XfuOFxjy3jdCmjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0gAMEUCIQCaq7Zt +YoGZKFTwKxKIh0iFWj+K1p/LsaPjOd2X4ALGSAIgVHS1jGmxQaam88SeKViUck5+ +IDNK9dYOsiKBpmoLVDw= -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem index faf200a4..088d3179 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICSTCCAe+gAwIBAgIQazTwt2lw8up75ZCS+FEQNjAKBggqhkjOPQQDAjB2MQsw +MIICSTCCAe+gAwIBAgIQd9L7ZTRMx5qwZq0OWUexRTAKBggqhkjOPQQDAjB2MQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz -Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQw -MTBaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1 +NTBaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D -AQcDQgAEqev3/hVngUEghI/a3uWAcZw70b5XgWnwIK8wSDzCXbjoWdl96jU5NgA1 -5VuW5R2SuW6tn619JoyX9qpWB0bbFKNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud -JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgLBITM2rxLHn5 -jPWyFrJjOjwaebeaftyo2rdiKcmj7fswCgYIKoZIzj0EAwIDSAAwRQIhANphCDZS -TSVL/GZt7T4eZGhTXVK1rmfcM3Jc80E21WnWAiB7SECg8Q44LiM0w/XPW0RIuWls -0ELmKJ1uH+7cv7JrWQ== +AQcDQgAEatZ1xxcXD88u4AGnATyEHl4bl9EPI3eArC70F+Ud8+LmTnWwkR3/EeNO +bx2aPLSb/veZN58uvmP2vt97hbKJsaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrmFBsgWuBCL9 +sltlKW2J2Kp/PrGCfRaoeGvpN9XE6nowCgYIKoZIzj0EAwIDSAAwRQIhAI0c40a6 +fvn8WFB78vLnmTrQM9C8efB8NvB75oXV40zmAiAUCwzT43KGiGJiPCsvYOXipO1f +F+YnMQRgW2AXBiUhFQ== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt index faf200a4..088d3179 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICSTCCAe+gAwIBAgIQazTwt2lw8up75ZCS+FEQNjAKBggqhkjOPQQDAjB2MQsw +MIICSTCCAe+gAwIBAgIQd9L7ZTRMx5qwZq0OWUexRTAKBggqhkjOPQQDAjB2MQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz -Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQw -MTBaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1 +NTBaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D -AQcDQgAEqev3/hVngUEghI/a3uWAcZw70b5XgWnwIK8wSDzCXbjoWdl96jU5NgA1 -5VuW5R2SuW6tn619JoyX9qpWB0bbFKNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud -JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgLBITM2rxLHn5 -jPWyFrJjOjwaebeaftyo2rdiKcmj7fswCgYIKoZIzj0EAwIDSAAwRQIhANphCDZS -TSVL/GZt7T4eZGhTXVK1rmfcM3Jc80E21WnWAiB7SECg8Q44LiM0w/XPW0RIuWls -0ELmKJ1uH+7cv7JrWQ== +AQcDQgAEatZ1xxcXD88u4AGnATyEHl4bl9EPI3eArC70F+Ud8+LmTnWwkR3/EeNO +bx2aPLSb/veZN58uvmP2vt97hbKJsaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrmFBsgWuBCL9 +sltlKW2J2Kp/PrGCfRaoeGvpN9XE6nowCgYIKoZIzj0EAwIDSAAwRQIhAI0c40a6 +fvn8WFB78vLnmTrQM9C8efB8NvB75oXV40zmAiAUCwzT43KGiGJiPCsvYOXipO1f +F+YnMQRgW2AXBiUhFQ== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt index f379dfc8..b2cae374 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICZjCCAg2gAwIBAgIQM2ghBhJxrpVodJnfkGZB2zAKBggqhkjOPQQDAjB2MQsw +MIICZzCCAg2gAwIBAgIQXyHG+/jPFDYDwXkqNtdn6TAKBggqhkjOPQQDAjB2MQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz -Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQw -MTBaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1 +NTBaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH Ew1TYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29t -MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAESdvJOA6tQtYhEhw+eCnu88SJHZDW -Dpl0Jzcw/QYDBIh1GvfPbgJcd0XHS13HEZGhNG6F707ELh0ioq9LcCCDNaOBlzCB +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEkvfN0nGuZFtVFDGeA57pgh7Uz+nU +VVEMagcmqvtBpz9VC1K3cQ+K6tmVAtBZjBH7PTyVwNNbqFVqnagjJy+T7aOBlzCB lDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMC -MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgLBITM2rxLHn5jPWyFrJjOjwaebea -ftyo2rdiKcmj7fswKAYDVR0RBCEwH4IWcGVlcjAub3JnMS5leGFtcGxlLmNvbYIF -cGVlcjAwCgYIKoZIzj0EAwIDRwAwRAIgK9HV6WEBYxTS5k258qFW3/OCbyNnE3A/ -gH5DldWppJ4CIHsykK7AE09h2OBwo2jr9CVNRawoipohYjvAx0/oYW13 +MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrmFBsgWuBCL9sltlKW2J2Kp/PrGC +fRaoeGvpN9XE6nowKAYDVR0RBCEwH4IWcGVlcjAub3JnMS5leGFtcGxlLmNvbYIF +cGVlcjAwCgYIKoZIzj0EAwIDSAAwRQIhAO2Js0pQUVLgJmqcw+mgliLiuYYqFhG+ +KLUutHriuIGPAiBlLXRVQb9bQGb79Rxr5A8CfiVzBnAHAqkY4WEUP/57Ug== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key index cf6572da..27ed7f89 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key @@ -1,5 +1,5 @@ -----BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgeL1i1/biIVZSgENK -94BaXWNKBb/146KUYGjPWJMpQZyhRANCAARJ28k4Dq1C1iESHD54Ke7zxIkdkNYO -mXQnNzD9BgMEiHUa989uAlx3RcdLXccRkaE0boXvTsQuHSKir0twIIM1 +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQghWnzp/a05zJev7sW +XOMyVVuyUsevLOSrE4v9NLSHDGuhRANCAASS983Sca5kW1UUMZ4DnumCHtTP6dRV +UQxqByaq+0GnP1ULUrdxD4rq2ZUC0FmMEfs9PJXA01uoVWqdqCMnL5Pt -----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem index 669ae793..f58a0b8a 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem index aecb08f5..8966670f 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -xEFWkMtGbgY= +MIICQzCCAemgAwIBAgIQShjAwe+6sxoSMZ8UrYKOcTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +GwyyfDLH07dFVkEvxJDGOKGevUcaYHphZvhzV78MBXVwIEGIENk7Zs8x+dx6iwIK +LOGmXxq/Wqd4qLs6kFyZvqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgsK9pE/plIOV10mqefUzE +vCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAL7xXrYD1fkzcpxi +yyZhFfEvMDWCoUicQw2b+c3GQ6OuAiA0KtNuH4yS4+c13W9Lsd28XNQK88FkwB2J +QR9yhJE7rA== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/479b4c8dc4eb957c60f7c47088cc6b658dfc22e8a08d71d6d814fcbe446e008e_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/479b4c8dc4eb957c60f7c47088cc6b658dfc22e8a08d71d6d814fcbe446e008e_sk new file mode 100644 index 00000000..66ce0bb8 --- /dev/null +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/479b4c8dc4eb957c60f7c47088cc6b658dfc22e8a08d71d6d814fcbe446e008e_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgnO1I1OCEgg+yA5Ow +SVi0oWN/kvNxI4nf9jqOaZT+/wChRANCAARLRNwj22OhsfJQdnohHRnyPPXZFZ1V +ZnpPPozk+ziGoElAnYBJ6X4j0r/rvTMX3LOTvcQp1ZwG/1vqLMgdEoys +-----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/f26b44e699a297ffede316a333041ea6ed870dc5382374e6bb8ba1fc41d2853d_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/f26b44e699a297ffede316a333041ea6ed870dc5382374e6bb8ba1fc41d2853d_sk deleted file mode 100644 index 438848f9..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/f26b44e699a297ffede316a333041ea6ed870dc5382374e6bb8ba1fc41d2853d_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgrjdSZjzoVq89+rsb -asICTo8ELf4BgQh+oNU281TtgxyhRANCAAR22xYMSkfuFCcq2c0YL0ughWWcWOz2 -4jnafqLDSHBN174oHdMHbfUwbLWsCGKqp3HpGKvxqMOw2ZmHUe5zhRS+ ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem index aa258bcc..7d3dffea 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALADzPPE97iyHtSxn9RqjfgwCgYIKoZIzj0EAwIwczEL +MIICGTCCAcCgAwIBAgIRAO38AsvEET4X4UdGTcfkuBAwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHbbFgxKR+4UJyrZzRgvS6CFZZxY7Pbi -Odp+osNIcE3Xvigd0wdt9TBstawIYqqncekYq/Gow7DZmYdR7nOFFL6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPkf6WVvtt9c -0qvn754rGzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQC7onwy -Xg1MdE8XzzNqF0O4QX5DPfr1EaZNMNriGihkKwIgDrlllaiu+/kP74QuITuz6eUr -Zs7vWf/TFL+lCFpVqNE= +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEtE3CPbY6Gx8lB2eiEdGfI89dkVnVVm +ek8+jOT7OIagSUCdgEnpfiPSv+u9Mxfcs5O9xCnVnAb/W+osyB0SjKyjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIGs/atHe +NRJz0ZdqxmBLESiPzTltvP3PYRMfcbyf+gOjAiBNQLb1+p/ClpFFbJnmFLJo6OFw +Uegb+PKNM4s4W1Egog== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem index faf200a4..088d3179 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICSTCCAe+gAwIBAgIQazTwt2lw8up75ZCS+FEQNjAKBggqhkjOPQQDAjB2MQsw +MIICSTCCAe+gAwIBAgIQd9L7ZTRMx5qwZq0OWUexRTAKBggqhkjOPQQDAjB2MQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz -Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQw -MTBaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1 +NTBaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D -AQcDQgAEqev3/hVngUEghI/a3uWAcZw70b5XgWnwIK8wSDzCXbjoWdl96jU5NgA1 -5VuW5R2SuW6tn619JoyX9qpWB0bbFKNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud -JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgLBITM2rxLHn5 -jPWyFrJjOjwaebeaftyo2rdiKcmj7fswCgYIKoZIzj0EAwIDSAAwRQIhANphCDZS -TSVL/GZt7T4eZGhTXVK1rmfcM3Jc80E21WnWAiB7SECg8Q44LiM0w/XPW0RIuWls -0ELmKJ1uH+7cv7JrWQ== +AQcDQgAEatZ1xxcXD88u4AGnATyEHl4bl9EPI3eArC70F+Ud8+LmTnWwkR3/EeNO +bx2aPLSb/veZN58uvmP2vt97hbKJsaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrmFBsgWuBCL9 +sltlKW2J2Kp/PrGCfRaoeGvpN9XE6nowCgYIKoZIzj0EAwIDSAAwRQIhAI0c40a6 +fvn8WFB78vLnmTrQM9C8efB8NvB75oXV40zmAiAUCwzT43KGiGJiPCsvYOXipO1f +F+YnMQRgW2AXBiUhFQ== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt index faf200a4..088d3179 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICSTCCAe+gAwIBAgIQazTwt2lw8up75ZCS+FEQNjAKBggqhkjOPQQDAjB2MQsw +MIICSTCCAe+gAwIBAgIQd9L7ZTRMx5qwZq0OWUexRTAKBggqhkjOPQQDAjB2MQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz -Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQw -MTBaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1 +NTBaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D -AQcDQgAEqev3/hVngUEghI/a3uWAcZw70b5XgWnwIK8wSDzCXbjoWdl96jU5NgA1 -5VuW5R2SuW6tn619JoyX9qpWB0bbFKNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud -JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgLBITM2rxLHn5 -jPWyFrJjOjwaebeaftyo2rdiKcmj7fswCgYIKoZIzj0EAwIDSAAwRQIhANphCDZS -TSVL/GZt7T4eZGhTXVK1rmfcM3Jc80E21WnWAiB7SECg8Q44LiM0w/XPW0RIuWls -0ELmKJ1uH+7cv7JrWQ== +AQcDQgAEatZ1xxcXD88u4AGnATyEHl4bl9EPI3eArC70F+Ud8+LmTnWwkR3/EeNO +bx2aPLSb/veZN58uvmP2vt97hbKJsaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrmFBsgWuBCL9 +sltlKW2J2Kp/PrGCfRaoeGvpN9XE6nowCgYIKoZIzj0EAwIDSAAwRQIhAI0c40a6 +fvn8WFB78vLnmTrQM9C8efB8NvB75oXV40zmAiAUCwzT43KGiGJiPCsvYOXipO1f +F+YnMQRgW2AXBiUhFQ== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt index cc8afd7b..c68b978f 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICZzCCAg2gAwIBAgIQG/IZTYdSebzagbVMVztLWzAKBggqhkjOPQQDAjB2MQsw +MIICZzCCAg2gAwIBAgIQHUx8uwox6DWRzVf5bRNA2zAKBggqhkjOPQQDAjB2MQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz -Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQw -MTBaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1 +NTBaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH Ew1TYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcxLmV4YW1wbGUuY29t -MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEzjQqQC5oyg+3XtjX5whtCmcVuHrc -HxRW/I9JJAliAl72cH3rg2Al05r+Ed7Su7Y4NOXI+FI/e108Nzd2sfkFE6OBlzCB +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEJxU+AXB54dH5LWlvvNUybv+BF+D6 +rPc0lyGEUo/Tm0d/U48M7+dbyQbrK/AJb+rbdV82OZuwgRZ3UDH1LL13yKOBlzCB lDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMC -MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgLBITM2rxLHn5jPWyFrJjOjwaebea -ftyo2rdiKcmj7fswKAYDVR0RBCEwH4IWcGVlcjEub3JnMS5leGFtcGxlLmNvbYIF -cGVlcjEwCgYIKoZIzj0EAwIDSAAwRQIhALtZNG972lhOUAyYQPNB7QJbsJ//LJHw -t9iaRd8MlTa5AiBiDte9ehE7nlZSDPWoVsDzqp9KchvRogYaJWAdGgTszw== +MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrmFBsgWuBCL9sltlKW2J2Kp/PrGC +fRaoeGvpN9XE6nowKAYDVR0RBCEwH4IWcGVlcjEub3JnMS5leGFtcGxlLmNvbYIF +cGVlcjEwCgYIKoZIzj0EAwIDSAAwRQIhAMpAPhKcEaTERZxZxURigPQioarSX/tS +r326M3PHhr2/AiAyHFALyehCZWr+ZVx8C1Wkm8TkFnC31qMh+5q74GxPiQ== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key index 8e50a008..21acd84f 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key @@ -1,5 +1,5 @@ -----BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgC2oANgo9xpwUYZ6m -ZQRppotinf4CQ++Ybh98PoQlFQehRANCAATONCpALmjKD7de2NfnCG0KZxW4etwf -FFb8j0kkCWICXvZwfeuDYCXTmv4R3tK7tjg05cj4Uj97XTw3N3ax+QUT +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgkZyVzv4Cl/tUT6mZ +A/aZ5fNFLRJ7orSwPnwBt9gbjBKhRANCAAQnFT4BcHnh0fktaW+81TJu/4EX4Pqs +9zSXIYRSj9ObR39Tjwzv51vJBusr8Alv6tt1XzY5m7CBFndQMfUsvXfI -----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/tlsca/2c1213336af12c79f98cf5b216b2633a3c1a79b79a7edca8dab76229c9a3edfb_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/tlsca/2c1213336af12c79f98cf5b216b2633a3c1a79b79a7edca8dab76229c9a3edfb_sk deleted file mode 100644 index 7812f310..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/tlsca/2c1213336af12c79f98cf5b216b2633a3c1a79b79a7edca8dab76229c9a3edfb_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgenTsi1nr1tS1PZpx -3dOyOzrwfB6EQZlCW15gc/TtoZWhRANCAASp6/f+FWeBQSCEj9re5YBxnDvRvleB -afAgrzBIPMJduOhZ2X3qNTk2ADXlW5blHZK5bq2frX0mjJf2qlYHRtsU ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/tlsca/ae6141b205ae0422fdb25b65296d89d8aa7f3eb1827d16a8786be937d5c4ea7a_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/tlsca/ae6141b205ae0422fdb25b65296d89d8aa7f3eb1827d16a8786be937d5c4ea7a_sk new file mode 100644 index 00000000..1f9da1d8 --- /dev/null +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/tlsca/ae6141b205ae0422fdb25b65296d89d8aa7f3eb1827d16a8786be937d5c4ea7a_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg8CbHXMvau221ECJM +Yb20T4LgolIsXZCDd/LrNFgryS+hRANCAARq1nXHFxcPzy7gAacBPIQeXhuX0Q8j +d4CsLvQX5R3z4uZOdbCRHf8R405vHZo8tJv+95k3ny6+Y/a+33uFsomx +-----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem index faf200a4..088d3179 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICSTCCAe+gAwIBAgIQazTwt2lw8up75ZCS+FEQNjAKBggqhkjOPQQDAjB2MQsw +MIICSTCCAe+gAwIBAgIQd9L7ZTRMx5qwZq0OWUexRTAKBggqhkjOPQQDAjB2MQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz -Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQw -MTBaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1 +NTBaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D -AQcDQgAEqev3/hVngUEghI/a3uWAcZw70b5XgWnwIK8wSDzCXbjoWdl96jU5NgA1 -5VuW5R2SuW6tn619JoyX9qpWB0bbFKNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud -JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgLBITM2rxLHn5 -jPWyFrJjOjwaebeaftyo2rdiKcmj7fswCgYIKoZIzj0EAwIDSAAwRQIhANphCDZS -TSVL/GZt7T4eZGhTXVK1rmfcM3Jc80E21WnWAiB7SECg8Q44LiM0w/XPW0RIuWls -0ELmKJ1uH+7cv7JrWQ== +AQcDQgAEatZ1xxcXD88u4AGnATyEHl4bl9EPI3eArC70F+Ud8+LmTnWwkR3/EeNO +bx2aPLSb/veZN58uvmP2vt97hbKJsaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrmFBsgWuBCL9 +sltlKW2J2Kp/PrGCfRaoeGvpN9XE6nowCgYIKoZIzj0EAwIDSAAwRQIhAI0c40a6 +fvn8WFB78vLnmTrQM9C8efB8NvB75oXV40zmAiAUCwzT43KGiGJiPCsvYOXipO1f +F+YnMQRgW2AXBiUhFQ== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem index 669ae793..f58a0b8a 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem index aecb08f5..8966670f 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -xEFWkMtGbgY= +MIICQzCCAemgAwIBAgIQShjAwe+6sxoSMZ8UrYKOcTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +GwyyfDLH07dFVkEvxJDGOKGevUcaYHphZvhzV78MBXVwIEGIENk7Zs8x+dx6iwIK +LOGmXxq/Wqd4qLs6kFyZvqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgsK9pE/plIOV10mqefUzE +vCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAL7xXrYD1fkzcpxi +yyZhFfEvMDWCoUicQw2b+c3GQ6OuAiA0KtNuH4yS4+c13W9Lsd28XNQK88FkwB2J +QR9yhJE7rA== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/336913729b507efa4f84180e2423aa690afd926cf543fa043e7c68962d02d8ff_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/336913729b507efa4f84180e2423aa690afd926cf543fa043e7c68962d02d8ff_sk new file mode 100644 index 00000000..e5f9c050 --- /dev/null +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/336913729b507efa4f84180e2423aa690afd926cf543fa043e7c68962d02d8ff_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgFo/VBj869PDMgcU2 +HT1fk05skVBaHFqYuQbi+/T5NG6hRANCAASyPEqTa5AtAGIYuxiHMOduzz1ejbof +gJKJL6UHFAoBUpu97WGe0AFJUxfDf1QQTUApxS9pK7pDi3dSKAe8J2Z7 +-----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/e9a3897be92a5fd5c1bb2cfae77a8198d59c40b6f4323dfbf1af0cf3133ee9f4_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/e9a3897be92a5fd5c1bb2cfae77a8198d59c40b6f4323dfbf1af0cf3133ee9f4_sk deleted file mode 100644 index 2a492d5f..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/e9a3897be92a5fd5c1bb2cfae77a8198d59c40b6f4323dfbf1af0cf3133ee9f4_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg0POeJj3ZLxvNRVSS -bpIwBgGv0tKFndcu72RUzZzNVVOhRANCAATBm0VGAghMGJL7iTZtOcRub9Q7hGJO -+G+nJ0KCs8XQC0EYx3vqACJodXP5fZz4hpGkwuZc8ChxMTGjtvxzDzut ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem index 669ae793..f58a0b8a 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem index faf200a4..088d3179 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICSTCCAe+gAwIBAgIQazTwt2lw8up75ZCS+FEQNjAKBggqhkjOPQQDAjB2MQsw +MIICSTCCAe+gAwIBAgIQd9L7ZTRMx5qwZq0OWUexRTAKBggqhkjOPQQDAjB2MQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz -Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQw -MTBaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1 +NTBaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D -AQcDQgAEqev3/hVngUEghI/a3uWAcZw70b5XgWnwIK8wSDzCXbjoWdl96jU5NgA1 -5VuW5R2SuW6tn619JoyX9qpWB0bbFKNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud -JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgLBITM2rxLHn5 -jPWyFrJjOjwaebeaftyo2rdiKcmj7fswCgYIKoZIzj0EAwIDSAAwRQIhANphCDZS -TSVL/GZt7T4eZGhTXVK1rmfcM3Jc80E21WnWAiB7SECg8Q44LiM0w/XPW0RIuWls -0ELmKJ1uH+7cv7JrWQ== +AQcDQgAEatZ1xxcXD88u4AGnATyEHl4bl9EPI3eArC70F+Ud8+LmTnWwkR3/EeNO +bx2aPLSb/veZN58uvmP2vt97hbKJsaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrmFBsgWuBCL9 +sltlKW2J2Kp/PrGCfRaoeGvpN9XE6nowCgYIKoZIzj0EAwIDSAAwRQIhAI0c40a6 +fvn8WFB78vLnmTrQM9C8efB8NvB75oXV40zmAiAUCwzT43KGiGJiPCsvYOXipO1f +F+YnMQRgW2AXBiUhFQ== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt index faf200a4..088d3179 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICSTCCAe+gAwIBAgIQazTwt2lw8up75ZCS+FEQNjAKBggqhkjOPQQDAjB2MQsw +MIICSTCCAe+gAwIBAgIQd9L7ZTRMx5qwZq0OWUexRTAKBggqhkjOPQQDAjB2MQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz -Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQw -MTBaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1 +NTBaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D -AQcDQgAEqev3/hVngUEghI/a3uWAcZw70b5XgWnwIK8wSDzCXbjoWdl96jU5NgA1 -5VuW5R2SuW6tn619JoyX9qpWB0bbFKNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud -JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgLBITM2rxLHn5 -jPWyFrJjOjwaebeaftyo2rdiKcmj7fswCgYIKoZIzj0EAwIDSAAwRQIhANphCDZS -TSVL/GZt7T4eZGhTXVK1rmfcM3Jc80E21WnWAiB7SECg8Q44LiM0w/XPW0RIuWls -0ELmKJ1uH+7cv7JrWQ== +AQcDQgAEatZ1xxcXD88u4AGnATyEHl4bl9EPI3eArC70F+Ud8+LmTnWwkR3/EeNO +bx2aPLSb/veZN58uvmP2vt97hbKJsaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrmFBsgWuBCL9 +sltlKW2J2Kp/PrGCfRaoeGvpN9XE6nowCgYIKoZIzj0EAwIDSAAwRQIhAI0c40a6 +fvn8WFB78vLnmTrQM9C8efB8NvB75oXV40zmAiAUCwzT43KGiGJiPCsvYOXipO1f +F+YnMQRgW2AXBiUhFQ== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.crt b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.crt index 060107b5..2a821514 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.crt +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.crt @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICOzCCAeKgAwIBAgIRAPZTnG81aO9JTgDIQBqo7AkwCgYIKoZIzj0EAwIwdjEL +MIICPDCCAeKgAwIBAgIRAJIj/zujDoRtjyynDruf7FYwCgYIKoZIzj0EAwIwdjEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDExWhcNMjcxMjEwMDg0 -MDExWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +c2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMz +NTUwWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE BxMNU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJzv4CqZq1AGzxkA2aFfL+G1Pntk -DpJh/mBRteDpZvTRYSvHDOToXybwAUJBYBnByD79/cvQaeCPw+wURemLM6WjbDBq +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBxK2tyt0gUofYnzcfYcds5gaQkF +e2qXfPwT/ltx01avV9vi25KuybK20TJfe0rVLRQh4dzmHLEBmB6iHWVXmh+jbDBq MA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAsEhMzavEsefmM9bIWsmM6PBp5t5p+ -3Kjat2IpyaPt+zAKBggqhkjOPQQDAgNHADBEAiB8QN/eaWiaOxPEtzs5sAJIHBiu -o7EXjEFR82v6mpyQqAIgXzLUR9BmVSSAMYPQSvew2NKlKtFtMn9Nd//4OKeJ+5g= +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCCuYUGyBa4EIv2yW2UpbYnYqn8+sYJ9 +Fqh4a+k31cTqejAKBggqhkjOPQQDAgNIADBFAiEA3I3EDuRMjWReD2cAngMV151z +b3jkjlzh/GwD/WUh2dwCIH48JYSw91zeiq3ae0CyzPpMzklQUAWbvrsOClPkhHSp -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.key b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.key index 86ca9545..60a36bcc 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.key +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.key @@ -1,5 +1,5 @@ -----BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgICfCV6/31NxEQXGb -za5cvBFphOC4/jHkTJ/SFECmPiahRANCAASc7+AqmatQBs8ZANmhXy/htT57ZA6S -Yf5gUbXg6Wb00WErxwzk6F8m8AFCQWAZwcg+/f3L0Gngj8PsFEXpizOl +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgs5r9d4BfBEbxUhWU +gdvKBqLJcdDtaCN+STLWjIa3a8yhRANCAAQcStrcrdIFKH2J83H2HHbOYGkJBXtq +l3z8E/5bcdNWr1fb4tuSrsmyttEyX3tK1S0UIeHc5hyxAZgeoh1lV5of -----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem index 7eecc8fd..799dc3a8 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQWNdn0J6q3nigI5HZLeB5TjAKBggqhkjOPQQDAjBzMQsw +MIICGTCCAb+gAwIBAgIQIjkyHWLeWZfFySr5Bk/boTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZVc2VyMUBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEM4fqVCdyg0757kC5giZNjFVyU+pXxGB0 -rthb2PBjdW8c1u7oaiiiQCytaOUIWiL33w40FkU5k+pBrSyWa+ug9qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDRwAwRAIgMj25/qvg -dp9HzielUYC1TZPYgNgzObAzLtHXXlVZnfUCICDYqfMQS7zjWGYFTDU1H9PKBk2C -ay/nx2qXy/cKIL+N +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEa+iyG2u/WjpZDO26gy9bExdodK6D40Ok +zu4gDfkyC+De3EMevtJ31MB/i6oOognIEtIl8kW90n3frvlR2RQ5GKNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsK9pE/plIOV1 +0mqefUzEvCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAN0GtSxY +jvoqfQKUbUZodYhl8pTOzKwCQzQzTyv2eBZgAiAdFY75U6IvTKQcNy6NYSTWrBnx +QaTD2Sf6ql013Jkg5w== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem index aecb08f5..8966670f 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -xEFWkMtGbgY= +MIICQzCCAemgAwIBAgIQShjAwe+6sxoSMZ8UrYKOcTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +GwyyfDLH07dFVkEvxJDGOKGevUcaYHphZvhzV78MBXVwIEGIENk7Zs8x+dx6iwIK +LOGmXxq/Wqd4qLs6kFyZvqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgsK9pE/plIOV10mqefUzE +vCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAL7xXrYD1fkzcpxi +yyZhFfEvMDWCoUicQw2b+c3GQ6OuAiA0KtNuH4yS4+c13W9Lsd28XNQK88FkwB2J +QR9yhJE7rA== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/057177cfdbafd88a83da241338557e68a11fb1539f3a02100bda2cf57c6b95e4_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/057177cfdbafd88a83da241338557e68a11fb1539f3a02100bda2cf57c6b95e4_sk deleted file mode 100644 index 917f168d..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/057177cfdbafd88a83da241338557e68a11fb1539f3a02100bda2cf57c6b95e4_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgKlad/S9dn3HagB+c -zbVmwoOcXgayFmSh6bN8Br5cjyqhRANCAAQzh+pUJ3KDTvnuQLmCJk2MVXJT6lfE -YHSu2FvY8GN1bxzW7uhqKKJALK1o5QhaIvffDjQWRTmT6kGtLJZr66D2 ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/838115dac593e2e9c93afa1fd09b01b021c03eea5f309105c8dd9388a45375a9_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/838115dac593e2e9c93afa1fd09b01b021c03eea5f309105c8dd9388a45375a9_sk new file mode 100644 index 00000000..237c00a5 --- /dev/null +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/838115dac593e2e9c93afa1fd09b01b021c03eea5f309105c8dd9388a45375a9_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgUkJwbWNXOAz5E5ao +e77FB0hkYpM4CtWm7qf3PeZobWmhRANCAARr6LIba79aOlkM7bqDL1sTF2h0roPj +Q6TO7iAN+TIL4N7cQx6+0nfUwH+Lqg6iCcgS0iXyRb3Sfd+u+VHZFDkY +-----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem index 7eecc8fd..799dc3a8 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQWNdn0J6q3nigI5HZLeB5TjAKBggqhkjOPQQDAjBzMQsw +MIICGTCCAb+gAwIBAgIQIjkyHWLeWZfFySr5Bk/boTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZVc2VyMUBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEM4fqVCdyg0757kC5giZNjFVyU+pXxGB0 -rthb2PBjdW8c1u7oaiiiQCytaOUIWiL33w40FkU5k+pBrSyWa+ug9qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDRwAwRAIgMj25/qvg -dp9HzielUYC1TZPYgNgzObAzLtHXXlVZnfUCICDYqfMQS7zjWGYFTDU1H9PKBk2C -ay/nx2qXy/cKIL+N +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEa+iyG2u/WjpZDO26gy9bExdodK6D40Ok +zu4gDfkyC+De3EMevtJ31MB/i6oOognIEtIl8kW90n3frvlR2RQ5GKNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsK9pE/plIOV1 +0mqefUzEvCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAN0GtSxY +jvoqfQKUbUZodYhl8pTOzKwCQzQzTyv2eBZgAiAdFY75U6IvTKQcNy6NYSTWrBnx +QaTD2Sf6ql013Jkg5w== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem index faf200a4..088d3179 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICSTCCAe+gAwIBAgIQazTwt2lw8up75ZCS+FEQNjAKBggqhkjOPQQDAjB2MQsw +MIICSTCCAe+gAwIBAgIQd9L7ZTRMx5qwZq0OWUexRTAKBggqhkjOPQQDAjB2MQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz -Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQw -MTBaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1 +NTBaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D -AQcDQgAEqev3/hVngUEghI/a3uWAcZw70b5XgWnwIK8wSDzCXbjoWdl96jU5NgA1 -5VuW5R2SuW6tn619JoyX9qpWB0bbFKNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud -JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgLBITM2rxLHn5 -jPWyFrJjOjwaebeaftyo2rdiKcmj7fswCgYIKoZIzj0EAwIDSAAwRQIhANphCDZS -TSVL/GZt7T4eZGhTXVK1rmfcM3Jc80E21WnWAiB7SECg8Q44LiM0w/XPW0RIuWls -0ELmKJ1uH+7cv7JrWQ== +AQcDQgAEatZ1xxcXD88u4AGnATyEHl4bl9EPI3eArC70F+Ud8+LmTnWwkR3/EeNO +bx2aPLSb/veZN58uvmP2vt97hbKJsaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrmFBsgWuBCL9 +sltlKW2J2Kp/PrGCfRaoeGvpN9XE6nowCgYIKoZIzj0EAwIDSAAwRQIhAI0c40a6 +fvn8WFB78vLnmTrQM9C8efB8NvB75oXV40zmAiAUCwzT43KGiGJiPCsvYOXipO1f +F+YnMQRgW2AXBiUhFQ== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt index faf200a4..088d3179 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICSTCCAe+gAwIBAgIQazTwt2lw8up75ZCS+FEQNjAKBggqhkjOPQQDAjB2MQsw +MIICSTCCAe+gAwIBAgIQd9L7ZTRMx5qwZq0OWUexRTAKBggqhkjOPQQDAjB2MQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz -Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQw -MTBaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1 +NTBaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D -AQcDQgAEqev3/hVngUEghI/a3uWAcZw70b5XgWnwIK8wSDzCXbjoWdl96jU5NgA1 -5VuW5R2SuW6tn619JoyX9qpWB0bbFKNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud -JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgLBITM2rxLHn5 -jPWyFrJjOjwaebeaftyo2rdiKcmj7fswCgYIKoZIzj0EAwIDSAAwRQIhANphCDZS -TSVL/GZt7T4eZGhTXVK1rmfcM3Jc80E21WnWAiB7SECg8Q44LiM0w/XPW0RIuWls -0ELmKJ1uH+7cv7JrWQ== +AQcDQgAEatZ1xxcXD88u4AGnATyEHl4bl9EPI3eArC70F+Ud8+LmTnWwkR3/EeNO +bx2aPLSb/veZN58uvmP2vt97hbKJsaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrmFBsgWuBCL9 +sltlKW2J2Kp/PrGCfRaoeGvpN9XE6nowCgYIKoZIzj0EAwIDSAAwRQIhAI0c40a6 +fvn8WFB78vLnmTrQM9C8efB8NvB75oXV40zmAiAUCwzT43KGiGJiPCsvYOXipO1f +F+YnMQRgW2AXBiUhFQ== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.crt b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.crt index 91d2eef1..546d7326 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.crt +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.crt @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICOzCCAeGgAwIBAgIQF3btqaLdgkHQbifJLoiJgzAKBggqhkjOPQQDAjB2MQsw +MIICOzCCAeGgAwIBAgIQV8+cq+17DVCtaykWNYDFpTAKBggqhkjOPQQDAjB2MQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz -Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQw -MTBaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1 +NTBaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH Ew1TYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZVc2VyMUBvcmcxLmV4YW1wbGUuY29t -MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEVaz492wFJOzEf0E0HoMpFq9n787G -kavSQYYRBrtsNz+nmHDQiI0UADhbUOXKygM6SfIEU1dh18Xai4FlKof286NsMGow +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEC6pa6kVQvJQ5ZcMFxQJSBK4PlCAN +YTw99X0QtvQ2t4UhRfzKm6tCDI2pevf4MPBl3fj6NdHPMpeYjIpT1FT25aNsMGow DgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICwSEzNq8Sx5+Yz1shayYzo8Gnm3mn7c -qNq3YinJo+37MAoGCCqGSM49BAMCA0gAMEUCIQDyuOKrN8UbSyjMtf29kvYcV+qX -9+jGzXBKWP2UoSqxOgIgfaN120CwunxJKR/hh4/weMT4qBSMBuERmyKj7aQ5QMk= +BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK5hQbIFrgQi/bJbZSltidiqfz6xgn0W +qHhr6TfVxOp6MAoGCCqGSM49BAMCA0gAMEUCIQC2z/z1kny++dea+leetXFlL7ui +D6KfTxFIeo6eHEI/dQIgJA+hhqvW/UdJSOHi9XZD0m7xhbWe/UTdBOFNAnzyFRw= -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.key b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.key index 1cba6b46..4db73231 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.key +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.key @@ -1,5 +1,5 @@ -----BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgFWa/uUA5W7n1m57G -2tUptkyW3Z1/pGCyBYJphd5FCsehRANCAARVrPj3bAUk7MR/QTQegykWr2fvzsaR -q9JBhhEGu2w3P6eYcNCIjRQAOFtQ5crKAzpJ8gRTV2HXxdqLgWUqh/bz +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgBE3YjRWdZgYB2QpV +6nIuJ0R50dPmfb7TpCeyZPcp1gehRANCAAQLqlrqRVC8lDllwwXFAlIErg+UIA1h +PD31fRC29Da3hSFF/Mqbq0IMjal69/gw8GXd+Po10c8yl5iMilPUVPbl -----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/ca/1d341cc6ca983495d3e8e90b34536c49e2a4527d0324fd8b3433988f66a9263d_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/ca/1d341cc6ca983495d3e8e90b34536c49e2a4527d0324fd8b3433988f66a9263d_sk deleted file mode 100644 index d6b4a6eb..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/ca/1d341cc6ca983495d3e8e90b34536c49e2a4527d0324fd8b3433988f66a9263d_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQga8353rUzm1IlG3Eo -p47g23fAs0Z8qD6PqijiC6/Gfk+hRANCAASfWkuf+kQVqcDXGBDS+q/JkR/zpJxr -FRkbgF3RB5DMaemJGVdC1qnC02msjDwnBkb7x8KfITJ1tyJJLt8XswUt ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/ca/24aa572ac97ab17b6285c328a795d805ffea4e98833e9e00fd7828e79fe66abb_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/ca/24aa572ac97ab17b6285c328a795d805ffea4e98833e9e00fd7828e79fe66abb_sk new file mode 100644 index 00000000..f56f45dd --- /dev/null +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/ca/24aa572ac97ab17b6285c328a795d805ffea4e98833e9e00fd7828e79fe66abb_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQga6DrwGgeqKetCtEC +ahHz1gkCTzZRzzNN0S2FD1/gDfOhRANCAATxq7SbR49UJdNoKuyNGUECicL7WYad +Ld6wsBdXBSC0xyATOKYSf2WCUGtZW9dqTrMUsbhL0RkxXGV7bp1HNEnl +-----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem index bb998828..4a59b79f 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -+8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -cNvAXU8LlQ== +MIICQzCCAeqgAwIBAgIRAMt+4ybOK1r7B8eavLVTMBUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPGrtJtHj1Ql02gq7I0ZQQKJwvtZhp0t3rCwF1cFILTHIBM4phJ/ZYJQa1lb12pO +sxSxuEvRGTFcZXtunUc0SeWjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICSqVyrJerF7YoXDKKeV +2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCIB+psiek7FqP18l1 +3s2anbtfpiGTHbAnm2BihpD9sRPjAiAIvsdyfn+nb2bCQBK6sodbO+LxSkuZulkP +oMR3yCH/eA== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem index f02a6e18..bb04508a 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem index bb998828..4a59b79f 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -+8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -cNvAXU8LlQ== +MIICQzCCAeqgAwIBAgIRAMt+4ybOK1r7B8eavLVTMBUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPGrtJtHj1Ql02gq7I0ZQQKJwvtZhp0t3rCwF1cFILTHIBM4phJ/ZYJQa1lb12pO +sxSxuEvRGTFcZXtunUc0SeWjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICSqVyrJerF7YoXDKKeV +2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCIB+psiek7FqP18l1 +3s2anbtfpiGTHbAnm2BihpD9sRPjAiAIvsdyfn+nb2bCQBK6sodbO+LxSkuZulkP +oMR3yCH/eA== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem index d7d7fc15..41b1feed 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICSTCCAfCgAwIBAgIRAKG3jaV57ZzRMcMbd4dIkY4wCgYIKoZIzj0EAwIwdjEL +MIICSTCCAfCgAwIBAgIRAPHXueVprPPU2x/R3iB+je0wCgYIKoZIzj0EAwIwdjEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDExWhcNMjcxMjEwMDg0 -MDExWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMz +NTUxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABHIA+jgUUfWK7qdh0U6DpZsIFax0BKYdpWvDzcS7GWwOWGAGrSOLGUyl -011sweuJRKeHODptQLnm5+WnpoIz2lajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICDjZQo5BEMZ -1Xo0xkARJ81Eop/WBQxKI/haq7qeMvtDMAoGCCqGSM49BAMCA0cAMEQCIFm2UXGS -J0L5+WH8zCE4z/MEHjRy7dxy9xjRfCqohqbhAiAz1ya+Y+MjZKvlNL0pJr93om8F -Gz51d8wGoDcLN/OKNQ== +AwEHA0IABCQ+Nrt34nb2VCDax6+fgEkm4nqp7n5hcBca6zYyp4eDWeFhoFklLuGd +6lmc5UifFKnEOx8mvkokj/2cEEJdSSCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOI44BD1KUDs +ay179ANNPkac86xhV6jSmNEwm7GamhJGMAoGCCqGSM49BAMCA0cAMEQCIHPeQKw3 +N9JTcpnePsUPs/7sXwoMmNPV5E2bbxM3pudAAiB54oWNKtRZvg5eQuzwdgfHX69t +pAsV/ClqwBqhk09GqQ== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem index f02a6e18..bb04508a 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem index bb998828..4a59b79f 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -+8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -cNvAXU8LlQ== +MIICQzCCAeqgAwIBAgIRAMt+4ybOK1r7B8eavLVTMBUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPGrtJtHj1Ql02gq7I0ZQQKJwvtZhp0t3rCwF1cFILTHIBM4phJ/ZYJQa1lb12pO +sxSxuEvRGTFcZXtunUc0SeWjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICSqVyrJerF7YoXDKKeV +2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCIB+psiek7FqP18l1 +3s2anbtfpiGTHbAnm2BihpD9sRPjAiAIvsdyfn+nb2bCQBK6sodbO+LxSkuZulkP +oMR3yCH/eA== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/0d72122dd3c3cb47ccef4e6f2224db4239e468efc7bd28335bf91cf5c27dad7e_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/0d72122dd3c3cb47ccef4e6f2224db4239e468efc7bd28335bf91cf5c27dad7e_sk new file mode 100644 index 00000000..3bff187c --- /dev/null +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/0d72122dd3c3cb47ccef4e6f2224db4239e468efc7bd28335bf91cf5c27dad7e_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgEdrGlBE7mbal2Y3R +MtjsLnGowa9LA3i6T9rfS+qXpw6hRANCAARSn/9UoTJ3hCLqn48h8QVJqQGfV6Is +w9D2H1yLV5/br2ebxlgRsdBFz9tjWiK4wQ3kjsyNKqljh1AR3nwHyeir +-----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/43855652a2914cfa652549fc0c7fd62a22a0816284e298130b24d124466cba4e_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/43855652a2914cfa652549fc0c7fd62a22a0816284e298130b24d124466cba4e_sk deleted file mode 100644 index d94a96fa..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/43855652a2914cfa652549fc0c7fd62a22a0816284e298130b24d124466cba4e_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgP71oxoO7aTUWQfX7 -P19NNVTqGdMI9taA7+uQvWAWGouhRANCAAS+8737Ni1GPSIYXn2Yb+FqHQ+79GgV -96J/5x1+ZP+Z4DcerlzxXBm9wOt30s5bOGluFVY9IT76Kpa4E241lznm ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem index b41ff799..d2cdbe7f 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQHUKqjkG4EzqFzYBhVKiDXDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEvvO9+zYtRj0iGF59mG/hah0Pu/RoFfei -f+cdfmT/meA3Hq5c8VwZvcDrd9LOWzhpbhVWPSE++iqWuBNuNZc55qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgYyekaRBc -HJDyS9hMK2kIbliGQhn65H8LUHIDlt22I8ECIBg0+i2f6Oc4x1ME19m5p5oSf2n8 -iyI6uwCYclK0dU1/ +MIICGTCCAcCgAwIBAgIRAL3NzKek8hEVtKQG033nrA0wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABFKf/1ShMneEIuqfjyHxBUmpAZ9XoizD +0PYfXItXn9uvZ5vGWBGx0EXP22NaIrjBDeSOzI0qqWOHUBHefAfJ6KujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCICpmK2/d +duNwsmfdFxvEOOjUejsdtnE3KAnUx/kgAab7AiB+CrG8fUMqQAzKC7pBOY2USIYc +WI7/XhL+fOOqr3SNYw== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem index d7d7fc15..41b1feed 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICSTCCAfCgAwIBAgIRAKG3jaV57ZzRMcMbd4dIkY4wCgYIKoZIzj0EAwIwdjEL +MIICSTCCAfCgAwIBAgIRAPHXueVprPPU2x/R3iB+je0wCgYIKoZIzj0EAwIwdjEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDExWhcNMjcxMjEwMDg0 -MDExWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMz +NTUxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABHIA+jgUUfWK7qdh0U6DpZsIFax0BKYdpWvDzcS7GWwOWGAGrSOLGUyl -011sweuJRKeHODptQLnm5+WnpoIz2lajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICDjZQo5BEMZ -1Xo0xkARJ81Eop/WBQxKI/haq7qeMvtDMAoGCCqGSM49BAMCA0cAMEQCIFm2UXGS -J0L5+WH8zCE4z/MEHjRy7dxy9xjRfCqohqbhAiAz1ya+Y+MjZKvlNL0pJr93om8F -Gz51d8wGoDcLN/OKNQ== +AwEHA0IABCQ+Nrt34nb2VCDax6+fgEkm4nqp7n5hcBca6zYyp4eDWeFhoFklLuGd +6lmc5UifFKnEOx8mvkokj/2cEEJdSSCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOI44BD1KUDs +ay179ANNPkac86xhV6jSmNEwm7GamhJGMAoGCCqGSM49BAMCA0cAMEQCIHPeQKw3 +N9JTcpnePsUPs/7sXwoMmNPV5E2bbxM3pudAAiB54oWNKtRZvg5eQuzwdgfHX69t +pAsV/ClqwBqhk09GqQ== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt index d7d7fc15..41b1feed 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICSTCCAfCgAwIBAgIRAKG3jaV57ZzRMcMbd4dIkY4wCgYIKoZIzj0EAwIwdjEL +MIICSTCCAfCgAwIBAgIRAPHXueVprPPU2x/R3iB+je0wCgYIKoZIzj0EAwIwdjEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDExWhcNMjcxMjEwMDg0 -MDExWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMz +NTUxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABHIA+jgUUfWK7qdh0U6DpZsIFax0BKYdpWvDzcS7GWwOWGAGrSOLGUyl -011sweuJRKeHODptQLnm5+WnpoIz2lajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICDjZQo5BEMZ -1Xo0xkARJ81Eop/WBQxKI/haq7qeMvtDMAoGCCqGSM49BAMCA0cAMEQCIFm2UXGS -J0L5+WH8zCE4z/MEHjRy7dxy9xjRfCqohqbhAiAz1ya+Y+MjZKvlNL0pJr93om8F -Gz51d8wGoDcLN/OKNQ== +AwEHA0IABCQ+Nrt34nb2VCDax6+fgEkm4nqp7n5hcBca6zYyp4eDWeFhoFklLuGd +6lmc5UifFKnEOx8mvkokj/2cEEJdSSCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOI44BD1KUDs +ay179ANNPkac86xhV6jSmNEwm7GamhJGMAoGCCqGSM49BAMCA0cAMEQCIHPeQKw3 +N9JTcpnePsUPs/7sXwoMmNPV5E2bbxM3pudAAiB54oWNKtRZvg5eQuzwdgfHX69t +pAsV/ClqwBqhk09GqQ== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt index c31f61d4..967323aa 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICZzCCAg2gAwIBAgIQOayyrSU+QVSoJdS8DiosWTAKBggqhkjOPQQDAjB2MQsw +MIICZjCCAg2gAwIBAgIQA1C1lOSiBgEItCECMECTlzAKBggqhkjOPQQDAjB2MQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz -Y2Eub3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQw -MTFaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Y2Eub3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTFaFw0yNzEyMTMwMzM1 +NTFaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH Ew1TYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29t -MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEcF2PzX48j9wZ/tm5/3R+LwivDDLg -hqmxqhT8BtqykyA/op7ZlW0aabZFo8gG6mURgx8LCxh55k5KLHJGoP5gH6OBlzCB +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEjb1BEAPJJ4jmGyhGkJIDrlWuDDmm +8AJ6xIxI5IAvakLOYHcWzAnydj+3FWfjMFLAXEWxLDN0qeF5HUR767hDAaOBlzCB lDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMC -MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgIONlCjkEQxnVejTGQBEnzUSin9YF -DEoj+Fqrup4y+0MwKAYDVR0RBCEwH4IWcGVlcjAub3JnMi5leGFtcGxlLmNvbYIF -cGVlcjAwCgYIKoZIzj0EAwIDSAAwRQIhAPwMHA7M7sa+k3VrNnD/X7AIglmSqT/o -yo0K55eDfm7hAiANkBKX3JWvtB2dow+arQfAtPaegYWcT1iyq0clduXklw== +MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg4jjgEPUpQOxrLXv0A00+RpzzrGFX +qNKY0TCbsZqaEkYwKAYDVR0RBCEwH4IWcGVlcjAub3JnMi5leGFtcGxlLmNvbYIF +cGVlcjAwCgYIKoZIzj0EAwIDRwAwRAIgWwPsQrKwjWoAHksBfamrgHK4nEwLFOGg +IO+2F216jI4CIAfe2VrBpcZLtCOpibAhf8GxvZdINL5MZKjBc49ST2x1 -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key index d95007d3..a85cd785 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key @@ -1,5 +1,5 @@ -----BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgpo0eYTuQuLJ5Zs6y -jXKGU1DfEqx/6KWmN97r5qf823OhRANCAARwXY/NfjyP3Bn+2bn/dH4vCK8MMuCG -qbGqFPwG2rKTID+intmVbRpptkWjyAbqZRGDHwsLGHnmTkosckag/mAf +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgMYweMMSH5vlpOC1F +ecreK+PX9gpCG6vBLfj2hFMoqQChRANCAASNvUEQA8kniOYbKEaQkgOuVa4MOabw +AnrEjEjkgC9qQs5gdxbMCfJ2P7cVZ+MwUsBcRbEsM3Sp4XkdRHvruEMB -----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem index f02a6e18..bb04508a 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem index bb998828..4a59b79f 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -+8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -cNvAXU8LlQ== +MIICQzCCAeqgAwIBAgIRAMt+4ybOK1r7B8eavLVTMBUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPGrtJtHj1Ql02gq7I0ZQQKJwvtZhp0t3rCwF1cFILTHIBM4phJ/ZYJQa1lb12pO +sxSxuEvRGTFcZXtunUc0SeWjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICSqVyrJerF7YoXDKKeV +2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCIB+psiek7FqP18l1 +3s2anbtfpiGTHbAnm2BihpD9sRPjAiAIvsdyfn+nb2bCQBK6sodbO+LxSkuZulkP +oMR3yCH/eA== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/0a7dea2f58309435e5c550010c98fe42ff8005dd868125d12f338e2ebfa51a97_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/0a7dea2f58309435e5c550010c98fe42ff8005dd868125d12f338e2ebfa51a97_sk new file mode 100644 index 00000000..096a1bfe --- /dev/null +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/0a7dea2f58309435e5c550010c98fe42ff8005dd868125d12f338e2ebfa51a97_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg6C28cXFE1vdfuOB7 +TkXl6eRer9I+5PJUMSD10mRUNpWhRANCAATUgG1pNC9RRrVofVFyNeTpv/sWaQ++ +3jUL4acB0kS/a0Y4crv8z48NXHlqN/i9tWkyLPjAz4FGwjfJm5Cd8fqW +-----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/acb0cd74f185be95774d78455af83a1ac76a2c7f16e1afb2ef29deef02474e0f_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/acb0cd74f185be95774d78455af83a1ac76a2c7f16e1afb2ef29deef02474e0f_sk deleted file mode 100644 index c5e51d0c..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/acb0cd74f185be95774d78455af83a1ac76a2c7f16e1afb2ef29deef02474e0f_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgOrCZEfSjBCtRKZam -GNQSkq/mVCIKUZtFZ2y8QKlXqYihRANCAAT+PK6rXDTV4FkrTCQAHErNKTMm5F5c -TYPm78GQppKtQ2yBicJ+SxkUCf3Zz//b70AnJBIj5Gq0rqB9xbZLx7in ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem index 1fe7d95d..6a8cd9d0 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAPGelOdxXc9oj513U/gIAoswCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDExWhcNMjcxMjEwMDg0MDEx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABP48rqtcNNXgWStMJAAcSs0pMybkXlxN -g+bvwZCmkq1DbIGJwn5LGRQJ/dnP/9vvQCckEiPkarSuoH3FtkvHuKejTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIB00HMbKmDSV -0+jpCzRTbEnipFJ9AyT9izQzmI9mqSY9MAoGCCqGSM49BAMCA0cAMEQCIFhNymPu -7ilbI62JiuL9JUYa+f6+J31qLbVVou4nkbwIAiBG8ex/sGf2cTf5F51gUhhCQZ42 -dERXC0iEeQyYe63F5w== +MIICGDCCAb+gAwIBAgIQL9CD8dvgLK0sQ8PWDq6MlDAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTFaFw0yNzEyMTMwMzM1NTFa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE1IBtaTQvUUa1aH1RcjXk6b/7FmkPvt41 +C+GnAdJEv2tGOHK7/M+PDVx5ajf4vbVpMiz4wM+BRsI3yZuQnfH6lqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgJKpXKsl6sXti +hcMop5XYBf/qTpiDPp4A/Xgo55/marswCgYIKoZIzj0EAwIDRwAwRAIgb98dbAnO +yIHId+rwemQQ9aQidqLj7W9820b/BSYGcBoCIEtU2XV647baneViWaeGuWLhola7 +vPzasLRP5tn/reUi -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem index d7d7fc15..41b1feed 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICSTCCAfCgAwIBAgIRAKG3jaV57ZzRMcMbd4dIkY4wCgYIKoZIzj0EAwIwdjEL +MIICSTCCAfCgAwIBAgIRAPHXueVprPPU2x/R3iB+je0wCgYIKoZIzj0EAwIwdjEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDExWhcNMjcxMjEwMDg0 -MDExWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMz +NTUxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABHIA+jgUUfWK7qdh0U6DpZsIFax0BKYdpWvDzcS7GWwOWGAGrSOLGUyl -011sweuJRKeHODptQLnm5+WnpoIz2lajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICDjZQo5BEMZ -1Xo0xkARJ81Eop/WBQxKI/haq7qeMvtDMAoGCCqGSM49BAMCA0cAMEQCIFm2UXGS -J0L5+WH8zCE4z/MEHjRy7dxy9xjRfCqohqbhAiAz1ya+Y+MjZKvlNL0pJr93om8F -Gz51d8wGoDcLN/OKNQ== +AwEHA0IABCQ+Nrt34nb2VCDax6+fgEkm4nqp7n5hcBca6zYyp4eDWeFhoFklLuGd +6lmc5UifFKnEOx8mvkokj/2cEEJdSSCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOI44BD1KUDs +ay179ANNPkac86xhV6jSmNEwm7GamhJGMAoGCCqGSM49BAMCA0cAMEQCIHPeQKw3 +N9JTcpnePsUPs/7sXwoMmNPV5E2bbxM3pudAAiB54oWNKtRZvg5eQuzwdgfHX69t +pAsV/ClqwBqhk09GqQ== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt index d7d7fc15..41b1feed 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICSTCCAfCgAwIBAgIRAKG3jaV57ZzRMcMbd4dIkY4wCgYIKoZIzj0EAwIwdjEL +MIICSTCCAfCgAwIBAgIRAPHXueVprPPU2x/R3iB+je0wCgYIKoZIzj0EAwIwdjEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDExWhcNMjcxMjEwMDg0 -MDExWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMz +NTUxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABHIA+jgUUfWK7qdh0U6DpZsIFax0BKYdpWvDzcS7GWwOWGAGrSOLGUyl -011sweuJRKeHODptQLnm5+WnpoIz2lajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICDjZQo5BEMZ -1Xo0xkARJ81Eop/WBQxKI/haq7qeMvtDMAoGCCqGSM49BAMCA0cAMEQCIFm2UXGS -J0L5+WH8zCE4z/MEHjRy7dxy9xjRfCqohqbhAiAz1ya+Y+MjZKvlNL0pJr93om8F -Gz51d8wGoDcLN/OKNQ== +AwEHA0IABCQ+Nrt34nb2VCDax6+fgEkm4nqp7n5hcBca6zYyp4eDWeFhoFklLuGd +6lmc5UifFKnEOx8mvkokj/2cEEJdSSCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOI44BD1KUDs +ay179ANNPkac86xhV6jSmNEwm7GamhJGMAoGCCqGSM49BAMCA0cAMEQCIHPeQKw3 +N9JTcpnePsUPs/7sXwoMmNPV5E2bbxM3pudAAiB54oWNKtRZvg5eQuzwdgfHX69t +pAsV/ClqwBqhk09GqQ== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt index 5367957c..7c93c176 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICaDCCAg6gAwIBAgIRAOsAPPyf6zzx8fTP3gEpy7AwCgYIKoZIzj0EAwIwdjEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDExWhcNMjcxMjEwMDg0 -MDExWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE -BxMNU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABMs8hExSg6X9vlcm8P1buNWQ0RGj -UjVUdqhMSxtEQwX7vOTJYl/9NOd7fEQDO9nR+igpm9hTUeNxEZqr+GFpPqujgZcw -gZQwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcD -AjAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICDjZQo5BEMZ1Xo0xkARJ81Eop/W -BQxKI/haq7qeMvtDMCgGA1UdEQQhMB+CFnBlZXIxLm9yZzIuZXhhbXBsZS5jb22C -BXBlZXIxMAoGCCqGSM49BAMCA0gAMEUCIQDgVecvIVlazBC/2mvSe5JSk78Ny/Q4 -WF08LeaCJ0HxSQIgH0vSgk4wuo0rhnvvY6oALtri+u06PPP6d6P8904UdM0= +MIICZzCCAg2gAwIBAgIQaGuANufOThoGFtRI2FEfYjAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTFaFw0yNzEyMTMwMzM1 +NTFaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29t +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE8G95eL6DuVSsC6+R7Yf+nTvfanV9 +CUqi+nmfqaOXK77sqvjPPD9hRp8n2mR67aZBnvcyLmWnFjLdurUqr3hZPKOBlzCB +lDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMC +MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg4jjgEPUpQOxrLXv0A00+RpzzrGFX +qNKY0TCbsZqaEkYwKAYDVR0RBCEwH4IWcGVlcjEub3JnMi5leGFtcGxlLmNvbYIF +cGVlcjEwCgYIKoZIzj0EAwIDSAAwRQIhAKpOwddrdH2WRz6s4BE6wDe4GgXWNlAN +97XDfaQzTIEWAiBKjk+zb1Lv8zBTXiq7Ffbw0s7s4zzjWj/diZhf/4ajfA== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key index 75bbff30..a2f13f9c 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key @@ -1,5 +1,5 @@ -----BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgSgywyrSdTBZylMod -tri1/Q0izqKpNtkgbqgAGzM2cYOhRANCAATLPIRMUoOl/b5XJvD9W7jVkNERo1I1 -VHaoTEsbREMF+7zkyWJf/TTne3xEAzvZ0fooKZvYU1HjcRGaq/hhaT6r +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgPxrwssfTmA9iQ2N4 +2LfD0nNgjkXrtnlcJUO5Uj89PP+hRANCAATwb3l4voO5VKwLr5Hth/6dO99qdX0J +SqL6eZ+po5crvuyq+M88P2FGnyfaZHrtpkGe9zIuZacWMt26tSqveFk8 -----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/tlsca/20e3650a39044319d57a34c6401127cd44a29fd6050c4a23f85aabba9e32fb43_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/tlsca/20e3650a39044319d57a34c6401127cd44a29fd6050c4a23f85aabba9e32fb43_sk deleted file mode 100644 index dd027b56..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/tlsca/20e3650a39044319d57a34c6401127cd44a29fd6050c4a23f85aabba9e32fb43_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg1ijwLW8lMG/nPSiH -Xo2UAUcMNE3V+Cq+lDKaP0ErP4WhRANCAARyAPo4FFH1iu6nYdFOg6WbCBWsdASm -HaVrw83EuxlsDlhgBq0jixlMpdNdbMHriUSnhzg6bUC55uflp6aCM9pW ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/tlsca/e238e010f52940ec6b2d7bf4034d3e469cf3ac6157a8d298d1309bb19a9a1246_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/tlsca/e238e010f52940ec6b2d7bf4034d3e469cf3ac6157a8d298d1309bb19a9a1246_sk new file mode 100644 index 00000000..69086dae --- /dev/null +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/tlsca/e238e010f52940ec6b2d7bf4034d3e469cf3ac6157a8d298d1309bb19a9a1246_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg8OAbVP24xBXNLkv5 +xCcAHG+rJHXKUrLAwwhWfXIDMkyhRANCAAQkPja7d+J29lQg2sevn4BJJuJ6qe5+ +YXAXGus2MqeHg1nhYaBZJS7hnepZnOVInxSpxDsfJr5KJI/9nBBCXUkg +-----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem index d7d7fc15..41b1feed 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICSTCCAfCgAwIBAgIRAKG3jaV57ZzRMcMbd4dIkY4wCgYIKoZIzj0EAwIwdjEL +MIICSTCCAfCgAwIBAgIRAPHXueVprPPU2x/R3iB+je0wCgYIKoZIzj0EAwIwdjEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDExWhcNMjcxMjEwMDg0 -MDExWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMz +NTUxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABHIA+jgUUfWK7qdh0U6DpZsIFax0BKYdpWvDzcS7GWwOWGAGrSOLGUyl -011sweuJRKeHODptQLnm5+WnpoIz2lajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICDjZQo5BEMZ -1Xo0xkARJ81Eop/WBQxKI/haq7qeMvtDMAoGCCqGSM49BAMCA0cAMEQCIFm2UXGS -J0L5+WH8zCE4z/MEHjRy7dxy9xjRfCqohqbhAiAz1ya+Y+MjZKvlNL0pJr93om8F -Gz51d8wGoDcLN/OKNQ== +AwEHA0IABCQ+Nrt34nb2VCDax6+fgEkm4nqp7n5hcBca6zYyp4eDWeFhoFklLuGd +6lmc5UifFKnEOx8mvkokj/2cEEJdSSCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOI44BD1KUDs +ay179ANNPkac86xhV6jSmNEwm7GamhJGMAoGCCqGSM49BAMCA0cAMEQCIHPeQKw3 +N9JTcpnePsUPs/7sXwoMmNPV5E2bbxM3pudAAiB54oWNKtRZvg5eQuzwdgfHX69t +pAsV/ClqwBqhk09GqQ== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem index f02a6e18..bb04508a 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem index bb998828..4a59b79f 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -+8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -cNvAXU8LlQ== +MIICQzCCAeqgAwIBAgIRAMt+4ybOK1r7B8eavLVTMBUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPGrtJtHj1Ql02gq7I0ZQQKJwvtZhp0t3rCwF1cFILTHIBM4phJ/ZYJQa1lb12pO +sxSxuEvRGTFcZXtunUc0SeWjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICSqVyrJerF7YoXDKKeV +2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCIB+psiek7FqP18l1 +3s2anbtfpiGTHbAnm2BihpD9sRPjAiAIvsdyfn+nb2bCQBK6sodbO+LxSkuZulkP +oMR3yCH/eA== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/69c4e09c2ce205a1b5807fb4ddf588011d2fcf9347e793549d0e40b0d57bc0df_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/69c4e09c2ce205a1b5807fb4ddf588011d2fcf9347e793549d0e40b0d57bc0df_sk deleted file mode 100644 index 9c80e500..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/69c4e09c2ce205a1b5807fb4ddf588011d2fcf9347e793549d0e40b0d57bc0df_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgPlfceSIYnohEsUTO -hEZlaBXYLDP3ShyP6/SC5Kp83zOhRANCAAQhA76boiyUntIbaH8Ba3pSlUZsh8fX -5eQQQBIu9jPXBAtaHveNSasN7QbtSEvlG7KaTe4fX5BVIpex1TzcY2zu ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/f9c5e9575a8169c814f009072e714f737a4f0d62bbf5591ded70ba529a062446_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/f9c5e9575a8169c814f009072e714f737a4f0d62bbf5591ded70ba529a062446_sk new file mode 100644 index 00000000..4524073d --- /dev/null +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/f9c5e9575a8169c814f009072e714f737a4f0d62bbf5591ded70ba529a062446_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgJAA0RGvWWQVna4rx +fsSTven4P2hruKltwYcvZJ3HW8yhRANCAATP4f/g18a9pTNVbTw8IZQMiVa+F7fi +r1S0pnmPpl+f/vNNkjzKSMWShH+uY87WrCgcRmzoAAW3ssd6Fxne3XvK +-----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem index f02a6e18..bb04508a 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem index d7d7fc15..41b1feed 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICSTCCAfCgAwIBAgIRAKG3jaV57ZzRMcMbd4dIkY4wCgYIKoZIzj0EAwIwdjEL +MIICSTCCAfCgAwIBAgIRAPHXueVprPPU2x/R3iB+je0wCgYIKoZIzj0EAwIwdjEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDExWhcNMjcxMjEwMDg0 -MDExWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMz +NTUxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABHIA+jgUUfWK7qdh0U6DpZsIFax0BKYdpWvDzcS7GWwOWGAGrSOLGUyl -011sweuJRKeHODptQLnm5+WnpoIz2lajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICDjZQo5BEMZ -1Xo0xkARJ81Eop/WBQxKI/haq7qeMvtDMAoGCCqGSM49BAMCA0cAMEQCIFm2UXGS -J0L5+WH8zCE4z/MEHjRy7dxy9xjRfCqohqbhAiAz1ya+Y+MjZKvlNL0pJr93om8F -Gz51d8wGoDcLN/OKNQ== +AwEHA0IABCQ+Nrt34nb2VCDax6+fgEkm4nqp7n5hcBca6zYyp4eDWeFhoFklLuGd +6lmc5UifFKnEOx8mvkokj/2cEEJdSSCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOI44BD1KUDs +ay179ANNPkac86xhV6jSmNEwm7GamhJGMAoGCCqGSM49BAMCA0cAMEQCIHPeQKw3 +N9JTcpnePsUPs/7sXwoMmNPV5E2bbxM3pudAAiB54oWNKtRZvg5eQuzwdgfHX69t +pAsV/ClqwBqhk09GqQ== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt index d7d7fc15..41b1feed 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICSTCCAfCgAwIBAgIRAKG3jaV57ZzRMcMbd4dIkY4wCgYIKoZIzj0EAwIwdjEL +MIICSTCCAfCgAwIBAgIRAPHXueVprPPU2x/R3iB+je0wCgYIKoZIzj0EAwIwdjEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDExWhcNMjcxMjEwMDg0 -MDExWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMz +NTUxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABHIA+jgUUfWK7qdh0U6DpZsIFax0BKYdpWvDzcS7GWwOWGAGrSOLGUyl -011sweuJRKeHODptQLnm5+WnpoIz2lajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICDjZQo5BEMZ -1Xo0xkARJ81Eop/WBQxKI/haq7qeMvtDMAoGCCqGSM49BAMCA0cAMEQCIFm2UXGS -J0L5+WH8zCE4z/MEHjRy7dxy9xjRfCqohqbhAiAz1ya+Y+MjZKvlNL0pJr93om8F -Gz51d8wGoDcLN/OKNQ== +AwEHA0IABCQ+Nrt34nb2VCDax6+fgEkm4nqp7n5hcBca6zYyp4eDWeFhoFklLuGd +6lmc5UifFKnEOx8mvkokj/2cEEJdSSCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOI44BD1KUDs +ay179ANNPkac86xhV6jSmNEwm7GamhJGMAoGCCqGSM49BAMCA0cAMEQCIHPeQKw3 +N9JTcpnePsUPs/7sXwoMmNPV5E2bbxM3pudAAiB54oWNKtRZvg5eQuzwdgfHX69t +pAsV/ClqwBqhk09GqQ== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.crt b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.crt index 32ab2f76..b0dec540 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.crt +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.crt @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICOzCCAeKgAwIBAgIRAOPffo84uPGKd6VSU9O02AQwCgYIKoZIzj0EAwIwdjEL +MIICPDCCAeKgAwIBAgIRANeYL2/XhnML0SHH1hSkMIswCgYIKoZIzj0EAwIwdjEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDExWhcNMjcxMjEwMDg0 -MDExWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMz +NTUxWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE BxMNU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEWRqgnLI/N0QX8NYjZ4LOcV0X9/ -Nep8pxOivHSbSOcWL+rRQnOBSHaNtYKD2X5bpCbXXf0qpWycqK7OEtNAxHyjbDBq +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAHK/bv9u/krCvuWEfAShYNe9fmk ++r7mpS7Q2pUr3knawk28A9QBrQGYaeiZDy53wPg9RtK/Jv1pD00dtfxXebCjbDBq MA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAg42UKOQRDGdV6NMZAESfNRKKf1gUM -SiP4Wqu6njL7QzAKBggqhkjOPQQDAgNHADBEAiB7HjYxrgzHReR0LeZ6Wljyzmgx -Pvl8SKTZQ68YEntrKQIgfITikPdq3Fo1AA2BYBGkOAumAp4nRch5NJAASHXRKDU= +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDiOOAQ9SlA7Gste/QDTT5GnPOsYVeo +0pjRMJuxmpoSRjAKBggqhkjOPQQDAgNIADBFAiEAkochHlMxTTtsbE5tOQpHlwfX +XLL9GIfPiAzmW6Fv7D4CIAiCT0zrRjZJcm/5wmOypjJEdtCXr2IiouSD+1lETdPd -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.key b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.key index 86d4b441..667d148c 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.key +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.key @@ -1,5 +1,5 @@ -----BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgI+kWsCB2KTFeQrAo -HC8d+lFZ3O90nf8sr3LFfLrhwq2hRANCAARFkaoJyyPzdEF/DWI2eCznFdF/fzXq -fKcTorx0m0jnFi/q0UJzgUh2jbWCg9l+W6Qm1139KqVsnKiuzhLTQMR8 +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgdtsWWHoKKaAKXqMV +TIopqljiizfMM+9k4LfU9CKn15qhRANCAAQByv27/bv5Kwr7lhHwEoWDXvX5pPq+ +5qUu0NqVK95J2sJNvAPUAa0BmGnomQ8ud8D4PUbSvyb9aQ9NHbX8V3mw -----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem index a717ff9f..c6ddc6e3 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALfasCI4L3R+tJBkjRs2cnowCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDExWhcNMjcxMjEwMDg0MDEx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWVXNlcjFAb3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABO+CmOSVqe0rSsAI78s24K+or8GVH0+q -skbw3qztXIyvh8KznrtSYMiVDZ955X4JZiKmDDFyEiPJLAiae+9+V7qjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIB00HMbKmDSV -0+jpCzRTbEnipFJ9AyT9izQzmI9mqSY9MAoGCCqGSM49BAMCA0gAMEUCIQDZbtMK -/s6svuTVOMltBgFm5/cMnYsVtI5cVqGPMaa7gQIgNVx45l+GBtctIIY8XZpkugCK -cJEbTdzbijBvb1QllzU= +MIICGDCCAb+gAwIBAgIQV0wiJjvhsTYMck7tiBZcHjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTFaFw0yNzEyMTMwMzM1NTFa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZVc2VyMUBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAES3YCBWu7lm4pT3yrKAICFcyw8XIz22C7 ++yZejZuYExuxPcKf84douAsZo9lLeNdLSN/YmXb3tJkyoSg8XzzA6qNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgJKpXKsl6sXti +hcMop5XYBf/qTpiDPp4A/Xgo55/marswCgYIKoZIzj0EAwIDRwAwRAIgVdm/loMu +rTqh/Ul7fQbKbE22eNeobEA9Ckmw/Q8CqpQCIFMUBSfmfkZ7NBH3ua2N1XnMBmk6 +11CZeZR3UwaDqS35 -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem index bb998828..4a59b79f 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -+8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -cNvAXU8LlQ== +MIICQzCCAeqgAwIBAgIRAMt+4ybOK1r7B8eavLVTMBUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPGrtJtHj1Ql02gq7I0ZQQKJwvtZhp0t3rCwF1cFILTHIBM4phJ/ZYJQa1lb12pO +sxSxuEvRGTFcZXtunUc0SeWjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICSqVyrJerF7YoXDKKeV +2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCIB+psiek7FqP18l1 +3s2anbtfpiGTHbAnm2BihpD9sRPjAiAIvsdyfn+nb2bCQBK6sodbO+LxSkuZulkP +oMR3yCH/eA== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/673a8d0d0f4a044c52311c7850e97657815aa3f906b0e2abfc35bc89c7124b2b_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/673a8d0d0f4a044c52311c7850e97657815aa3f906b0e2abfc35bc89c7124b2b_sk deleted file mode 100644 index 630a6f13..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/673a8d0d0f4a044c52311c7850e97657815aa3f906b0e2abfc35bc89c7124b2b_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgnXvLTS8Bayri4vLH -jBuS/732I4qeRaTUsUHzAkaudzyhRANCAATvgpjklantK0rACO/LNuCvqK/BlR9P -qrJG8N6s7VyMr4fCs567UmDIlQ2feeV+CWYipgwxchIjySwImnvvfle6 ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/d771f94013c93cd1d3e5df198f369acda78106e2c9671323a2ef27c734120367_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/d771f94013c93cd1d3e5df198f369acda78106e2c9671323a2ef27c734120367_sk new file mode 100644 index 00000000..371cc87d --- /dev/null +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/d771f94013c93cd1d3e5df198f369acda78106e2c9671323a2ef27c734120367_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgg/A10WmAaECxxtw1 +dxI+QsECrOJVlaSlNGNYTkEfOuuhRANCAARLdgIFa7uWbilPfKsoAgIVzLDxcjPb +YLv7Jl6Nm5gTG7E9wp/zh2i4Cxmj2Ut410tI39iZdve0mTKhKDxfPMDq +-----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem index a717ff9f..c6ddc6e3 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALfasCI4L3R+tJBkjRs2cnowCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDExWhcNMjcxMjEwMDg0MDEx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWVXNlcjFAb3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABO+CmOSVqe0rSsAI78s24K+or8GVH0+q -skbw3qztXIyvh8KznrtSYMiVDZ955X4JZiKmDDFyEiPJLAiae+9+V7qjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIB00HMbKmDSV -0+jpCzRTbEnipFJ9AyT9izQzmI9mqSY9MAoGCCqGSM49BAMCA0gAMEUCIQDZbtMK -/s6svuTVOMltBgFm5/cMnYsVtI5cVqGPMaa7gQIgNVx45l+GBtctIIY8XZpkugCK -cJEbTdzbijBvb1QllzU= +MIICGDCCAb+gAwIBAgIQV0wiJjvhsTYMck7tiBZcHjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTFaFw0yNzEyMTMwMzM1NTFa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZVc2VyMUBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAES3YCBWu7lm4pT3yrKAICFcyw8XIz22C7 ++yZejZuYExuxPcKf84douAsZo9lLeNdLSN/YmXb3tJkyoSg8XzzA6qNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgJKpXKsl6sXti +hcMop5XYBf/qTpiDPp4A/Xgo55/marswCgYIKoZIzj0EAwIDRwAwRAIgVdm/loMu +rTqh/Ul7fQbKbE22eNeobEA9Ckmw/Q8CqpQCIFMUBSfmfkZ7NBH3ua2N1XnMBmk6 +11CZeZR3UwaDqS35 -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem index d7d7fc15..41b1feed 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICSTCCAfCgAwIBAgIRAKG3jaV57ZzRMcMbd4dIkY4wCgYIKoZIzj0EAwIwdjEL +MIICSTCCAfCgAwIBAgIRAPHXueVprPPU2x/R3iB+je0wCgYIKoZIzj0EAwIwdjEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDExWhcNMjcxMjEwMDg0 -MDExWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMz +NTUxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABHIA+jgUUfWK7qdh0U6DpZsIFax0BKYdpWvDzcS7GWwOWGAGrSOLGUyl -011sweuJRKeHODptQLnm5+WnpoIz2lajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICDjZQo5BEMZ -1Xo0xkARJ81Eop/WBQxKI/haq7qeMvtDMAoGCCqGSM49BAMCA0cAMEQCIFm2UXGS -J0L5+WH8zCE4z/MEHjRy7dxy9xjRfCqohqbhAiAz1ya+Y+MjZKvlNL0pJr93om8F -Gz51d8wGoDcLN/OKNQ== +AwEHA0IABCQ+Nrt34nb2VCDax6+fgEkm4nqp7n5hcBca6zYyp4eDWeFhoFklLuGd +6lmc5UifFKnEOx8mvkokj/2cEEJdSSCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOI44BD1KUDs +ay179ANNPkac86xhV6jSmNEwm7GamhJGMAoGCCqGSM49BAMCA0cAMEQCIHPeQKw3 +N9JTcpnePsUPs/7sXwoMmNPV5E2bbxM3pudAAiB54oWNKtRZvg5eQuzwdgfHX69t +pAsV/ClqwBqhk09GqQ== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt index d7d7fc15..41b1feed 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt @@ -1,15 +1,15 @@ -----BEGIN CERTIFICATE----- -MIICSTCCAfCgAwIBAgIRAKG3jaV57ZzRMcMbd4dIkY4wCgYIKoZIzj0EAwIwdjEL +MIICSTCCAfCgAwIBAgIRAPHXueVprPPU2x/R3iB+je0wCgYIKoZIzj0EAwIwdjEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDExWhcNMjcxMjEwMDg0 -MDExWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMz +NTUxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABHIA+jgUUfWK7qdh0U6DpZsIFax0BKYdpWvDzcS7GWwOWGAGrSOLGUyl -011sweuJRKeHODptQLnm5+WnpoIz2lajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICDjZQo5BEMZ -1Xo0xkARJ81Eop/WBQxKI/haq7qeMvtDMAoGCCqGSM49BAMCA0cAMEQCIFm2UXGS -J0L5+WH8zCE4z/MEHjRy7dxy9xjRfCqohqbhAiAz1ya+Y+MjZKvlNL0pJr93om8F -Gz51d8wGoDcLN/OKNQ== +AwEHA0IABCQ+Nrt34nb2VCDax6+fgEkm4nqp7n5hcBca6zYyp4eDWeFhoFklLuGd +6lmc5UifFKnEOx8mvkokj/2cEEJdSSCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOI44BD1KUDs +ay179ANNPkac86xhV6jSmNEwm7GamhJGMAoGCCqGSM49BAMCA0cAMEQCIHPeQKw3 +N9JTcpnePsUPs/7sXwoMmNPV5E2bbxM3pudAAiB54oWNKtRZvg5eQuzwdgfHX69t +pAsV/ClqwBqhk09GqQ== -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.crt b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.crt index 0d79ce44..01a3f116 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.crt +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.crt @@ -1,14 +1,14 @@ -----BEGIN CERTIFICATE----- -MIICOjCCAeGgAwIBAgIQdpvZSyjg85JE4EeqN2tN7zAKBggqhkjOPQQDAjB2MQsw +MIICOzCCAeGgAwIBAgIQKDhanHnRSpD0vMaJb3MygTAKBggqhkjOPQQDAjB2MQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz -Y2Eub3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQw -MTFaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Y2Eub3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTFaFw0yNzEyMTMwMzM1 +NTFaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH Ew1TYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZVc2VyMUBvcmcyLmV4YW1wbGUuY29t -MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEDf3DECnx+6TTlIcBSM5l+7p+L0eU -D0uDSXHAHmsnEtu4nn1QdtaH2MHCdVHb++n4y+US06btNN7zHewD/rw0PqNsMGow +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAElt+a28fEugA9hUTmVF7DR9QUblVi +wBjagsdWeXmOEGMqWFp5KZ/hk8YGkhrw/3haOZpnGiILbSzZAQSrYrhMCKNsMGow DgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICDjZQo5BEMZ1Xo0xkARJ81Eop/WBQxK -I/haq7qeMvtDMAoGCCqGSM49BAMCA0cAMEQCIAHeYmiH1TArXkmY1V8cC8XJsu3M -JxWy3UF7EgKLFFYLAiBeMellCTZLtviyUhOqZl/gcuGZly44+YdoOTqKBM85rQ== +BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIOI44BD1KUDsay179ANNPkac86xhV6jS +mNEwm7GamhJGMAoGCCqGSM49BAMCA0gAMEUCIQCwPehmDzWpQvbEttys/Pa8Ih4O +3jTRJirW8hIiUrFC3AIgKpmAUySBwFF3GcWmDBgoOPb11jX1KSfFqylRVo3iGuk= -----END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.key b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.key index 1dd370aa..8c774a07 100644 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.key +++ b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.key @@ -1,5 +1,5 @@ -----BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgQRn81cAzWSCzBo7W -o3WIk/m76sKaasZma0Lfo3ep87qhRANCAAQN/cMQKfH7pNOUhwFIzmX7un4vR5QP -S4NJccAeaycS27iefVB21ofYwcJ1Udv76fjL5RLTpu003vMd7AP+vDQ+ +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgZsL62+W6qenpLaen +7c5b5iZJ1QXiWZHpwy4D7ZAAKE6hRANCAASW35rbx8S6AD2FROZUXsNH1BRuVWLA +GNqCx1Z5eY4QYypYWnkpn+GTxgaSGvD/eFo5mmcaIgttLNkBBKtiuEwI -----END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/logs/dev_all.log b/hyperledger_fabric/latest/solo/logs/dev_all.log index 8c16d209..d09e9045 100644 --- a/hyperledger_fabric/latest/solo/logs/dev_all.log +++ b/hyperledger_fabric/latest/solo/logs/dev_all.log @@ -1,15062 +1,14311 @@ -Attaching to peer0.org1.example.com, peer1.org1.example.com, orderer.example.com, fabric-cli, peer1.org2.example.com, peer0.org2.example.com -peer0.org1.example.com | [001 12-12 14:19:35.76 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -peer0.org1.example.com | Version: 1.1.0 -peer0.org1.example.com | Go version: go1.9.2 -peer0.org1.example.com | OS/Arch: linux/amd64 -peer0.org1.example.com | Experimental features: false -peer0.org1.example.com | Chaincode: -peer0.org1.example.com | Base Image Version: 0.4.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 12-12 14:19:35.76 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 12-12 14:19:35.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -peer0.org1.example.com | [004 12-12 14:19:35.76 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 12-12 14:19:35.76 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 12-12 14:19:35.76 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 12-12 14:19:35.77 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -peer0.org1.example.com | [008 12-12 14:19:35.77 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -peer0.org1.example.com | [009 12-12 14:19:35.77 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -peer0.org1.example.com | [00a 12-12 14:19:35.77 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] -peer0.org1.example.com | [00b 12-12 14:19:35.77 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist -peer0.org1.example.com | [00c 12-12 14:19:35.77 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists -peer0.org1.example.com | [00d 12-12 14:19:35.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -peer0.org1.example.com | [00e 12-12 14:19:35.78 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -peer0.org1.example.com | [00f 12-12 14:19:35.78 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -peer0.org1.example.com | [010 12-12 14:19:35.78 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -peer0.org1.example.com | [011 12-12 14:19:35.78 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 | [012 12-12 14:19:35.78 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 | [001 12-12 14:19:33.45 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -peer0.org1.example.com | [013 12-12 14:19:35.78 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 | Version: 1.1.0 -peer0.org1.example.com | [014 12-12 14:19:35.78 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 | Go version: go1.9.2 -peer0.org1.example.com | [015 12-12 14:19:35.79 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 | OS/Arch: linux/amd64 -peer1.org1.example.com | Experimental features: false -peer0.org1.example.com | [016 12-12 14:19:35.79 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.org1.example.com | Chaincode: -peer0.org1.example.com | [017 12-12 14:19:35.79 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 12-12 14:19:35.79 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 | Base Image Version: 0.4.2 -peer0.org1.example.com | [019 12-12 14:19:35.79 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 -peer1.org1.example.com | Base Docker Namespace: hyperledger -peer0.org1.example.com | [01a 12-12 14:19:35.79 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer0.org1.example.com:7051 -peer1.org1.example.com | Base Docker Label: org.hyperledger.fabric -peer0.org1.example.com | [01b 12-12 14:19:35.79 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 | Docker Namespace: hyperledger -peer0.org1.example.com | [01c 12-12 14:19:35.79 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer0.org1.example.com:7051 -peer1.org1.example.com | -peer0.org1.example.com | [01d 12-12 14:19:35.80 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer1.org1.example.com | [002 12-12 14:19:33.45 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 | [01e 12-12 14:19:35.81 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 | [003 12-12 14:19:33.45 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 12-12 14:19:33.45 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 | [01f 12-12 14:19:35.81 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 | [005 12-12 14:19:33.45 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 | [020 12-12 14:19:35.81 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 | [006 12-12 14:19:33.45 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 | [021 12-12 14:19:35.81 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 | [007 12-12 14:19:33.46 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -peer0.org1.example.com | [022 12-12 14:19:35.81 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK -peer1.org1.example.com | [008 12-12 14:19:33.46 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -peer0.org1.example.com | [023 12-12 14:19:35.81 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com -peer1.org1.example.com | [009 12-12 14:19:33.46 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -peer0.org1.example.com | [024 12-12 14:19:35.81 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer1.org1.example.com | [00a 12-12 14:19:33.47 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] -peer1.org1.example.com | [00b 12-12 14:19:33.47 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist -peer1.org1.example.com | [00c 12-12 14:19:33.47 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists -peer0.org1.example.com | [025 12-12 14:19:35.81 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer0.org1.example.com:7052 -peer1.org1.example.com | [00d 12-12 14:19:33.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -peer0.org1.example.com | [026 12-12 14:19:35.82 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.NewServerCertKeyPair.newCertKeyPair -> DEBU Classified peer0.org1.example.com as a hostname, adding it as a DNS SAN -peer1.org1.example.com | [00e 12-12 14:19:33.48 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -peer0.org1.example.com | [027 12-12 14:19:35.82 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 | [00f 12-12 14:19:33.48 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -peer0.org1.example.com | [028 12-12 14:19:35.82 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 -peer1.org1.example.com | [010 12-12 14:19:33.48 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -peer0.org1.example.com | [029 12-12 14:19:35.82 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 | [011 12-12 14:19:33.49 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 | [02a 12-12 14:19:35.82 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 | [012 12-12 14:19:33.49 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 | [02b 12-12 14:19:35.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 -peer1.org1.example.com | [013 12-12 14:19:33.49 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 | [02c 12-12 14:19:35.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 -peer1.org1.example.com | [014 12-12 14:19:33.49 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 | [015 12-12 14:19:33.50 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 | [016 12-12 14:19:33.50 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.org1.example.com | [017 12-12 14:19:33.50 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 | [018 12-12 14:19:33.50 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 | [019 12-12 14:19:33.50 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 -peer1.org1.example.com | [01a 12-12 14:19:33.50 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer1.org1.example.com:7051 -peer1.org1.example.com | [01b 12-12 14:19:33.50 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 -peer1.org1.example.com | [01c 12-12 14:19:33.50 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer1.org1.example.com:7051 -peer1.org1.example.com | [01d 12-12 14:19:33.51 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer1.org1.example.com | [01e 12-12 14:19:33.52 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 | [01f 12-12 14:19:33.52 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 | [020 12-12 14:19:33.52 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 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: -peer0.org1.example.com | [02e 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found real value for chaincode.systemPlugins setting to -peer0.org1.example.com | [02f 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey -> DEBU map[chaincode.systemPlugins:] -peer0.org1.example.com | [030 12-12 14:19:35.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 | [031 12-12 14:19:35.83 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 | [032 12-12 14:19:35.83 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 | [033 12-12 14:19:35.83 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 | [021 12-12 14:19:33.52 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 | [034 12-12 14:19:35.83 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 | [022 12-12 14:19:33.52 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK -peer0.org1.example.com | [035 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc,true) disabled -peer1.org1.example.com | [023 12-12 14:19:33.52 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer0.org1.example.com | [036 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterACLProvider.Do.func1.newACLMgmt.newDefaultACLProvider.initialize.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [024 12-12 14:19:33.52 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer1.org1.example.com -peer0.org1.example.com | [037 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer0.org1.example.com | [038 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers -peer0.org1.example.com | [039 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultDecorator]] -peer1.org1.example.com | [025 12-12 14:19:33.52 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer1.org1.example.com:7052 -peer1.org1.example.com | [026 12-12 14:19:33.54 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.NewServerCertKeyPair.newCertKeyPair -> DEBU Classified peer1.org1.example.com as a hostname, adding it as a DNS SAN -peer0.org1.example.com | [03a 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.decorators setting to []interface {} [map[name:DefaultDecorator]] -peer1.org1.example.com | [027 12-12 14:19:33.54 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 | [03b 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultAuth]] -peer0.org1.example.com | [03c 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.authFilters setting to []interface {} [map[name:DefaultAuth]] -peer1.org1.example.com | [028 12-12 14:19:33.54 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 | [03d 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[authFilters:[map[name:DefaultAuth]] decorators:[map[name:DefaultDecorator]]]] -peer1.org1.example.com | [029 12-12 14:19:33.54 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 | [03e 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [02a 12-12 14:19:33.54 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 | [03f 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [040 12-12 14:19:35.84 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] -peer0.org1.example.com | [041 12-12 14:19:35.85 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 | [042 12-12 14:19:35.85 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org1.example.com | [043 12-12 14:19:35.85 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | MIICGTCCAb+gAwIBAgIQfxCgdHnKWSB1ck7NCIf+4jAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | [02b 12-12 14:19:33.54 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 | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -peer1.org1.example.com | [02c 12-12 14:19:33.54 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 | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | [02d 12-12 14:19:33.55 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: -peer0.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEttPjC3up1Q77jKnXYIA7Wu2YrLoAKqPa -peer0.org1.example.com | Cj9pdoCw3vR9Imf/c8dgnaRHBvU+dgxN5en1+n4tkq0DFamZ843WpqNNMEswDgYD -peer0.org1.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -peer0.org1.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAKrUoMIb -peer1.org1.example.com | [02e 12-12 14:19:33.55 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found real value for chaincode.systemPlugins setting to -peer1.org1.example.com | [02f 12-12 14:19:33.55 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey -> DEBU map[chaincode.systemPlugins:] -peer0.org1.example.com | 2WwA9949iLHY+idNaQnD9S2wuUoml0JPNu/NAiBQlxXukEi49c9p1+nROwn0IuOM -peer1.org1.example.com | [030 12-12 14:19:33.55 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 | 3NSyqtTUGH26cyVUgw== -peer0.org1.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [044 12-12 14:19:35.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [031 12-12 14:19:33.55 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 | [032 12-12 14:19:33.55 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 | [045 12-12 14:19:35.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [033 12-12 14:19:33.55 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 | [046 12-12 14:19:35.85 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | [034 12-12 14:19:33.55 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 | [047 12-12 14:19:35.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [035 12-12 14:19:33.55 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc,true) disabled -peer0.org1.example.com | [048 12-12 14:19:35.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [049 12-12 14:19:35.86 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [04a 12-12 14:19:35.87 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 [] [244 159 227 45 159 119 125 251 84 216 113 219 24 76 98 245 18 229 29 41 76 157 120 121 127 21 160 61 22 239 57 198] peer0.org1.example.com:7051 } incTime is 1513088375862741500 -peer0.org1.example.com | [04b 12-12 14:19:35.87 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 [] [244 159 227 45 159 119 125 251 84 216 113 219 24 76 98 245 18 229 29 41 76 157 120 121 127 21 160 61 22 239 57 198] peer0.org1.example.com:7051 } -peer1.org1.example.com | [036 12-12 14:19:33.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterACLProvider.Do.func1.newACLMgmt.newDefaultACLProvider.initialize.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [037 12-12 14:19:33.55 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer1.org1.example.com | [038 12-12 14:19:33.55 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers -peer1.org1.example.com | [039 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultAuth]] -peer0.org1.example.com | [04c 12-12 14:19:35.87 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [03a 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.authFilters setting to []interface {} [map[name:DefaultAuth]] -peer0.org1.example.com | [04d 12-12 14:19:35.87 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [03b 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultDecorator]] -peer0.org1.example.com | [04e 12-12 14:19:35.87 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | [03c 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.decorators setting to []interface {} [map[name:DefaultDecorator]] -peer1.org1.example.com | [03d 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[authFilters:[map[name:DefaultAuth]] decorators:[map[name:DefaultDecorator]]]] -peer0.org1.example.com | [04f 12-12 14:19:35.87 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.org1.example.com | [050 12-12 14:19:35.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [03e 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [051 12-12 14:19:35.87 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 | [03f 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [040 12-12 14:19:33.56 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] -peer0.org1.example.com | [052 12-12 14:19:35.87 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.org1.example.com | [053 12-12 14:19:35.87 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 | [041 12-12 14:19:33.57 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 | [054 12-12 14:19:35.87 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.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [055 12-12 14:19:35.87 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: 1801AA01C7060A20F49FE32D9F777DFB...455254494649434154452D2D2D2D2D0A -peer0.org1.example.com | [056 12-12 14:19:35.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer1.org1.example.com | [042 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org1.example.com | [057 12-12 14:19:35.87 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: F9BDD86F65FC7824B52061BB06FE029778C3C6C5F2A03D30C985EB721015B219 -peer0.org1.example.com | [058 12-12 14:19:35.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started -peer1.org1.example.com | [043 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [059 12-12 14:19:35.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer1.org1.example.com | MIICGjCCAcCgAwIBAgIRALADzPPE97iyHtSxn9RqjfgwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [05a 12-12 14:19:35.87 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [05b 12-12 14:19:35.87 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [05c 12-12 14:19:35.87 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF4060A3F0A1B70656572302E6F...455254494649434154452D2D2D2D2D0A -peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [05d 12-12 14:19:35.87 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 2B3F59F038F585E7307FC1C764ACF4335A0898998DA39C4CF354F99EF1F0F05F -peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHbbFgxKR+4UJyrZzRgvS6CFZZxY7Pbi -peer1.org1.example.com | Odp+osNIcE3Xvigd0wdt9TBstawIYqqncekYq/Gow7DZmYdR7nOFFL6jTTBLMA4G -peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPkf6WVvtt9c -peer1.org1.example.com | 0qvn754rGzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQC7onwy -peer1.org1.example.com | Xg1MdE8XzzNqF0O4QX5DPfr1EaZNMNriGihkKwIgDrlllaiu+/kP74QuITuz6eUr -peer1.org1.example.com | Zs7vWf/TFL+lCFpVqNE= -peer1.org1.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [044 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [045 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [046 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | [047 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [05e 12-12 14:19:35.88 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 | [05f 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [048 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [049 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [060 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 -peer1.org1.example.com | [04a 12-12 14:19:33.58 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 [] [175 113 163 100 163 131 217 13 161 32 254 33 177 73 30 96 59 148 140 9 114 127 65 47 126 187 77 230 183 16 104 51] peer1.org1.example.com:7051 } incTime is 1513088373581582900 -peer1.org1.example.com | [04b 12-12 14:19:33.58 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 [] [175 113 163 100 163 131 217 13 161 32 254 33 177 73 30 96 59 148 140 9 114 127 65 47 126 187 77 230 183 16 104 51] peer1.org1.example.com:7051 } -peer1.org1.example.com | [04c 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [04d 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [04e 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [061 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 -peer1.org1.example.com | [04f 12-12 14:19:33.58 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.org1.example.com | [050 12-12 14:19:33.58 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 | [051 12-12 14:19:33.58 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.org1.example.com | [062 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -peer1.org1.example.com | [052 12-12 14:19:33.58 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 | [063 12-12 14:19:35.88 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.1.0,txid=32ca9a92-ed67-4cc3-8d99-8b0cc456904d,syscc=true,proposal=0x0,canname=cscc:1.1.0 -peer1.org1.example.com | [053 12-12 14:19:33.58 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.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [054 12-12 14:19:33.58 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: 1801AA01C7060A20AF71A364A383D90D...455254494649434154452D2D2D2D2D0A -peer0.org1.example.com | [064 12-12 14:19:35.88 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.1.0 is being launched -peer1.org1.example.com | [055 12-12 14:19:33.58 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: E5DBAA550AEFF779386B90526F2186B8381D55108BAC803BCD85420AD927D674 -peer0.org1.example.com | [065 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org1.example.com | [056 12-12 14:19:33.58 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.1.0,txid=8e095f54-a09e-40ed-afb5-dd8f5a7c01f3,syscc=true,proposal=0x0,canname=cscc:1.1.0 -peer1.org1.example.com | [057 12-12 14:19:33.58 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.1.0 is being launched -peer0.org1.example.com | [066 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org1.example.com | [058 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer0.org1.example.com | [067 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=cscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -peer1.org1.example.com | [059 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org1.example.com | [068 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer0.org1.example.com | [069 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: cscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) -peer1.org1.example.com | [05a 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=cscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -peer0.org1.example.com | [06a 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer1.org1.example.com | [05b 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer0.org1.example.com | [06b 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org1.example.com | [05c 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: cscc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) -peer1.org1.example.com | [05d 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer1.org1.example.com | [05e 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.1.0 -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.1.0 -peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -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 | [05f 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [060 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock -peer1.org1.example.com | [061 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock -peer1.org1.example.com | [062 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.1.0 -peer1.org1.example.com | [063 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) -peer1.org1.example.com | [064 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org1.example.com:7051 started -peer1.org1.example.com | [065 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer1.org1.example.com | [066 12-12 14:19:33.58 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 | [067 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [068 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF4060A3F0A1B70656572312E6F...455254494649434154452D2D2D2D2D0A -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [069 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 824848356E9CFFCB74CEF3EBA056ED310D24411832286967A3E2DDC6663AC349 -peer1.org1.example.com | [06a 12-12 14:19:33.58 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 | [06b 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [06c 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267312E6578616D706C652E636F6D3A37303531 -peer1.org1.example.com | [06e 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org1.example.com | [06f 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } -peer1.org1.example.com | [070 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Exiting -peer1.org1.example.com | [071 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 -peer1.org1.example.com | [072 12-12 14:19:33.59 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 | [073 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 -peer1.org1.example.com | [074 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org1.example.com | [075 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 -peer1.org1.example.com | [076 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [077 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [078 12-12 14:19:33.59 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 | [079 12-12 14:19:33.59 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 | [07a 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.1.0 -peer1.org1.example.com | [07b 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.1.0" , sending back REGISTERED -peer1.org1.example.com | [07c 12-12 14:19:33.59 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 | [07d 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [07e 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [07f 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | [080 12-12 14:19:33.59 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.1.0 launch seq completed -peer1.org2.example.com | [001 12-12 14:19:33.38 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +Attaching to explorer, fabric-cli, peer0.org1.example.com, orderer.example.com, peer1.org2.example.com, peer0.org2.example.com, peer1.org1.example.com, mysql +explorer | /blockchain-explorer/utils/ledgerMgr.js:23 +explorer | var currChannel=channels[0] +explorer | ^ +explorer | +explorer | TypeError: Cannot read property '0' of undefined +explorer | at Object. (/blockchain-explorer/utils/ledgerMgr.js:23:25) +explorer | at Module._compile (module.js:570:32) +explorer | at Object.Module._extensions..js (module.js:579:10) +explorer | at Module.load (module.js:487:32) +explorer | at tryModuleLoad (module.js:446:12) +explorer | at Function.Module._load (module.js:438:3) +explorer | at Module.require (module.js:497:17) +explorer | at require (internal/module.js:20:19) +explorer | at Object. (/blockchain-explorer/timer/timer.js:28:15) +explorer | at Module._compile (module.js:570:32) +peer0.org1.example.com | [001 12-15 03:49:08.80 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +peer0.org1.example.com | Version: 1.1.0 +peer0.org1.example.com | Go version: go1.9.2 +peer0.org1.example.com | OS/Arch: linux/amd64 +peer0.org1.example.com | Experimental features: false +peer0.org1.example.com | Chaincode: +peer0.org1.example.com | Base Image Version: 0.4.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 12-15 03:49:08.80 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 12-15 03:49:08.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +peer0.org1.example.com | [004 12-15 03:49:08.80 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 12-15 03:49:08.80 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 12-15 03:49:08.94 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 12-15 03:49:10.41 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +peer0.org1.example.com | [008 12-15 03:49:10.41 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +peer0.org1.example.com | [009 12-15 03:49:10.41 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +peer0.org1.example.com | [00a 12-15 03:49:10.68 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] +peer0.org1.example.com | [00b 12-15 03:49:10.68 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist +peer0.org1.example.com | [00c 12-15 03:49:10.68 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists +peer0.org1.example.com | [00d 12-15 03:49:10.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +peer0.org1.example.com | [00e 12-15 03:49:10.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +peer0.org1.example.com | [00f 12-15 03:49:10.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +peer0.org1.example.com | [010 12-15 03:49:10.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +peer0.org1.example.com | [011 12-15 03:49:10.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 +peer0.org1.example.com | [012 12-15 03:49:10.73 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 | [013 12-15 03:49:10.73 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 | [014 12-15 03:49:10.73 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 | [015 12-15 03:49:10.75 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 12-15 03:49:10.75 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 12-15 03:49:10.75 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 12-15 03:49:10.75 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 12-15 03:49:10.75 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto-detected peer address: 172.21.0.6:7051 +peer0.org1.example.com | [01a 12-15 03:49:10.76 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer0.org1.example.com:7051 +peer0.org1.example.com | [01b 12-15 03:49:10.78 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.21.0.6:7051 +peer0.org1.example.com | [01c 12-15 03:49:10.78 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer0.org1.example.com:7051 +peer0.org1.example.com | [01d 12-15 03:49:10.82 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +peer0.org1.example.com | [01e 12-15 03:49:10.84 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 | [01f 12-15 03:49:10.86 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 | [020 12-15 03:49:10.86 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 | [021 12-15 03:49:10.86 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 | [022 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK +peer0.org1.example.com | [023 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +peer0.org1.example.com | [024 12-15 03:49:10.87 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com +peer0.org1.example.com | [025 12-15 03:49:10.87 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer0.org1.example.com:7052 +peer0.org1.example.com | [026 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.NewServerCertKeyPair.newCertKeyPair -> DEBU Classified peer0.org1.example.com as a hostname, adding it as a DNS SAN +peer0.org1.example.com | [027 12-15 03:49:10.90 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 | [028 12-15 03:49:10.91 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 | [029 12-15 03:49:10.91 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 | [02a 12-15 03:49:10.91 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 | [02b 12-15 03:49:10.91 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 | [02c 12-15 03:49:10.91 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 | [02d 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: +peer0.org1.example.com | [02e 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found real value for chaincode.systemPlugins setting to +peer0.org1.example.com | [02f 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey -> DEBU map[chaincode.systemPlugins:] +peer0.org1.example.com | [030 12-15 03:49:10.91 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 | [031 12-15 03:49:10.91 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 | [032 12-15 03:49:10.91 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 | [033 12-15 03:49:10.92 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 | [034 12-15 03:49:10.92 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 | [035 12-15 03:49:10.92 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc,true) disabled +peer0.org1.example.com | [036 12-15 03:49:10.92 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterACLProvider.Do.func1.newACLMgmt.newDefaultACLProvider.initialize.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [037 12-15 03:49:10.92 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +peer0.org1.example.com | [038 12-15 03:49:10.92 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers +peer0.org1.example.com | [039 12-15 03:49:10.92 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultDecorator]] +peer0.org1.example.com | [03a 12-15 03:49:10.92 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.decorators setting to []interface {} [map[name:DefaultDecorator]] +peer0.org1.example.com | [03b 12-15 03:49:10.92 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultAuth]] +peer0.org1.example.com | [03c 12-15 03:49:10.92 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.authFilters setting to []interface {} [map[name:DefaultAuth]] +peer0.org1.example.com | [03d 12-15 03:49:10.92 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[decorators:[map[name:DefaultDecorator]] authFilters:[map[name:DefaultAuth]]]] +peer0.org1.example.com | [03e 12-15 03:49:10.92 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [03f 12-15 03:49:10.93 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [040 12-15 03:49:10.93 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] +peer0.org1.example.com | [041 12-15 03:49:10.95 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 | [042 12-15 03:49:10.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org1.example.com | [043 12-15 03:49:10.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | MIICGjCCAcCgAwIBAgIRAIlXD+JMST62kcDisx8EdZ4wCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +peer0.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOmm7o/jS6n0W46EDsOZNTE89JEAsUy3 +peer0.org1.example.com | JQpocRi7jQOPlSYtnLpN9B7pYFXldzUEYQQ6ULfRD/XfuOFxjy3jdCmjTTBLMA4G +peer0.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +peer0.org1.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0gAMEUCIQCaq7Zt +peer0.org1.example.com | YoGZKFTwKxKIh0iFWj+K1p/LsaPjOd2X4ALGSAIgVHS1jGmxQaam88SeKViUck5+ +peer0.org1.example.com | IDNK9dYOsiKBpmoLVDw= +peer0.org1.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [044 12-15 03:49:10.95 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [045 12-15 03:49:10.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [046 12-15 03:49:10.97 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer0.org1.example.com | [047 12-15 03:49:10.97 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [048 12-15 03:49:10.97 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [049 12-15 03:49:10.97 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer0.org1.example.com | [04b 12-15 03:49:10.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [04c 12-15 03:49:10.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer0.org1.example.com | [04a 12-15 03:49:10.97 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 [] [108 142 114 127 49 107 214 19 118 159 121 0 198 13 82 175 168 90 16 57 126 36 187 230 170 194 139 196 134 10 142 97] peer0.org1.example.com:7051 } incTime is 1513309750977768100 +peer0.org1.example.com | [04d 12-15 03:49:10.99 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 [] [108 142 114 127 49 107 214 19 118 159 121 0 198 13 82 175 168 90 16 57 126 36 187 230 170 194 139 196 134 10 142 97] peer0.org1.example.com:7051 } +peer0.org1.example.com | [04e 12-15 03:49:10.99 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [04f 12-15 03:49:10.99 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [050 12-15 03:49:10.99 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer0.org1.example.com | [051 12-15 03:49:11.00 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.org1.example.com | [052 12-15 03:49:11.00 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 | [053 12-15 03:49:11.00 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.org1.example.com | [054 12-15 03:49:11.01 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 | [055 12-15 03:49:11.01 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.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [056 12-15 03:49:11.01 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: 1801AA01C7060A206C8E727F316BD613...455254494649434154452D2D2D2D2D0A +peer0.org1.example.com | [057 12-15 03:49:11.01 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: 30C1096293DA1830AE09932C8B63C099BB5BBE01B4F9EB70176C57FEC97B5828 +peer0.org1.example.com | [058 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started +peer0.org1.example.com | [059 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +peer0.org1.example.com | [05a 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [05b 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [05c 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF4060A3F0A1B70656572302E6F...455254494649434154452D2D2D2D2D0A +peer0.org1.example.com | [05d 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 1981E2411805525F098358FE021F14BDB0D4CB5FDB4AACF88826C002BEA5AD32 +peer0.org1.example.com | [05e 12-15 03:49:11.01 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 | [05f 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [060 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 +peer0.org1.example.com | [061 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 +peer0.org1.example.com | [062 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself +peer0.org1.example.com | [063 12-15 03:49:11.01 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.1.0,txid=d5c66b03-7d86-44f2-a12d-98cac9839d50,syscc=true,proposal=0x0,canname=cscc:1.1.0 +peer0.org1.example.com | [064 12-15 03:49:11.01 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.1.0 is being launched +peer0.org1.example.com | [065 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer0.org1.example.com | [066 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org1.example.com | [067 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=cscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +peer0.org1.example.com | [068 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +peer0.org1.example.com | [069 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: cscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) +peer0.org1.example.com | [06a 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer0.org1.example.com | [06b 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.1.0 +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +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.org1.example.com | [06c 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock +peer0.org1.example.com | [06d 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock +peer0.org1.example.com | [06e 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.1.0 +peer0.org1.example.com | [06f 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) +peer0.org1.example.com | [071 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 +peer0.org1.example.com | [072 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org1.example.com | [073 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 +peer0.org1.example.com | [074 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [070 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 +peer0.org1.example.com | [075 12-15 03:49:11.01 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 | [076 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [077 12-15 03:49:11.02 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 | [078 12-15 03:49:11.02 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 | [079 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.1.0 +peer0.org1.example.com | [07a 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.1.0" , sending back REGISTERED +peer0.org1.example.com | [07b 12-15 03:49:11.02 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 | [07c 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org1.example.com | [07d 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [07e 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [07f 12-15 03:49:11.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 cscc:1.1.0 launch seq completed +peer0.org1.example.com | [080 12-15 03:49:11.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 | [081 12-15 03:49:11.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 | [082 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d5c66b03]Move state message READY +peer0.org1.example.com | [083 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d5c66b03]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [084 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [d5c66b03]Entered state ready +peer0.org1.example.com | [085 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:d5c66b03-7d86-44f2-a12d-98cac9839d50, channelID: +peer0.org1.example.com | [086 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d5c66b03]sending state message READY +peer0.org1.example.com | [088 12-15 03:49:11.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.org1.example.com | [089 12-15 03:49:11.02 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 | [08a 12-15 03:49:11.02 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 | [08b 12-15 03:49:11.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: cscc:1.1.0 +peer0.org1.example.com | [08c 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d5c66b03]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [08d 12-15 03:49:11.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 | [08e 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d5c66b03]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [08f 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d5c66b03]Move state message INIT +peer0.org1.example.com | [090 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d5c66b03]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [091 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [092 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d5c66b03]sending state message INIT +peer0.org1.example.com | [087 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d5c66b03]Received message READY from shim +peer0.org1.example.com | [093 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d5c66b03]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [094 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d5c66b03]Received message INIT from shim +peer0.org1.example.com | [095 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d5c66b03]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [096 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [097 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d5c66b03]Received INIT, initializing chaincode +peer0.org1.example.com | [098 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org1.example.com | [099 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [09a 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d5c66b03]Init get response status: 200 +peer0.org1.example.com | [09b 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d5c66b03]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [09c 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d5c66b03]Move state message COMPLETED +peer0.org1.example.com | [09d 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d5c66b03]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [09e 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d5c66b03]send state message COMPLETED +peer0.org1.example.com | [09f 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d5c66b03]Received message COMPLETED from shim +peer0.org1.example.com | [0a0 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d5c66b03]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [0a1 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d5c66b03-7d86-44f2-a12d-98cac9839d50]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [0a2 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d5c66b03-7d86-44f2-a12d-98cac9839d50, channelID: +peer0.org1.example.com | [0a3 12-15 03:49:11.02 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 | [0a4 12-15 03:49:11.02 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.org1.example.com | [0a5 12-15 03:49:11.02 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.1.0,txid=0d7f9aa4-93a9-45e9-9b7d-edd023701fe7,syscc=true,proposal=0x0,canname=lscc:1.1.0 +peer0.org1.example.com | [0a6 12-15 03:49:11.02 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.1.0 is being launched +peer0.org1.example.com | [0a7 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer0.org1.example.com | [0a8 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org1.example.com | [0a9 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=lscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +peer0.org1.example.com | [0aa 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key] +peer0.org1.example.com | [0ab 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: lscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) +peer0.org1.example.com | [0ac 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer0.org1.example.com | [0ad 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.1.0 +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +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.org1.example.com | [0ae 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock +peer0.org1.example.com | [0af 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock +peer0.org1.example.com | [0b0 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.1.0 +peer0.org1.example.com | [0b1 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) +peer0.org1.example.com | [0b2 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 +peer0.org1.example.com | [0b3 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org1.example.com | [0b4 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.1.0 +peer0.org1.example.com | [0b5 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [0b6 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 +peer0.org1.example.com | [0b7 12-15 03:49:11.03 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 | [0b8 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [0b9 12-15 03:49:11.03 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 | [0ba 12-15 03:49:11.03 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 | [0bb 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.1.0 +peer0.org1.example.com | [0bc 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.1.0" , sending back REGISTERED +peer0.org1.example.com | [0bd 12-15 03:49:11.03 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 | [0be 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org1.example.com | [0bf 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [0c0 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [0c1 12-15 03:49:11.04 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.1.0 launch seq completed +peer0.org1.example.com | [0c2 12-15 03:49:11.04 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 | [0c3 12-15 03:49:11.04 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 | [0c4 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0d7f9aa4]Move state message READY +peer0.org1.example.com | [0c5 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0d7f9aa4]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [0c6 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [0d7f9aa4]Entered state ready +peer0.org1.example.com | [0c7 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:0d7f9aa4-93a9-45e9-9b7d-edd023701fe7, channelID: +peer0.org1.example.com | [0c9 12-15 03:49:11.04 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 | [0ca 12-15 03:49:11.04 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 | [0cb 12-15 03:49:11.04 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 | [0cc 12-15 03:49:11.04 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.1.0 +peer0.org1.example.com | [0cd 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0d7f9aa4]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [0ce 12-15 03:49:11.04 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 | [0cf 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0d7f9aa4]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [0c8 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0d7f9aa4]sending state message READY +peer0.org1.example.com | [0d1 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d7f9aa4]Received message READY from shim +peer0.org1.example.com | [0d2 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0d7f9aa4]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [0d0 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0d7f9aa4]Move state message INIT +peer0.org1.example.com | [0d3 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0d7f9aa4]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [0d4 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [0d5 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0d7f9aa4]sending state message INIT +peer0.org1.example.com | [0d6 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d7f9aa4]Received message INIT from shim +peer0.org1.example.com | [0d7 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0d7f9aa4]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [0d8 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [0d9 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [0d7f9aa4]Received INIT, initializing chaincode +peer0.org1.example.com | [0da 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [0db 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d7f9aa4]Init get response status: 200 +peer0.org1.example.com | [0dc 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d7f9aa4]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [0dd 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d7f9aa4]Move state message COMPLETED +peer0.org1.example.com | [0de 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0d7f9aa4]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [0df 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d7f9aa4]send state message COMPLETED +peer0.org1.example.com | [0e0 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0d7f9aa4]Received message COMPLETED from shim +peer0.org1.example.com | [0e1 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0d7f9aa4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [0e2 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0d7f9aa4-93a9-45e9-9b7d-edd023701fe7]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [0e3 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0d7f9aa4-93a9-45e9-9b7d-edd023701fe7, channelID: +peer0.org1.example.com | [0e4 12-15 03:49:11.04 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 | [0e5 12-15 03:49:11.05 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 | [0e6 12-15 03:49:11.05 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.1.0,txid=18945a58-71ca-4aad-9489-a5216c668854,syscc=true,proposal=0x0,canname=escc:1.1.0 +peer0.org1.example.com | [0e7 12-15 03:49:11.05 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.1.0 is being launched +peer0.org1.example.com | [0e8 12-15 03:49:11.05 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer0.org1.example.com | [0e9 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org1.example.com | [0ea 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=escc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +peer0.org1.example.com | [0eb 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +peer0.org1.example.com | [0ec 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: escc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) +peer0.org1.example.com | [0ed 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer0.org1.example.com | [0ee 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.1.0 +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +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.org1.example.com | [0ef 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock +orderer.example.com | [001 12-15 03:49:07.99 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/signcerts +orderer.example.com | [002 12-15 03:49:08.00 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem +orderer.example.com | [003 12-15 03:49:08.00 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/cacerts +peer0.org1.example.com | [0f0 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock +peer0.org1.example.com | [0f1 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.1.0 +peer0.org1.example.com | [0f2 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) +peer0.org1.example.com | [0f3 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 +peer0.org1.example.com | [0f4 12-15 03:49:11.06 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 | [0f5 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 +peer0.org1.example.com | [0f6 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org1.example.com | [0f7 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 +peer0.org1.example.com | [0f8 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [0f9 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [0fa 12-15 03:49:11.06 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 | [0fb 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | [004 12-15 03:49:08.01 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem +orderer.example.com | [005 12-15 03:49:08.02 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/admincerts +orderer.example.com | [006 12-15 03:49:08.02 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem +peer0.org1.example.com | [0fc 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.1.0 +orderer.example.com | [007 12-15 03:49:08.02 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/intermediatecerts +orderer.example.com | [008 12-15 03:49:08.02 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] +orderer.example.com | [009 12-15 03:49:08.02 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlscacerts +orderer.example.com | [00a 12-15 03:49:08.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem +orderer.example.com | [00b 12-15 03:49:08.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts +orderer.example.com | [00c 12-15 03:49:08.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/var/hyperledger/orderer/msp/tlsintermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/tlsintermediatecerts: no such file or directory] +orderer.example.com | [00d 12-15 03:49:08.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/crls +orderer.example.com | [00e 12-15 03:49:08.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/var/hyperledger/orderer/msp/crls]. Skipping. [stat /var/hyperledger/orderer/msp/crls: no such file or directory] +orderer.example.com | [00f 12-15 03:49:08.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] +orderer.example.com | [010 12-15 03:49:08.03 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [011 12-15 03:49:08.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [012 12-15 03:49:08.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdWgAwIBAgIQGXf5zEgjlejkE1rJW2znwDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowaTELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFSKPRsXnXvaTTqRKjkTRYYoPjGg +orderer.example.com | TgXRAoMQwI+9AaLXTSL+AsApwlxedr+PJ+UgfBNcxey226YSZRJqLeiH/TajXzBd +peer0.org1.example.com | [0fd 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.1.0" , sending back REGISTERED +peer0.org1.example.com | [0fe 12-15 03:49:11.06 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 | [0ff 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org1.example.com | [100 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [101 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [102 12-15 03:49:11.06 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.1.0 launch seq completed +peer0.org1.example.com | [103 12-15 03:49:11.06 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 | [104 12-15 03:49:11.06 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 | [105 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [18945a58]Move state message READY +peer0.org1.example.com | [106 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [18945a58]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [107 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [18945a58]Entered state ready +peer0.org1.example.com | [108 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:18945a58-71ca-4aad-9489-a5216c668854, channelID: +peer0.org1.example.com | [109 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [18945a58]sending state message READY +peer0.org1.example.com | [10a 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18945a58]Received message READY from shim +peer0.org1.example.com | [10b 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [18945a58]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [10c 12-15 03:49:11.06 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 | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +peer0.org1.example.com | [10d 12-15 03:49:11.06 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 | Af8wKQYDVR0OBCIEIPxyg8RiuCl5W+wOoXUqeRhWBcR2XF2JtWJ5qtJMQ3Y1MAoG +peer0.org1.example.com | [10e 12-15 03:49:11.06 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 | CCqGSM49BAMCA0gAMEUCIQCoRrlZYPh0Qnsp3Z9KitmTDkRqi6JyR4RLiOyfv8Tf +peer0.org1.example.com | [10f 12-15 03:49:11.06 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.1.0 +orderer.example.com | QgIgdHbFqXGTZ0HFQmknUFd5DD4TTltv8Ijmfm8J1skS4jc= +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [110 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [18945a58]Inside sendExecuteMessage. Message INIT +orderer.example.com | [013 12-15 03:49:08.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [111 12-15 03:49:11.06 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 | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +peer0.org1.example.com | [112 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [18945a58]sendExecuteMsg trigger event INIT +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +orderer.example.com | ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +orderer.example.com | Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +orderer.example.com | sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [014 12-15 03:49:08.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +orderer.example.com | ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +orderer.example.com | Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +orderer.example.com | sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [015 12-15 03:49:08.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [113 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [18945a58]Move state message INIT +peer0.org1.example.com | [114 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [18945a58]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [115 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [116 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [18945a58]sending state message INIT +peer0.org1.example.com | [117 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18945a58]Received message INIT from shim +peer0.org1.example.com | [118 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [18945a58]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [119 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [11a 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [18945a58]Received INIT, initializing chaincode +peer0.org1.example.com | [11b 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer0.org1.example.com | [11c 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18945a58]Init get response status: 200 +peer0.org1.example.com | [11d 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18945a58]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [11e 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18945a58]Move state message COMPLETED +peer0.org1.example.com | [11f 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [18945a58]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [120 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18945a58]send state message COMPLETED +peer0.org1.example.com | [121 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [18945a58]Received message COMPLETED from shim +peer0.org1.example.com | [122 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [18945a58]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [123 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [18945a58-71ca-4aad-9489-a5216c668854]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [124 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:18945a58-71ca-4aad-9489-a5216c668854, channelID: +peer0.org1.example.com | [125 12-15 03:49:11.06 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 | [126 12-15 03:49:11.06 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 | [127 12-15 03:49:11.06 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.1.0,txid=5880f3a8-10ca-42c1-90cf-89b963cd8b16,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer0.org1.example.com | [128 12-15 03:49:11.06 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.1.0 is being launched +peer0.org1.example.com | [129 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer0.org1.example.com | [12a 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org1.example.com | [12b 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +peer0.org1.example.com | [12c 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +peer0.org1.example.com | [12d 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) +peer0.org1.example.com | [12e 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer0.org1.example.com | [12f 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.1.0 +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +orderer.example.com | hkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv +peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +orderer.example.com | zQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw +peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +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.org1.example.com | [130 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock +orderer.example.com | ibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv +peer0.org1.example.com | [131 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock +peer0.org1.example.com | [132 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.1.0 +peer0.org1.example.com | [133 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) +orderer.example.com | zjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg= +peer0.org1.example.com | [134 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 +peer0.org1.example.com | [135 12-15 03:49:11.07 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 | [136 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 +peer0.org1.example.com | [137 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org1.example.com | [138 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 +peer0.org1.example.com | [139 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [13a 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [13b 12-15 03:49:11.07 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 | [13c 12-15 03:49:11.07 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 | [13d 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.1.0 +orderer.example.com | [016 12-15 03:49:08.04 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [7b66ccb4d35b4cf4a76d02d4af54bfe2a62dab4763bd3c3ba458944f42ec9881] at [/var/hyperledger/orderer/msp/keystore/7b66ccb4d35b4cf4a76d02d4af54bfe2a62dab4763bd3c3ba458944f42ec9881_sk]... +peer0.org1.example.com | [13e 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.1.0" , sending back REGISTERED +peer0.org1.example.com | [13f 12-15 03:49:11.07 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 | [140 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org1.example.com | [141 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [142 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [143 12-15 03:49:11.07 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.1.0 launch seq completed +peer0.org1.example.com | [144 12-15 03:49:11.07 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 | [017 12-15 03:49:08.04 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [145 12-15 03:49:11.07 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 | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [146 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5880f3a8]Move state message READY +peer0.org1.example.com | [147 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5880f3a8]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [148 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [5880f3a8]Entered state ready +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [149 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:5880f3a8-10ca-42c1-90cf-89b963cd8b16, channelID: +peer0.org1.example.com | [14a 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5880f3a8]sending state message READY +peer0.org1.example.com | [14b 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5880f3a8]Received message READY from shim +peer0.org1.example.com | [14c 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5880f3a8]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [14d 12-15 03:49:11.07 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 | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE +peer0.org1.example.com | [14e 12-15 03:49:11.07 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.org1.example.com | [14f 12-15 03:49:11.07 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 | [150 12-15 03:49:11.07 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.1.0 +peer0.org1.example.com | [151 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5880f3a8]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [152 12-15 03:49:11.08 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 | [153 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5880f3a8]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [154 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5880f3a8]Move state message INIT +peer0.org1.example.com | [155 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5880f3a8]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +peer0.org1.example.com | [156 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | hkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv +peer0.org1.example.com | [157 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5880f3a8]sending state message INIT +peer0.org1.example.com | [158 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5880f3a8]Received message INIT from shim +peer0.org1.example.com | [159 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5880f3a8]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | zQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw +peer0.org2.example.com | [001 12-15 03:49:08.30 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +peer0.org1.example.com | [15a 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | Version: 1.1.0 +peer1.org1.example.com | [001 12-15 03:49:07.96 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd +peer0.org1.example.com | [15b 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [5880f3a8]Received INIT, initializing chaincode +peer0.org2.example.com | Go version: go1.9.2 +peer0.org1.example.com | [15c 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5880f3a8]Init get response status: 200 +peer0.org2.example.com | OS/Arch: linux/amd64 +peer0.org2.example.com | Experimental features: false +peer0.org2.example.com | Chaincode: +peer0.org1.example.com | [15d 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5880f3a8]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [15e 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5880f3a8]Move state message COMPLETED +peer0.org1.example.com | [15f 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5880f3a8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | Base Image Version: 0.4.2 +peer0.org2.example.com | Base Docker Namespace: hyperledger +peer0.org2.example.com | Base Docker Label: org.hyperledger.fabric +peer0.org1.example.com | [160 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5880f3a8]send state message COMPLETED +peer0.org1.example.com | [161 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5880f3a8]Received message COMPLETED from shim +peer0.org1.example.com | [162 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5880f3a8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [163 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5880f3a8-10ca-42c1-90cf-89b963cd8b16]HandleMessage- COMPLETED. Notify +orderer.example.com | ibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv +orderer.example.com | zjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg= +peer0.org1.example.com | [164 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:5880f3a8-10ca-42c1-90cf-89b963cd8b16, channelID: +peer0.org1.example.com | [165 12-15 03:49:11.08 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 | [166 12-15 03:49:11.08 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 | [167 12-15 03:49:11.08 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.1.0,txid=90796812-ff7a-4493-96b3-93977d1e67d0,syscc=true,proposal=0x0,canname=qscc:1.1.0 +peer0.org1.example.com | [168 12-15 03:49:11.09 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.1.0 is being launched +peer0.org1.example.com | [169 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer0.org1.example.com | [16a 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org1.example.com | [16b 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=qscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +peer0.org1.example.com | [16c 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +peer0.org1.example.com | [16d 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: qscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) +peer1.org1.example.com | Version: 1.1.0 +peer0.org1.example.com | [16e 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [001 12-15 03:49:12.40 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +peer0.org1.example.com | [16f 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: peer1.org2.example.com | Version: 1.1.0 peer1.org2.example.com | Go version: go1.9.2 -peer1.org1.example.com | [081 12-12 14:19:33.59 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 | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt peer1.org2.example.com | OS/Arch: linux/amd64 -peer1.org1.example.com | [082 12-12 14:19:33.59 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 | [083 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8e095f54]Move state message READY -peer1.org1.example.com | [084 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8e095f54]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [085 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [8e095f54]Entered state ready -peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt peer1.org2.example.com | Experimental features: false -peer1.org1.example.com | [086 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:8e095f54-a09e-40ed-afb5-dd8f5a7c01f3, channelID: peer1.org2.example.com | Chaincode: peer1.org2.example.com | Base Image Version: 0.4.2 peer1.org2.example.com | Base Docker Namespace: hyperledger peer1.org2.example.com | Base Docker Label: org.hyperledger.fabric -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [087 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8e095f54]sending state message READY peer1.org2.example.com | Docker Namespace: hyperledger peer1.org2.example.com | -peer1.org2.example.com | [002 12-12 14:19:33.38 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 12-12 14:19:33.38 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 | [004 12-12 14:19:33.38 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 | [088 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e095f54]Received message READY from shim -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | [005 12-12 14:19:33.38 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 12-12 14:19:33.38 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 12-12 14:19:33.39 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -peer1.org2.example.com | [008 12-12 14:19:33.39 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -peer1.org2.example.com | [009 12-12 14:19:33.39 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -peer1.org2.example.com | [00a 12-12 14:19:33.40 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] -peer1.org2.example.com | [00b 12-12 14:19:33.40 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist -peer1.org2.example.com | [00c 12-12 14:19:33.40 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists -peer1.org2.example.com | [00d 12-12 14:19:33.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -peer1.org2.example.com | [00e 12-12 14:19:33.41 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -peer1.org2.example.com | [00f 12-12 14:19:33.41 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -peer1.org2.example.com | [010 12-12 14:19:33.41 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -peer1.org2.example.com | [011 12-12 14:19:33.43 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 | [012 12-12 14:19:33.43 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 | [013 12-12 14:19:33.43 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 | [014 12-12 14:19:33.43 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 | [015 12-12 14:19:33.43 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 | [016 12-12 14:19:33.43 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.org1.example.com | [089 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8e095f54]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [017 12-12 14:19:33.43 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 | [018 12-12 14:19:33.43 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized -peer1.org2.example.com | [019 12-12 14:19:33.43 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto-detected peer address: 172.18.0.2:7051 -peer1.org1.example.com | [08a 12-12 14:19:33.59 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 | 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 | [01a 12-12 14:19:33.43 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer1.org2.example.com:7051 -peer1.org1.example.com | [08b 12-12 14:19:33.59 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 | [01b 12-12 14:19:33.43 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.18.0.2:7051 -peer1.org1.example.com | [08c 12-12 14:19:33.59 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 | [01c 12-12 14:19:33.43 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer1.org2.example.com:7051 -peer0.org1.example.com | [06c 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock -peer1.org2.example.com | [01d 12-12 14:19:33.44 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer1.org2.example.com | [01e 12-12 14:19:33.45 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 | [06d 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock -peer1.org2.example.com | [01f 12-12 14:19:33.45 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 | [08d 12-12 14:19:33.59 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.1.0 -peer0.org1.example.com | [06e 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.1.0 -peer1.org1.example.com | [08e 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8e095f54]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [020 12-12 14:19:33.45 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 | [08f 12-12 14:19:33.59 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 | [070 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 -peer1.org2.example.com | [021 12-12 14:19:33.45 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 | [090 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8e095f54]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [071 12-12 14:19:35.88 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 | [091 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8e095f54]Move state message INIT -peer1.org2.example.com | [022 12-12 14:19:33.45 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK -peer0.org1.example.com | [072 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 -peer0.org1.example.com | [073 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org2.example.com | [023 12-12 14:19:33.45 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer1.org1.example.com | [092 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8e095f54]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [093 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [024 12-12 14:19:33.45 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer1.org2.example.com -peer0.org1.example.com | [074 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 -peer0.org1.example.com | [075 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [094 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8e095f54]sending state message INIT -peer1.org2.example.com | [025 12-12 14:19:33.45 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer1.org2.example.com:7052 -peer1.org1.example.com | [095 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e095f54]Received message INIT from shim -peer1.org1.example.com | [096 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8e095f54]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [06f 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) -peer1.org2.example.com | [026 12-12 14:19:33.47 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.NewServerCertKeyPair.newCertKeyPair -> DEBU Classified peer1.org2.example.com as a hostname, adding it as a DNS SAN -peer1.org2.example.com | [027 12-12 14:19:33.47 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 | [097 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [076 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [098 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [8e095f54]Received INIT, initializing chaincode -peer1.org2.example.com | [028 12-12 14:19:33.47 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 | [077 12-12 14:19:35.88 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 | [078 12-12 14:19:35.88 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 | [099 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org1.example.com | [079 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.1.0 -peer0.org1.example.com | [07a 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.1.0" , sending back REGISTERED -peer0.org1.example.com | [07b 12-12 14:19:35.88 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 | [07c 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [029 12-12 14:19:33.47 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 | [07d 12-12 14:19:35.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 cscc:1.1.0 launch seq completed -peer1.org1.example.com | [09a 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [02a 12-12 14:19:33.47 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 | [09b 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e095f54]Init get response status: 200 -peer0.org1.example.com | [07e 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [09c 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e095f54]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [07f 12-12 14:19:35.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.org1.example.com | [09d 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e095f54]Move state message COMPLETED -peer1.org2.example.com | [02b 12-12 14:19:33.47 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 | [09e 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8e095f54]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [080 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [02c 12-12 14:19:33.47 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.org2.example.com | [02d 12-12 14:19:33.47 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: -peer1.org1.example.com | [09f 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e095f54]send state message COMPLETED -peer1.org1.example.com | [0a0 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8e095f54]Received message COMPLETED from shim -peer1.org1.example.com | [0a1 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8e095f54]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [0a2 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8e095f54-a09e-40ed-afb5-dd8f5a7c01f3]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [0a3 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8e095f54-a09e-40ed-afb5-dd8f5a7c01f3, channelID: -peer1.org1.example.com | [0a4 12-12 14:19:33.59 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 | [0a5 12-12 14:19:33.59 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 | [0a6 12-12 14:19:33.59 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.1.0,txid=246b02e8-1e55-4590-b129-9352a4bbfcc0,syscc=true,proposal=0x0,canname=lscc:1.1.0 -peer1.org1.example.com | [0a7 12-12 14:19:33.59 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.1.0 is being launched -peer1.org1.example.com | [0a8 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org2.example.com | [02e 12-12 14:19:33.47 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found real value for chaincode.systemPlugins setting to -peer0.org1.example.com | [081 12-12 14:19:35.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.org1.example.com | [0a9 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org2.example.com | [02f 12-12 14:19:33.47 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey -> DEBU map[chaincode.systemPlugins:] -peer0.org1.example.com | [082 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32ca9a92]Move state message READY -peer1.org1.example.com | [0aa 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=lscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -peer1.org2.example.com | [030 12-12 14:19:33.48 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 | [0ab 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer0.org1.example.com | [083 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [32ca9a92]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [031 12-12 14:19:33.48 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 | [084 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [32ca9a92]Entered state ready -peer1.org1.example.com | [0ac 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: lscc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) -peer1.org2.example.com | [032 12-12 14:19:33.48 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 | [085 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:32ca9a92-ed67-4cc3-8d99-8b0cc456904d, channelID: -peer1.org1.example.com | [0ad 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer1.org1.example.com | [0ae 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org2.example.com | [033 12-12 14:19:33.48 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 | [086 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32ca9a92]sending state message READY -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.1.0 -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | [034 12-12 14:19:33.48 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 | [087 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32ca9a92]Received message READY from shim -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | [035 12-12 14:19:33.48 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc,true) disabled -peer0.org1.example.com | [088 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [32ca9a92]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [036 12-12 14:19:33.48 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterACLProvider.Do.func1.newACLMgmt.newDefaultACLProvider.initialize.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [089 12-12 14:19:35.89 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 | 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 | [08a 12-12 14:19:35.89 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 | [037 12-12 14:19:33.48 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer1.org1.example.com | [0af 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock -peer0.org1.example.com | [08b 12-12 14:19:35.89 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 | [038 12-12 14:19:33.48 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers -peer1.org2.example.com | [039 12-12 14:19:33.48 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultAuth]] -peer1.org2.example.com | [03a 12-12 14:19:33.48 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.authFilters setting to []interface {} [map[name:DefaultAuth]] -peer0.org1.example.com | [08c 12-12 14:19:35.89 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.1.0 -peer1.org1.example.com | [0b0 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock -peer1.org1.example.com | [0b1 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.1.0 -peer1.org1.example.com | [0b2 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) -peer1.org2.example.com | [03b 12-12 14:19:33.48 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultDecorator]] -peer0.org1.example.com | [08d 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [32ca9a92]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [0b3 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 -peer1.org2.example.com | [03c 12-12 14:19:33.49 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.decorators setting to []interface {} [map[name:DefaultDecorator]] -orderer.example.com | [001 12-12 14:19:36.12 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/signcerts -peer0.org1.example.com | [08e 12-12 14:19:35.89 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 | [03d 12-12 14:19:33.49 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[authFilters:[map[name:DefaultAuth]] decorators:[map[name:DefaultDecorator]]]] -orderer.example.com | [002 12-12 14:19:36.13 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem -peer1.org1.example.com | [0b4 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org1.example.com | [08f 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [32ca9a92]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [03e 12-12 14:19:33.49 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [003 12-12 14:19:36.13 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/cacerts -peer0.org1.example.com | [090 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32ca9a92]Move state message INIT -peer0.org1.example.com | [091 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [32ca9a92]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [092 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [093 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32ca9a92]sending state message INIT -peer0.org1.example.com | [094 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32ca9a92]Received message INIT from shim -peer0.org1.example.com | [095 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [32ca9a92]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [096 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [097 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [32ca9a92]Received INIT, initializing chaincode -peer0.org1.example.com | [098 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer1.org1.example.com | [0b5 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.1.0 -peer1.org1.example.com | [0b6 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [0b7 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 -peer1.org2.example.com | [03f 12-12 14:19:33.49 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [004 12-12 14:19:36.14 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem -peer0.org1.example.com | [099 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [0b8 12-12 14:19:33.59 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 | [040 12-12 14:19:33.49 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 [peer1.org2.example.com:7051] -orderer.example.com | [005 12-12 14:19:36.14 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/admincerts -peer1.org1.example.com | [06d 12-12 14:19:33.58 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 5E1207E32E2709D3C49FD6E4E42EA75E054BF7CAB0517372323BB60EB639719F -peer0.org1.example.com | [09a 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32ca9a92]Init get response status: 200 -peer1.org2.example.com | [041 12-12 14:19:33.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 -orderer.example.com | [006 12-12 14:19:36.14 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem -peer0.org1.example.com | [09b 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32ca9a92]Init succeeded. Sending COMPLETED -orderer.example.com | [007 12-12 14:19:36.14 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/intermediatecerts -peer1.org2.example.com | [042 12-12 14:19:33.52 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org1.example.com | [0b9 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | [008 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU 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 | [043 12-12 14:19:33.53 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | [009 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlscacerts -peer1.org2.example.com | MIICGTCCAcCgAwIBAgIRAPGelOdxXc9oj513U/gIAoswCgYIKoZIzj0EAwIwczEL -orderer.example.com | [00a 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem -peer1.org1.example.com | [0ba 12-12 14:19:33.60 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | [00b 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts -peer0.org1.example.com | [09c 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32ca9a92]Move state message COMPLETED -peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [0bb 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | [00c 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU 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.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDExWhcNMjcxMjEwMDg0MDEx -orderer.example.com | [00d 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/crls -peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [09d 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [32ca9a92]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [0bc 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.1.0 -peer0.org1.example.com | [09e 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32ca9a92]send state message COMPLETED -peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABP48rqtcNNXgWStMJAAcSs0pMybkXlxN -orderer.example.com | [00e 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU 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 | [0bd 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.1.0" , sending back REGISTERED -peer0.org1.example.com | [09f 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32ca9a92]Received message COMPLETED from shim -peer1.org2.example.com | g+bvwZCmkq1DbIGJwn5LGRQJ/dnP/9vvQCckEiPkarSuoH3FtkvHuKejTTBLMA4G -orderer.example.com | [00f 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU 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.org1.example.com | [0a0 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [32ca9a92]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIB00HMbKmDSV -orderer.example.com | [010 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [0a1 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [32ca9a92-ed67-4cc3-8d99-8b0cc456904d]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [0be 12-12 14:19:33.60 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 | 0+jpCzRTbEnipFJ9AyT9izQzmI9mqSY9MAoGCCqGSM49BAMCA0cAMEQCIFhNymPu -orderer.example.com | [011 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -peer0.org1.example.com | [0a2 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:32ca9a92-ed67-4cc3-8d99-8b0cc456904d, channelID: -peer1.org2.example.com | 7ilbI62JiuL9JUYa+f6+J31qLbVVou4nkbwIAiBG8ex/sGf2cTf5F51gUhhCQZ42 -orderer.example.com | [012 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [0a3 12-12 14:19:35.89 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 | [0bf 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | dERXC0iEeQyYe63F5w== -orderer.example.com | MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [0a4 12-12 14:19:35.89 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 | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [0a5 12-12 14:19:35.89 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.1.0,txid=86bda0b3-0d5a-42dc-8eee-fbd83ae6d193,syscc=true,proposal=0x0,canname=lscc:1.1.0 -peer1.org2.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [0c0 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [0a6 12-12 14:19:35.89 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.1.0 is being launched -peer1.org2.example.com | [044 12-12 14:19:33.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -peer1.org2.example.com | [045 12-12 14:19:33.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [0c2 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -orderer.example.com | ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -peer1.org2.example.com | [046 12-12 14:19:33.53 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org1.example.com | [0a7 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org1.example.com | [0c1 12-12 14:19:33.60 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.1.0 launch seq completed -peer1.org2.example.com | [047 12-12 14:19:33.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -orderer.example.com | Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -peer0.org1.example.com | [0a8 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org2.example.com | [048 12-12 14:19:33.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -peer1.org1.example.com | [0c3 12-12 14:19:33.60 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 | [0c4 12-12 14:19:33.60 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 | [0c5 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [246b02e8]Move state message READY -peer0.org1.example.com | [0a9 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=lscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -orderer.example.com | 0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= -peer1.org2.example.com | [049 12-12 14:19:33.53 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org1.example.com | [0aa 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer0.org1.example.com | [0ab 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: lscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [04a 12-12 14:19:33.54 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 [] [231 79 112 172 29 188 61 97 228 67 181 147 149 105 145 28 209 199 166 38 187 115 184 160 158 236 46 201 112 152 62 255] peer1.org2.example.com:7051 } incTime is 1513088373539835700 -peer1.org1.example.com | [0c6 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [246b02e8]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [0c7 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [246b02e8]Entered state ready -peer0.org1.example.com | [0ac 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer1.org2.example.com | [04b 12-12 14:19:33.54 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 [] [231 79 112 172 29 188 61 97 228 67 181 147 149 105 145 28 209 199 166 38 187 115 184 160 158 236 46 201 112 152 62 255] peer1.org2.example.com:7051 } -orderer.example.com | [013 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [0ad 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org2.example.com | [04c 12-12 14:19:33.54 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [0c8 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:246b02e8-1e55-4590-b129-9352a4bbfcc0, channelID: -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.1.0 -peer1.org2.example.com | [04d 12-12 14:19:33.54 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [0c9 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [246b02e8]sending state message READY -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org2.example.com | [04e 12-12 14:19:33.54 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer1.org1.example.com | [0ca 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [246b02e8]Received message READY from shim -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org2.example.com | [04f 12-12 14:19:33.54 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 | [050 12-12 14:19:33.54 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 | [051 12-12 14:19:33.54 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.org2.example.com | [053 12-12 14:19:33.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [052 12-12 14:19:33.55 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.org2.example.com | [054 12-12 14:19:33.55 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.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [055 12-12 14:19:33.55 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: 1801AA01C7060A20E74F70AC1DBC3D61...455254494649434154452D2D2D2D2D0A -peer1.org2.example.com | [056 12-12 14:19:33.55 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: B888B33DBC1E91770C81C1D6A54D3C8D169F145E478CCEDA4FD34E132A864CCF -peer1.org2.example.com | [057 12-12 14:19:33.55 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.1.0,txid=5c1aa246-90d5-40a2-85a5-fb314cc2ebe2,syscc=true,proposal=0x0,canname=cscc:1.1.0 -peer1.org2.example.com | [058 12-12 14:19:33.55 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.1.0 is being launched -peer1.org2.example.com | [059 12-12 14:19:33.55 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org2.example.com | [05a 12-12 14:19:33.55 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org1.example.com | [0cc 12-12 14:19:33.60 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 | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | [05b 12-12 14:19:33.55 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=cscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -peer1.org2.example.com | [05c 12-12 14:19:33.55 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] -peer1.org2.example.com | [05d 12-12 14:19:33.55 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: cscc:1.1.0(networkid:dev,peerid:peer1.org2.example.com) -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org1.example.com | [0cd 12-12 14:19:33.60 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 | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | [05e 12-12 14:19:33.55 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org1.example.com | [0ce 12-12 14:19:33.60 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 | 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 | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -peer0.org1.example.com | [0ae 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock -peer1.org1.example.com | [0cf 12-12 14:19:33.60 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.1.0 -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org2.example.com | [05f 12-12 14:19:33.55 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.1.0 -peer0.org1.example.com | [0af 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | [0b0 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.1.0 -peer0.org1.example.com | [0b1 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) -peer0.org1.example.com | [0b3 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [0b2 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 -peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -orderer.example.com | [014 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [0d0 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [246b02e8]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [0b5 12-12 14:19:35.89 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 | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | [0d1 12-12 14:19:33.60 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 | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org1.example.com | [0b4 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org1.example.com | [0d2 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [246b02e8]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [0d3 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [246b02e8]Move state message INIT -peer0.org1.example.com | [0b6 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.1.0 -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -peer0.org1.example.com | [0b7 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [0d4 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [246b02e8]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [0b8 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | [0b9 12-12 14:19:35.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 | [015 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [0ba 12-12 14:19:35.90 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 | 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 | [060 12-12 14:19:33.55 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock -peer1.org2.example.com | [061 12-12 14:19:33.55 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock -peer1.org1.example.com | [0d5 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | MIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [0bb 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.1.0 -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [0bc 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.1.0" , sending back REGISTERED -peer1.org1.example.com | [0d6 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [246b02e8]sending state message INIT -peer1.org2.example.com | [062 12-12 14:19:33.55 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.1.0 -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [0bd 12-12 14:19:35.90 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 | bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE -peer1.org1.example.com | [0cb 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [246b02e8]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org2.example.com | [063 12-12 14:19:33.55 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) -peer0.org1.example.com | [0be 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -peer0.org1.example.com | [0bf 12-12 14:19:35.90 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.1.0 launch seq completed -peer1.org1.example.com | [0d7 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [246b02e8]Received message INIT from shim -peer1.org2.example.com | [064 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org2.example.com:7051 started -orderer.example.com | hkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN -peer0.org1.example.com | [0c0 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [0d8 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [246b02e8]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | tV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw -peer1.org2.example.com | [065 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -peer0.org1.example.com | [0c1 12-12 14:19:35.90 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 | [0d9 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE -peer1.org1.example.com | [0da 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [246b02e8]Received INIT, initializing chaincode -peer0.org1.example.com | [0c2 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | +EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q -orderer.example.com | XZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd -peer1.org2.example.com | [066 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [0db 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [067 12-12 14:19:33.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 | [016 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [d80ee555fb204c63d83ff1b5969f32b66bf818b233fc7b129d548526c916334f] at [/var/hyperledger/orderer/msp/keystore/d80ee555fb204c63d83ff1b5969f32b66bf818b233fc7b129d548526c916334f_sk]... -orderer.example.com | [017 12-12 14:19:36.16 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN -orderer.example.com | tV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE -orderer.example.com | +EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q -peer0.org1.example.com | [0c3 12-12 14:19:35.90 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 | [068 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer1.org1.example.com | [0dc 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [246b02e8]Init get response status: 200 -peer1.org1.example.com | [0dd 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [246b02e8]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [0de 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [246b02e8]Move state message COMPLETED -peer1.org1.example.com | [0df 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [246b02e8]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [0e0 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [246b02e8]send state message COMPLETED -peer1.org1.example.com | [0e1 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [246b02e8]Received message COMPLETED from shim -peer1.org1.example.com | [0e2 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [246b02e8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | XZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd -peer0.org1.example.com | [0c4 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [86bda0b3]Move state message READY -peer1.org1.example.com | [0e3 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [246b02e8-1e55-4590-b129-9352a4bbfcc0]HandleMessage- COMPLETED. Notify -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [069 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [0c5 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [86bda0b3]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | [018 12-12 14:19:36.16 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [019 12-12 14:19:36.16 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeServerConfig -> INFO Starting orderer with TLS enabled -orderer.example.com | [01a 12-12 14:19:36.17 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory -> DEBU Ledger dir: /var/hyperledger/production/orderer -peer0.org1.example.com | [0c6 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [86bda0b3]Entered state ready -orderer.example.com | [01b 12-12 14:19:36.17 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New -> DEBU Initializing ledger at: /var/hyperledger/production/orderer -peer1.org1.example.com | [0e4 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:246b02e8-1e55-4590-b129-9352a4bbfcc0, channelID: -orderer.example.com | [01c 12-12 14:19:36.17 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate -> DEBU Initializing chain testchainid at: /var/hyperledger/production/orderer/chain_testchainid -peer0.org1.example.com | [0c7 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:86bda0b3-0d5a-42dc-8eee-fbd83ae6d193, channelID: -peer1.org2.example.com | [06a 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [0e5 12-12 14:19:33.60 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 | [01d 12-12 14:19:36.17 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.newChain -> DEBU Initialized to block height 18446744073709551615 with hash -peer1.org1.example.com | [0e6 12-12 14:19:33.60 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 | [0c8 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [86bda0b3]sending state message READY -peer1.org2.example.com | [06b 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF4060A3F0A1B70656572312E6F...455254494649434154452D2D2D2D2D0A -orderer.example.com | [01e 12-12 14:19:36.17 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.Append.writeBlock -> DEBU Wrote block 0 -peer0.org1.example.com | [0ca 12-12 14:19:35.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.org1.example.com | [0e7 12-12 14:19:33.60 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.1.0,txid=ce44b309-8039-478d-90a1-7f27c0945469,syscc=true,proposal=0x0,canname=escc:1.1.0 -peer1.org2.example.com | [06c 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 000FF886FE666288EE63AAB15E32D9B8C423837D1DE3975D7BBA1F751E48B4C4 -orderer.example.com | [01f 12-12 14:19:36.17 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.readBlock -> DEBU Read block 0 -orderer.example.com | [020 12-12 14:19:36.17 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.readBlock -> DEBU Read block 0 -peer1.org1.example.com | [0e8 12-12 14:19:33.60 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.1.0 is being launched -peer0.org1.example.com | [0cb 12-12 14:19:35.90 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 | [021 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org1.example.com | [0e9 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer0.org1.example.com | [0cc 12-12 14:19:35.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 | [06d 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [022 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [0cd 12-12 14:19:35.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: lscc:1.1.0 -peer0.org1.example.com | [0c9 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [86bda0b3]Received message READY from shim -peer1.org1.example.com | [0ea 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -orderer.example.com | [023 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [024 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [06e 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [06f 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267322E6578616D706C652E636F6D3A37303531 -peer1.org2.example.com | [070 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 84DCB4760C577E9B4E2A280CB22EA6979C16748D7FD46DCFD4002D8650CAD285 -peer1.org2.example.com | [071 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 -peer1.org1.example.com | [0eb 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=escc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -peer0.org1.example.com | [0cf 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [86bda0b3]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | [025 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [072 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org1.example.com | [0ec 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer0.org1.example.com | [0ce 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [86bda0b3]Inside sendExecuteMessage. Message INIT -orderer.example.com | [026 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [0ed 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: escc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) -peer0.org1.example.com | [0d0 12-12 14:19:35.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... -orderer.example.com | [027 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org2.example.com | [073 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 -peer1.org1.example.com | [0ee 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer0.org2.example.com | [001 12-12 14:19:34.50 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -peer0.org1.example.com | [0d1 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [86bda0b3]sendExecuteMsg trigger event INIT -orderer.example.com | [028 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [029 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [02a 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [02b 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [0ef 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer0.org2.example.com | Version: 1.1.0 -peer1.org2.example.com | [074 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [0d2 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [86bda0b3]Move state message INIT -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.1.0 -peer0.org2.example.com | Go version: go1.9.2 -peer0.org1.example.com | [0d3 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [86bda0b3]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | OS/Arch: linux/amd64 -peer0.org1.example.com | [0d4 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [075 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org2.example.com | Experimental features: false -peer0.org1.example.com | [0d5 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [86bda0b3]sending state message INIT -orderer.example.com | [02c 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org2.example.com | Chaincode: -peer0.org1.example.com | [0d6 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [86bda0b3]Received message INIT from shim -peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org2.example.com | Base Image Version: 0.4.2 -peer0.org1.example.com | [0d7 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [86bda0b3]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [076 12-12 14:19:33.56 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 | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | Base Docker Namespace: hyperledger -peer0.org1.example.com | [0d8 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [077 12-12 14:19:33.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 | [02d 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | Base Docker Label: org.hyperledger.fabric +peer1.org2.example.com | [002 12-15 03:49:12.40 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 12-15 03:49:12.40 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 | [004 12-15 03:49:12.40 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 12-15 03:49:12.40 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 12-15 03:49:12.40 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 12-15 03:49:12.42 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +peer1.org2.example.com | [008 12-15 03:49:12.42 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +peer1.org2.example.com | [009 12-15 03:49:12.42 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +peer1.org2.example.com | [00a 12-15 03:49:12.44 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.1.0 +peer1.org2.example.com | [00b 12-15 03:49:12.44 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist +orderer.example.com | [018 12-15 03:49:08.04 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer1.org2.example.com | [00c 12-15 03:49:12.44 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists +peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer1.org2.example.com | [00d 12-15 03:49:12.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +peer1.org1.example.com | Go version: go1.9.2 +orderer.example.com | [019 12-15 03:49:08.05 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeServerConfig -> INFO Starting orderer with TLS enabled +peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org2.example.com | [00e 12-15 03:49:12.47 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +peer1.org1.example.com | OS/Arch: linux/amd64 +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org2.example.com | [00f 12-15 03:49:12.47 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +orderer.example.com | [01a 12-15 03:49:08.05 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory -> DEBU Ledger dir: /var/hyperledger/production/orderer +peer1.org1.example.com | Experimental features: false +peer1.org2.example.com | [010 12-15 03:49:12.47 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +peer1.org1.example.com | Chaincode: +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +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 | [011 12-15 03:49:12.48 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 | Base Image Version: 0.4.2 +peer1.org1.example.com | Base Docker Namespace: hyperledger +peer0.org1.example.com | [170 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock +peer1.org2.example.com | [012 12-15 03:49:12.48 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 | [01b 12-15 03:49:08.05 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/index/] +peer1.org1.example.com | Base Docker Label: org.hyperledger.fabric +peer1.org2.example.com | [013 12-15 03:49:12.48 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 | [171 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock +peer1.org2.example.com | [014 12-15 03:49:12.48 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 | Docker Namespace: hyperledger +orderer.example.com | [01c 12-15 03:49:08.05 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/index/] does not exist +peer1.org2.example.com | [015 12-15 03:49:12.50 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 | [172 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.1.0 +peer1.org1.example.com | +peer1.org2.example.com | [016 12-15 03:49:12.50 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 | Docker Namespace: hyperledger +peer0.org1.example.com | [173 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) +peer1.org1.example.com | [002 12-15 03:49:07.96 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 | [01d 12-15 03:49:08.05 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/index/] exists +peer1.org2.example.com | [017 12-15 03:49:12.50 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 | -peer0.org2.example.com | [002 12-12 14:19:34.50 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 12-12 14:19:34.50 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 12-12 14:19:34.50 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 12-12 14:19:34.50 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 12-12 14:19:34.50 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 12-12 14:19:34.50 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -peer0.org2.example.com | [008 12-12 14:19:34.50 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -peer0.org2.example.com | [009 12-12 14:19:34.50 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -peer0.org1.example.com | [0d9 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [86bda0b3]Received INIT, initializing chaincode -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 | [078 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.1.0 -orderer.example.com | [02e 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [02f 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [030 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [031 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org2.example.com | [00a 12-12 14:19:34.51 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] -peer1.org2.example.com | [07a 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.1.0" , sending back REGISTERED -peer1.org2.example.com | [07b 12-12 14:19:33.56 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 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [00b 12-12 14:19:34.51 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist -orderer.example.com | [032 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer1.org1.example.com | [0f0 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock -peer1.org2.example.com | [079 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org1.example.com | [0db 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [86bda0b3]Init get response status: 200 -peer0.org2.example.com | [00c 12-12 14:19:34.51 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists -peer1.org1.example.com | [0f1 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock -peer0.org1.example.com | [0dc 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [86bda0b3]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [00d 12-12 14:19:34.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -peer1.org2.example.com | [07c 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -orderer.example.com | [033 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -peer0.org1.example.com | [0dd 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [86bda0b3]Move state message COMPLETED -peer1.org1.example.com | [0f2 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.1.0 -peer0.org2.example.com | [00e 12-12 14:19:34.51 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -orderer.example.com | [034 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [07d 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [0de 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [86bda0b3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [0f3 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 -peer0.org2.example.com | [00f 12-12 14:19:34.51 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -peer1.org2.example.com | [07e 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [07f 12-12 14:19:33.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 cscc:1.1.0 launch seq completed -orderer.example.com | MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [0df 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [86bda0b3]send state message COMPLETED -peer1.org1.example.com | [0f4 12-12 14:19:33.61 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 | [010 12-12 14:19:34.51 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -peer0.org1.example.com | [0e0 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [86bda0b3]Received message COMPLETED from shim -peer1.org1.example.com | [0f5 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 -peer1.org2.example.com | [080 12-12 14:19:33.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.org2.example.com | [011 12-12 14:19:34.51 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 | [0e1 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [86bda0b3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [0e2 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [86bda0b3-0d5a-42dc-8eee-fbd83ae6d193]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [0f6 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org2.example.com | [012 12-12 14:19:34.51 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 | [081 12-12 14:19:33.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 | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [0e3 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:86bda0b3-0d5a-42dc-8eee-fbd83ae6d193, channelID: -peer1.org1.example.com | [0f7 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 -peer0.org2.example.com | [013 12-12 14:19:34.51 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 | [0e4 12-12 14:19:35.90 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 | [014 12-12 14:19:34.51 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 | [0f8 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [082 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c1aa246]Move state message READY -peer0.org1.example.com | [0e5 12-12 14:19:35.90 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 | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org2.example.com | [015 12-12 14:19:34.52 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 | [0f9 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [0e6 12-12 14:19:35.90 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.1.0,txid=1a07d635-85d0-4038-bb67-e68f71195e54,syscc=true,proposal=0x0,canname=escc:1.1.0 -peer0.org2.example.com | [016 12-12 14:19:34.52 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 | [083 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5c1aa246]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -peer1.org1.example.com | [0fa 12-12 14:19:33.61 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 | [017 12-12 14:19:34.52 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 | [084 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [5c1aa246]Entered state ready -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org1.example.com | [0fb 12-12 14:19:33.61 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 | [0e7 12-12 14:19:35.90 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.1.0 is being launched -peer0.org1.example.com | [0e8 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer0.org1.example.com | [0e9 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org1.example.com | [0ea 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=escc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -peer0.org2.example.com | [018 12-12 14:19:34.52 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 | [0fc 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.1.0 -peer1.org2.example.com | [085 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:5c1aa246-90d5-40a2-85a5-fb314cc2ebe2, channelID: -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -peer0.org2.example.com | [019 12-12 14:19:34.52 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 -peer0.org1.example.com | [0eb 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer1.org1.example.com | [0fd 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.1.0" , sending back REGISTERED -peer1.org1.example.com | [0fe 12-12 14:19:33.61 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 | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -peer0.org2.example.com | [01a 12-12 14:19:34.52 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer0.org2.example.com:7051 -peer1.org2.example.com | [086 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c1aa246]sending state message READY -peer1.org1.example.com | [0ff 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | [0ec 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: escc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) -peer0.org2.example.com | [01b 12-12 14:19:34.52 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 -orderer.example.com | ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -peer1.org2.example.com | [087 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c1aa246]Received message READY from shim -peer0.org1.example.com | [0ed 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer1.org1.example.com | [100 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [01c 12-12 14:19:34.52 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer0.org2.example.com:7051 -peer1.org2.example.com | [088 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5c1aa246]Handling ChaincodeMessage of type: READY(state:established) -peer1.org1.example.com | [101 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | [102 12-12 14:19:33.61 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.1.0 launch seq completed -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -peer0.org1.example.com | [0ee 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer0.org2.example.com | [01d 12-12 14:19:34.53 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer1.org1.example.com | [103 12-12 14:19:33.61 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 | Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.1.0 -peer1.org1.example.com | [104 12-12 14:19:33.61 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 | [01e 12-12 14:19:34.53 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK -peer1.org2.example.com | [089 12-12 14:19:33.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.org1.example.com | [105 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ce44b309]Move state message READY -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | [01f 12-12 14:19:34.53 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -peer1.org2.example.com | [08a 12-12 14:19:33.56 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 | [106 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ce44b309]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [020 12-12 14:19:34.53 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 | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org1.example.com | [107 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [ce44b309]Entered state ready -orderer.example.com | 0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= -peer0.org2.example.com | [021 12-12 14:19:34.53 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [08b 12-12 14:19:33.56 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 | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org1.example.com | [108 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:ce44b309-8039-478d-90a1-7f27c0945469, channelID: -peer0.org2.example.com | [022 12-12 14:19:34.53 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK -orderer.example.com | [035 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [08c 12-12 14:19:33.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: cscc:1.1.0 -peer1.org1.example.com | [109 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ce44b309]sending state message READY -peer0.org2.example.com | [023 12-12 14:19:34.53 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -peer1.org2.example.com | [08d 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5c1aa246]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [10a 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ce44b309]Received message READY from shim -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [024 12-12 14:19:34.53 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org2.example.com -peer1.org2.example.com | [08e 12-12 14:19:33.56 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 | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | [10b 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ce44b309]Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [025 12-12 14:19:34.53 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer0.org2.example.com:7052 -peer1.org2.example.com | [08f 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5c1aa246]sendExecuteMsg trigger event INIT -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 | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -peer0.org2.example.com | [026 12-12 14:19:34.54 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.NewServerCertKeyPair.newCertKeyPair -> DEBU Classified peer0.org2.example.com as a hostname, adding it as a DNS SAN -peer1.org2.example.com | [090 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c1aa246]Move state message INIT -peer1.org1.example.com | [10c 12-12 14:19:33.61 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 | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [0ef 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org2.example.com | [091 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5c1aa246]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -peer1.org1.example.com | [10d 12-12 14:19:33.61 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 | [027 12-12 14:19:34.54 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 | [10e 12-12 14:19:33.61 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 | [092 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [0f0 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock -peer0.org2.example.com | [028 12-12 14:19:34.54 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 -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org1.example.com | [10f 12-12 14:19:33.61 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.1.0 -peer1.org2.example.com | [093 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c1aa246]sending state message INIT -peer0.org2.example.com | [029 12-12 14:19:34.54 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 | [0f1 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.1.0 -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -peer1.org2.example.com | [094 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c1aa246]Received message INIT from shim -peer1.org1.example.com | [110 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ce44b309]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [02a 12-12 14:19:34.54 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 | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -peer1.org2.example.com | [095 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5c1aa246]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [0f2 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) -peer1.org1.example.com | [111 12-12 14:19:33.61 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 | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -peer0.org2.example.com | [02b 12-12 14:19:34.54 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 | [096 12-12 14:19:33.56 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 | [02c 12-12 14:19:34.54 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 | [0f3 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 -peer1.org1.example.com | [112 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ce44b309]sendExecuteMsg trigger event INIT -orderer.example.com | [036 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [097 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [5c1aa246]Received INIT, initializing chaincode -peer0.org1.example.com | [0f5 12-12 14:19:35.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 | [113 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ce44b309]Move state message INIT -peer1.org2.example.com | [098 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -peer0.org2.example.com | [02d 12-12 14:19:34.54 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: -peer1.org2.example.com | [099 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [0f4 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 -peer1.org1.example.com | [114 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ce44b309]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [09a 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c1aa246]Init get response status: 200 -peer0.org2.example.com | [02e 12-12 14:19:34.54 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found real value for chaincode.systemPlugins setting to -peer1.org1.example.com | [115 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [0f6 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org2.example.com | [09b 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c1aa246]Init succeeded. Sending COMPLETED -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org1.example.com | [116 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ce44b309]sending state message INIT -peer0.org2.example.com | [02f 12-12 14:19:34.54 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey -> DEBU map[chaincode.systemPlugins:] -peer0.org1.example.com | [0f7 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 -peer1.org2.example.com | [09c 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c1aa246]Move state message COMPLETED -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -peer0.org2.example.com | [030 12-12 14:19:34.54 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 | [0f8 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [09d 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5c1aa246]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [117 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ce44b309]Received message INIT from shim -peer0.org1.example.com | [0f9 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [031 12-12 14:19:34.54 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 | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org2.example.com | [09e 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c1aa246]send state message COMPLETED -peer1.org1.example.com | [118 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ce44b309]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [0fa 12-12 14:19:35.90 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 | [032 12-12 14:19:34.54 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 | [09f 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c1aa246]Received message COMPLETED from shim -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org2.example.com | [033 12-12 14:19:34.54 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.org2.example.com | [0a0 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5c1aa246]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [0fb 12-12 14:19:35.90 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 | [119 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [034 12-12 14:19:34.54 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 | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -peer0.org1.example.com | [0fc 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.1.0 -peer1.org1.example.com | [11a 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [ce44b309]Received INIT, initializing chaincode -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org2.example.com | [035 12-12 14:19:34.54 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc,true) disabled -peer1.org2.example.com | [0a1 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5c1aa246-90d5-40a2-85a5-fb314cc2ebe2]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [0fd 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.1.0" , sending back REGISTERED -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -peer1.org1.example.com | [11b 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer1.org2.example.com | [0a2 12-12 14:19:33.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:5c1aa246-90d5-40a2-85a5-fb314cc2ebe2, channelID: -peer0.org2.example.com | [036 12-12 14:19:34.54 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterACLProvider.Do.func1.newACLMgmt.newDefaultACLProvider.initialize.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -peer1.org1.example.com | [11c 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ce44b309]Init get response status: 200 -peer1.org2.example.com | [0a3 12-12 14:19:33.56 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 | [0fe 12-12 14:19:35.90 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 | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -peer1.org1.example.com | [11d 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ce44b309]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [0a4 12-12 14:19:33.56 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.org1.example.com | [0ff 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [037 12-12 14:19:34.54 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer1.org2.example.com | [0a5 12-12 14:19:33.57 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.1.0,txid=e7ef793f-4c9e-4dba-8821-8eb4b1a75c75,syscc=true,proposal=0x0,canname=lscc:1.1.0 -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [11e 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ce44b309]Move state message COMPLETED -peer1.org2.example.com | [0a6 12-12 14:19:33.57 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.1.0 is being launched -orderer.example.com | [037 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -peer0.org1.example.com | [100 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [038 12-12 14:19:34.55 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers -peer1.org2.example.com | [0a7 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org1.example.com | [11f 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ce44b309]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [038 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ConsortiumProtos -peer1.org2.example.com | [0a8 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org1.example.com | [120 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ce44b309]send state message COMPLETED -peer1.org2.example.com | [0a9 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=lscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -peer0.org1.example.com | [101 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [0aa 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] -peer1.org1.example.com | [121 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ce44b309]Received message COMPLETED from shim -peer0.org1.example.com | [102 12-12 14:19:35.90 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.1.0 launch seq completed -peer0.org2.example.com | [039 12-12 14:19:34.55 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultAuth]] -peer1.org2.example.com | [0ab 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: lscc:1.1.0(networkid:dev,peerid:peer1.org2.example.com) -orderer.example.com | [039 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelCreationPolicy -peer0.org1.example.com | [103 12-12 14:19:35.90 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 | [122 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ce44b309]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [0ac 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer0.org1.example.com | [104 12-12 14:19:35.90 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 | [03a 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [0ad 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org1.example.com | [123 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ce44b309-8039-478d-90a1-7f27c0945469]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [03a 12-12 14:19:34.55 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.authFilters setting to []interface {} [map[name:DefaultAuth]] -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.1.0 -orderer.example.com | [03b 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [105 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1a07d635]Move state message READY -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [124 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ce44b309-8039-478d-90a1-7f27c0945469, channelID: -peer0.org2.example.com | [03b 12-12 14:19:34.55 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultDecorator]] -peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org1.example.com | [125 12-12 14:19:33.62 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 | [03c 12-12 14:19:34.55 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.decorators setting to []interface {} [map[name:DefaultDecorator]] -orderer.example.com | [03c 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org2.example.com | [03d 12-12 14:19:34.55 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[authFilters:[map[name:DefaultAuth]] decorators:[map[name:DefaultDecorator]]]] -peer0.org1.example.com | [106 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1a07d635]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [126 12-12 14:19:33.62 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 | [03d 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org2.example.com | [03e 12-12 14:19:34.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [107 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [1a07d635]Entered state ready -peer1.org1.example.com | [127 12-12 14:19:33.62 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.1.0,txid=56146ac5-e675-493b-95ac-116b3901d9dc,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | [03f 12-12 14:19:34.55 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [03e 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer1.org1.example.com | [128 12-12 14:19:33.62 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.1.0 is being launched -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | [108 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:1a07d635-85d0-4038-bb67-e68f71195e54, channelID: -peer0.org2.example.com | [040 12-12 14:19:34.55 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] -orderer.example.com | [03f 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -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 | [10a 12-12 14:19:35.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 -peer1.org1.example.com | [129 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer0.org2.example.com | [041 12-12 14:19:34.55 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 | [0ae 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock -peer0.org1.example.com | [10b 12-12 14:19:35.91 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 | [12a 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org2.example.com | [0af 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock -orderer.example.com | [040 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [042 12-12 14:19:34.55 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org1.example.com | [10c 12-12 14:19:35.91 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 | [12b 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -peer1.org2.example.com | [0b0 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.1.0 -peer0.org2.example.com | [043 12-12 14:19:34.56 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [12c 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer1.org2.example.com | [0b1 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) -peer0.org2.example.com | MIICGDCCAb+gAwIBAgIQHUKqjkG4EzqFzYBhVKiDXDAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [10d 12-12 14:19:35.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: escc:1.1.0 -peer1.org2.example.com | [0b2 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 -peer0.org2.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [0b3 12-12 14:19:33.57 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 | [10e 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1a07d635]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [12d 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) -peer1.org2.example.com | [0b4 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 -peer0.org2.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer0.org1.example.com | [10f 12-12 14:19:35.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... -peer1.org1.example.com | [12e 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -peer1.org2.example.com | [0b5 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org2.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [110 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1a07d635]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [0b6 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.1.0 -peer0.org2.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [0b7 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEvvO9+zYtRj0iGF59mG/hah0Pu/RoFfei -peer0.org1.example.com | [109 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1a07d635]sending state message READY -peer1.org1.example.com | [12f 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org2.example.com | [0b8 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org2.example.com | f+cdfmT/meA3Hq5c8VwZvcDrd9LOWzhpbhVWPSE++iqWuBNuNZc55qNNMEswDgYD -peer1.org2.example.com | [0b9 12-12 14:19:33.57 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 | [112 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a07d635]Received message READY from shim -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.1.0 -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org2.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -peer1.org2.example.com | [0ba 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -peer0.org1.example.com | [113 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1a07d635]Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgYyekaRBc -peer1.org2.example.com | [0bb 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.1.0 -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | [111 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1a07d635]Move state message INIT -peer0.org2.example.com | HJDyS9hMK2kIbliGQhn65H8LUHIDlt22I8ECIBg0+i2f6Oc4x1ME19m5p5oSf2n8 -orderer.example.com | z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer1.org2.example.com | [0bc 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.1.0" , sending back REGISTERED -peer0.org2.example.com | iyI6uwCYclK0dU1/ -peer0.org1.example.com | [114 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1a07d635]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer0.org1.example.com | [174 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 +peer1.org1.example.com | [003 12-15 03:49:07.96 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 | [018 12-15 03:49:12.50 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 | [002 12-15 03:49:08.30 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 | [004 12-15 03:49:07.96 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 | [175 12-15 03:49:11.09 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 | [01e 12-15 03:49:08.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: testchainid +peer1.org2.example.com | [019 12-15 03:49:12.50 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto-detected peer address: 172.21.0.7:7051 +peer1.org1.example.com | [005 12-15 03:49:07.97 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 | [003 12-15 03:49:08.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +peer0.org1.example.com | [176 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 +peer1.org2.example.com | [01a 12-15 03:49:12.50 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer1.org2.example.com:7051 +peer1.org2.example.com | [01b 12-15 03:49:12.50 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.21.0.7:7051 +peer1.org1.example.com | [006 12-15 03:49:07.97 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 | [007 12-15 03:49:07.98 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +peer1.org1.example.com | [008 12-15 03:49:07.98 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +peer1.org1.example.com | [009 12-15 03:49:07.98 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +peer1.org1.example.com | [00a 12-15 03:49:07.99 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] +peer1.org1.example.com | [00b 12-15 03:49:07.99 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist +peer1.org1.example.com | [00c 12-15 03:49:07.99 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists +peer1.org1.example.com | [00d 12-15 03:49:08.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +peer1.org1.example.com | [00e 12-15 03:49:08.00 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +peer1.org1.example.com | [00f 12-15 03:49:08.00 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +peer1.org1.example.com | [010 12-15 03:49:08.00 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +peer1.org1.example.com | [011 12-15 03:49:08.01 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 | [012 12-15 03:49:08.02 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 | [177 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org2.example.com | [004 12-15 03:49:08.30 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 | [01c 12-15 03:49:12.50 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer1.org2.example.com:7051 +orderer.example.com | [01f 12-15 03:49:08.09 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/testchainid/] +peer1.org1.example.com | [013 12-15 03:49:08.02 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 | [005 12-15 03:49:08.30 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 | [01d 12-15 03:49:12.51 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +peer0.org1.example.com | [178 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 +orderer.example.com | [020 12-15 03:49:08.09 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] does not exist +peer1.org1.example.com | [014 12-15 03:49:08.02 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 | [006 12-15 03:49:08.48 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 12-15 03:49:10.37 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +peer0.org2.example.com | [008 12-15 03:49:10.37 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +peer0.org2.example.com | [009 12-15 03:49:10.37 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +peer0.org2.example.com | [00a 12-15 03:49:10.67 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] +peer0.org2.example.com | [00b 12-15 03:49:10.67 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist +peer0.org2.example.com | [00c 12-15 03:49:10.67 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists +peer0.org2.example.com | [00d 12-15 03:49:10.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +peer0.org2.example.com | [00e 12-15 03:49:10.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +peer0.org2.example.com | [00f 12-15 03:49:10.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +peer0.org2.example.com | [010 12-15 03:49:10.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +peer0.org2.example.com | [011 12-15 03:49:10.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 +peer0.org2.example.com | [012 12-15 03:49:10.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/] +peer0.org2.example.com | [013 12-15 03:49:10.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 +peer0.org2.example.com | [014 12-15 03:49:10.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 +peer0.org1.example.com | [179 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [17a 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [17b 12-15 03:49:11.09 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 | [17c 12-15 03:49:11.09 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 | [17d 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.1.0 +peer0.org1.example.com | [17e 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.1.0" , sending back REGISTERED +peer0.org1.example.com | [17f 12-15 03:49:11.09 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 | [180 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org1.example.com | [181 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [182 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [183 12-15 03:49:11.09 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.1.0 launch seq completed +peer0.org1.example.com | [184 12-15 03:49:11.09 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 | [185 12-15 03:49:11.09 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 | [01e 12-15 03:49:12.51 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK +peer1.org2.example.com | [01f 12-15 03:49:12.51 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +peer1.org2.example.com | [020 12-15 03:49:12.51 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 | [021 12-15 03:49:12.51 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 | [022 12-15 03:49:12.51 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK +peer1.org2.example.com | [023 12-15 03:49:12.52 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +peer1.org2.example.com | [024 12-15 03:49:12.52 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer1.org2.example.com +peer1.org2.example.com | [025 12-15 03:49:12.52 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer1.org2.example.com:7052 +peer1.org2.example.com | [026 12-15 03:49:12.53 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.NewServerCertKeyPair.newCertKeyPair -> DEBU Classified peer1.org2.example.com as a hostname, adding it as a DNS SAN +peer1.org2.example.com | [027 12-15 03:49:12.53 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 | [028 12-15 03:49:12.53 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 +peer1.org1.example.com | [015 12-15 03:49:08.03 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 | [016 12-15 03:49:08.03 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 12-15 03:49:10.73 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 | [186 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90796812]Move state message READY +orderer.example.com | [021 12-15 03:49:08.09 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] exists +peer1.org1.example.com | [017 12-15 03:49:08.04 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 | [029 12-15 03:49:12.53 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 | [016 12-15 03:49:10.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.org1.example.com | [187 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [90796812]Fabric side Handling ChaincodeMessage of type: READY in state established +orderer.example.com | [022 12-15 03:49:08.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +peer1.org2.example.com | [02a 12-15 03:49:12.53 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 | [017 12-15 03:49:10.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 | [018 12-15 03:49:08.04 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 | [188 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [90796812]Entered state ready +peer1.org2.example.com | [02b 12-15 03:49:12.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info +orderer.example.com | [023 12-15 03:49:08.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +peer0.org2.example.com | [018 12-15 03:49:10.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 | [019 12-15 03:49:08.04 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto-detected peer address: 172.21.0.3:7051 +peer0.org1.example.com | [189 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:90796812-ff7a-4493-96b3-93977d1e67d0, channelID: +peer0.org2.example.com | [019 12-15 03:49:10.73 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto-detected peer address: 172.21.0.4:7051 +peer1.org1.example.com | [01a 12-15 03:49:08.04 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer1.org1.example.com:7051 +peer0.org1.example.com | [18a 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90796812]sending state message READY +peer1.org1.example.com | [01b 12-15 03:49:08.04 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.21.0.3:7051 +peer1.org2.example.com | [02c 12-15 03:49:12.53 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 | [01a 12-15 03:49:10.73 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer0.org2.example.com:7051 +orderer.example.com | [024 12-15 03:49:08.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +peer0.org1.example.com | [18b 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90796812]Received message READY from shim +peer1.org1.example.com | [01c 12-15 03:49:08.04 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer1.org1.example.com:7051 +peer0.org2.example.com | [01b 12-15 03:49:10.74 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.21.0.4:7051 +peer1.org2.example.com | [02d 12-15 03:49:12.53 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: +peer0.org1.example.com | [18c 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90796812]Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [01c 12-15 03:49:10.74 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer0.org2.example.com:7051 +peer1.org1.example.com | [01d 12-15 03:49:08.06 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +peer1.org2.example.com | [02e 12-15 03:49:12.53 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found real value for chaincode.systemPlugins setting to +peer0.org1.example.com | [18d 12-15 03:49:11.09 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 | [01d 12-15 03:49:10.75 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +orderer.example.com | [025 12-15 03:49:08.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +peer1.org2.example.com | [02f 12-15 03:49:12.53 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey -> DEBU map[chaincode.systemPlugins:] +peer0.org2.example.com | [01e 12-15 03:49:10.78 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 | [18e 12-15 03:49:11.09 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 | [01e 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK +orderer.example.com | [026 12-15 03:49:08.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +peer0.org2.example.com | [01f 12-15 03:49:10.78 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 | [18f 12-15 03:49:11.09 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 | [030 12-15 03:49:12.53 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 | [020 12-15 03:49:10.78 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 | [190 12-15 03:49:11.09 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.1.0 +peer0.org2.example.com | [021 12-15 03:49:10.78 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 | [01f 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +peer1.org2.example.com | [031 12-15 03:49:12.53 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.org2.example.com | [032 12-15 03:49:12.53 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 | [020 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION +orderer.example.com | [027 12-15 03:49:08.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +peer0.org2.example.com | [022 12-15 03:49:10.78 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK +peer0.org1.example.com | [191 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [90796812]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [023 12-15 03:49:10.78 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +peer1.org2.example.com | [033 12-15 03:49:12.53 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 | [024 12-15 03:49:10.78 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org2.example.com +peer1.org1.example.com | [021 12-15 03:49:08.10 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 | [192 12-15 03:49:11.09 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 | [028 12-15 03:49:08.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4202764a0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +peer0.org2.example.com | [025 12-15 03:49:10.78 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer0.org2.example.com:7052 +peer0.org1.example.com | [193 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [90796812]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [034 12-15 03:49:12.53 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 | [022 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK +peer0.org2.example.com | [026 12-15 03:49:10.80 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.NewServerCertKeyPair.newCertKeyPair -> DEBU Classified peer0.org2.example.com as a hostname, adding it as a DNS SAN +peer0.org1.example.com | [194 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90796812]Move state message INIT +peer0.org2.example.com | [027 12-15 03:49:10.80 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 | [035 12-15 03:49:12.53 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc,true) disabled +peer1.org1.example.com | [023 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +peer0.org1.example.com | [195 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [90796812]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [028 12-15 03:49:10.80 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.org2.example.com | [036 12-15 03:49:12.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterACLProvider.Do.func1.newACLMgmt.newDefaultACLProvider.initialize.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [024 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer1.org1.example.com +peer0.org1.example.com | [196 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [029 12-15 03:49:10.80 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 | [025 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer1.org1.example.com:7052 +peer1.org2.example.com | [037 12-15 03:49:12.53 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +peer1.org1.example.com | [026 12-15 03:49:08.13 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.NewServerCertKeyPair.newCertKeyPair -> DEBU Classified peer1.org1.example.com as a hostname, adding it as a DNS SAN +peer0.org2.example.com | [02a 12-15 03:49:10.80 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 | [02b 12-15 03:49:10.80 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 | [197 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90796812]sending state message INIT +peer0.org1.example.com | [198 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90796812]Received message INIT from shim +peer0.org1.example.com | [199 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90796812]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [19a 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [027 12-15 03:49:08.14 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 | [028 12-15 03:49:08.14 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.org2.example.com | [038 12-15 03:49:12.53 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers +peer1.org2.example.com | [039 12-15 03:49:12.53 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultDecorator]] +peer1.org1.example.com | [029 12-15 03:49:08.14 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 | [02c 12-15 03:49:10.80 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 | [02d 12-15 03:49:10.80 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: +peer0.org2.example.com | [02e 12-15 03:49:10.80 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found real value for chaincode.systemPlugins setting to +peer0.org2.example.com | [02f 12-15 03:49:10.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey -> DEBU map[chaincode.systemPlugins:] +peer0.org1.example.com | [19b 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [90796812]Received INIT, initializing chaincode +peer0.org1.example.com | [19c 12-15 03:49:11.10 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org2.example.com | [03a 12-15 03:49:12.53 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.decorators setting to []interface {} [map[name:DefaultDecorator]] +peer0.org2.example.com | [030 12-15 03:49:10.81 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 | [02a 12-15 03:49:08.14 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 | [19d 12-15 03:49:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90796812]Init get response status: 200 +peer0.org1.example.com | [19e 12-15 03:49:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90796812]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [031 12-15 03:49:10.81 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.org2.example.com | [03b 12-15 03:49:12.53 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultAuth]] +peer1.org1.example.com | [02b 12-15 03:49:08.14 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info +orderer.example.com | [029 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] +peer0.org1.example.com | [19f 12-15 03:49:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90796812]Move state message COMPLETED +peer0.org2.example.com | [032 12-15 03:49:10.81 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 | [03c 12-15 03:49:12.54 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.authFilters setting to []interface {} [map[name:DefaultAuth]] +peer1.org1.example.com | [02c 12-15 03:49:08.14 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 | [02d 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: +peer1.org1.example.com | [02e 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found real value for chaincode.systemPlugins setting to +peer0.org1.example.com | [1a0 12-15 03:49:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90796812]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [033 12-15 03:49:10.81 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 | [02a 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xda, 0x6, 0x12, 0x14, 0x0, 0x47, 0xeb, 0x2f, 0xdc, 0xc2, 0x68, 0x4c, 0xff, 0x5c, 0x8c, 0x65, 0x22, 0x99, 0x4e, 0x1c, 0xe8, 0x74, 0x94, 0x54, 0xca, 0xe0, 0xdb, 0xf7, 0x33, 0x59, 0x87, 0x48} txOffsets= +peer0.org1.example.com | [1a1 12-15 03:49:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90796812]send state message COMPLETED +peer1.org1.example.com | [02f 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey -> DEBU map[chaincode.systemPlugins:] +peer1.org2.example.com | [03d 12-15 03:49:12.54 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[decorators:[map[name:DefaultDecorator]] authFilters:[map[name:DefaultAuth]]]] +peer0.org2.example.com | [034 12-15 03:49:10.81 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 | [1a2 12-15 03:49:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90796812]Received message COMPLETED from shim +peer1.org2.example.com | [03e 12-15 03:49:12.54 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [03f 12-15 03:49:12.54 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [035 12-15 03:49:10.81 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc,true) disabled +peer0.org1.example.com | [1a3 12-15 03:49:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [90796812]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [030 12-15 03:49:08.15 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 | txId=9897fdffd343cfbea7231dc5e9438a04d09931683ce555fdf3ab2b02be33fd3e locPointer=offset=38, bytesLength=9115 +peer0.org2.example.com | [036 12-15 03:49:10.81 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterACLProvider.Do.func1.newACLMgmt.newDefaultACLProvider.initialize.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [1a4 12-15 03:49:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [90796812-ff7a-4493-96b3-93977d1e67d0]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [040 12-15 03:49:12.54 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 [peer1.org2.example.com:7051] +peer1.org1.example.com | [031 12-15 03:49:08.15 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 | [037 12-15 03:49:10.81 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +peer0.org1.example.com | [1a5 12-15 03:49:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:90796812-ff7a-4493-96b3-93977d1e67d0, channelID: +peer0.org1.example.com | [1a6 12-15 03:49:11.11 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 | [032 12-15 03:49:08.15 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 | [041 12-15 03:49:12.55 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 | [038 12-15 03:49:10.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers +orderer.example.com | ] +peer0.org1.example.com | [1a7 12-15 03:49:11.11 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 | [033 12-15 03:49:08.16 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 | [039 12-15 03:49:10.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultAuth]] +peer1.org1.example.com | [034 12-15 03:49:08.16 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 | [1a8 12-15 03:49:11.11 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled +peer1.org2.example.com | [042 12-15 03:49:12.55 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | [02b 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[9158], isChainEmpty=[false], lastBlockNumber=[0] +peer0.org2.example.com | [03a 12-15 03:49:10.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.authFilters setting to []interface {} [map[name:DefaultAuth]] +peer0.org1.example.com | [1a9 12-15 03:49:11.11 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes +peer1.org2.example.com | [043 12-15 03:49:12.55 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [035 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc,true) disabled +orderer.example.com | [02c 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +peer0.org2.example.com | [03b 12-15 03:49:10.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultDecorator]] +peer0.org1.example.com | [1aa 12-15 03:49:11.11 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] +peer0.org1.example.com | [1ab 12-15 03:49:11.11 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] +peer1.org2.example.com | MIICGDCCAb+gAwIBAgIQL9CD8dvgLK0sQ8PWDq6MlDAKBggqhkjOPQQDAjBzMQsw +peer1.org1.example.com | [036 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterACLProvider.Do.func1.newACLMgmt.newDefaultACLProvider.initialize.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [02d 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +peer0.org2.example.com | [03c 12-15 03:49:10.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.decorators setting to []interface {} [map[name:DefaultDecorator]] +peer0.org1.example.com | [1ac 12-15 03:49:11.11 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 | [037 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +peer1.org2.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [03d 12-15 03:49:10.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[authFilters:[map[name:DefaultAuth]] decorators:[map[name:DefaultDecorator]]]] +orderer.example.com | [02e 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9158], Going to peek [8] bytes +orderer.example.com | [02f 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9156], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +peer0.org1.example.com | [1ad 12-15 03:49:11.11 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 | [03e 12-15 03:49:10.81 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [038 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers +peer1.org2.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | [1ae 12-15 03:49:11.11 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 | [030 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9156] read from file [0] +peer0.org2.example.com | [03f 12-15 03:49:10.81 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org2.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTFaFw0yNzEyMTMwMzM1NTFa +peer0.org1.example.com | [1af 12-15 03:49:11.11 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 | [039 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultAuth]] +orderer.example.com | [031 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +orderer.example.com | [032 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +peer0.org1.example.com | [1b0 12-15 03:49:11.11 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 | [03a 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.authFilters setting to []interface {} [map[name:DefaultAuth]] +peer0.org2.example.com | [040 12-15 03:49:10.81 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] +peer1.org2.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org1.example.com | [1b1 12-15 03:49:11.11 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' +orderer.example.com | [033 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9158], Going to peek [8] bytes +peer0.org2.example.com | [041 12-15 03:49:10.84 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 | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw +peer1.org1.example.com | [03b 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultDecorator]] +peer0.org1.example.com | [1b2 12-15 03:49:11.11 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' +orderer.example.com | [034 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9156], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +peer0.org2.example.com | [042 12-15 03:49:10.84 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer1.org2.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE1IBtaTQvUUa1aH1RcjXk6b/7FmkPvt41 +peer0.org1.example.com | [1b3 12-15 03:49:11.11 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 | [03c 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.decorators setting to []interface {} [map[name:DefaultDecorator]] +peer0.org2.example.com | [043 12-15 03:49:10.85 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | [035 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9156] read from file [0] +peer1.org2.example.com | C+GnAdJEv2tGOHK7/M+PDVx5ajf4vbVpMiz4wM+BRsI3yZuQnfH6lqNNMEswDgYD +peer1.org1.example.com | [03d 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[authFilters:[map[name:DefaultAuth]] decorators:[map[name:DefaultDecorator]]]] +peer0.org2.example.com | MIICGTCCAcCgAwIBAgIRAL3NzKek8hEVtKQG033nrA0wCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [1b4 12-15 03:49:11.11 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 | [036 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org2.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgJKpXKsl6sXti +peer0.org1.example.com | [1b5 12-15 03:49:11.11 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [03e 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [037 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | hcMop5XYBf/qTpiDPp4A/Xgo55/marswCgYIKoZIzj0EAwIDRwAwRAIgb98dbAnO +peer0.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [03f 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [1b6 12-15 03:49:11.11 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 | yIHId+rwemQQ9aQidqLj7W9820b/BSYGcBoCIEtU2XV647baneViWaeGuWLhola7 +orderer.example.com | [038 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +peer1.org1.example.com | [040 12-15 03:49:08.16 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] +peer0.org1.example.com | [1b7 12-15 03:49:11.11 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 | vPzasLRP5tn/reUi +peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | [039 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [041 12-15 03:49:08.22 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 | -----END CERTIFICATE----- +peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [1b8 12-15 03:49:11.11 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 | [042 12-15 03:49:08.22 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | [03a 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABFKf/1ShMneEIuqfjyHxBUmpAZ9XoizD +peer0.org1.example.com | [1b9 12-15 03:49:11.11 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.org1.example.com | [043 12-15 03:49:08.22 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | [03b 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [044 12-15 03:49:12.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | 0PYfXItXn9uvZ5vGWBGx0EXP22NaIrjBDeSOzI0qqWOHUBHefAfJ6KujTTBLMA4G +peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRAO38AsvEET4X4UdGTcfkuBAwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [1ba 12-15 03:49:11.11 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.org2.example.com | [045 12-15 03:49:12.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCICpmK2/d +orderer.example.com | [03c 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org2.example.com | [046 12-15 03:49:12.55 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer0.org1.example.com | [1bb 12-15 03:49:11.11 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | duNwsmfdFxvEOOjUejsdtnE3KAnUx/kgAab7AiB+CrG8fUMqQAzKC7pBOY2USIYc +orderer.example.com | [03d 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [047 12-15 03:49:12.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | WI7/XhL+fOOqr3SNYw== +orderer.example.com | [03e 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [1bc 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40850 +peer0.org1.example.com | [1bd 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421b0dbf0 +peer1.org2.example.com | [048 12-15 03:49:12.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP peer0.org2.example.com | -----END CERTIFICATE----- -orderer.example.com | GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -peer0.org1.example.com | [115 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [0bd 12-12 14:19:33.57 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 | [044 12-12 14:19:34.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org2.example.com | [0be 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | [116 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1a07d635]sending state message INIT -peer0.org2.example.com | [045 12-12 14:19:34.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -peer0.org1.example.com | [117 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a07d635]Received message INIT from shim -peer0.org2.example.com | [046 12-12 14:19:34.56 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org1.example.com | [118 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1a07d635]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [0bf 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | xEFWkMtGbgY= -peer0.org2.example.com | [047 12-12 14:19:34.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | [119 12-12 14:19:35.91 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 | [048 12-12 14:19:34.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [0c0 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | [11a 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [1a07d635]Received INIT, initializing chaincode -orderer.example.com | [041 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [049 12-12 14:19:34.56 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer1.org2.example.com | [0c1 12-12 14:19:33.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 lscc:1.1.0 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} -peer0.org1.example.com | [11b 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer0.org2.example.com | [04b 12-12 14:19:34.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [0c2 12-12 14:19:33.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 -peer1.org1.example.com | [130 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [04c 12-12 14:19:34.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org1.example.com | [11c 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a07d635]Init get response status: 200 -peer1.org2.example.com | [0c3 12-12 14:19:33.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... -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [131 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock -peer0.org2.example.com | [04a 12-12 14:19:34.56 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 [] [21 78 155 101 248 109 96 73 154 94 110 244 183 25 172 38 21 154 63 11 20 207 76 181 10 231 75 140 226 167 25 192] peer0.org2.example.com:7051 } incTime is 1513088374562177800 -peer1.org2.example.com | [0c4 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e7ef793f]Move state message READY -peer0.org1.example.com | [11d 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a07d635]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [0c5 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e7ef793f]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [04d 12-12 14:19:34.56 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 [] [21 78 155 101 248 109 96 73 154 94 110 244 183 25 172 38 21 154 63 11 20 207 76 181 10 231 75 140 226 167 25 192] peer0.org2.example.com:7051 } -peer1.org2.example.com | [0c6 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [e7ef793f]Entered state ready -peer1.org1.example.com | [132 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.1.0 -peer0.org1.example.com | [11e 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a07d635]Move state message COMPLETED -peer0.org2.example.com | [04e 12-12 14:19:34.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | [133 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) -peer0.org1.example.com | [11f 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1a07d635]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [04f 12-12 14:19:34.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -peer1.org2.example.com | [0c7 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:e7ef793f-4c9e-4dba-8821-8eb4b1a75c75, channelID: -peer0.org2.example.com | [050 12-12 14:19:34.56 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer1.org1.example.com | [134 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 -peer1.org2.example.com | [0c8 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e7ef793f]sending state message READY -peer0.org1.example.com | [120 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a07d635]send state message COMPLETED -peer0.org2.example.com | [051 12-12 14:19:34.56 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.org1.example.com | [135 12-12 14:19:33.62 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 | [0c9 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e7ef793f]Received message READY from shim -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [121 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1a07d635]Received message COMPLETED from shim -peer1.org1.example.com | [136 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 -peer0.org2.example.com | [052 12-12 14:19:34.56 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 | [053 12-12 14:19:34.56 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.org2.example.com | [0ca 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e7ef793f]Handling ChaincodeMessage of type: READY(state:established) -peer1.org1.example.com | [137 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org1.example.com | [122 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1a07d635]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -peer1.org2.example.com | [0cb 12-12 14:19:33.57 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 | [054 12-12 14:19:34.56 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 | [055 12-12 14:19:34.56 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.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [138 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 -peer0.org1.example.com | [123 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1a07d635-85d0-4038-bb67-e68f71195e54]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [056 12-12 14:19:34.56 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: 1801AA01C3060A20154E9B65F86D6049...455254494649434154452D2D2D2D2D0A -peer1.org2.example.com | [0cc 12-12 14:19:33.57 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 | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -peer0.org1.example.com | [124 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1a07d635-85d0-4038-bb67-e68f71195e54, channelID: -peer1.org1.example.com | [139 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [057 12-12 14:19:34.56 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: 3ED1AA386242729D24D23F0515310C948709C9FFE4F07D090B4B199D5A44618F -peer1.org2.example.com | [0cd 12-12 14:19:33.57 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 | [125 12-12 14:19:35.91 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 | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -peer1.org1.example.com | [13a 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [058 12-12 14:19:34.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org2.example.com:7051 started -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -peer1.org1.example.com | [13b 12-12 14:19:33.62 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 | [126 12-12 14:19:35.91 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.org2.example.com | [0ce 12-12 14:19:33.57 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.1.0 -peer0.org2.example.com | [059 12-12 14:19:34.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -peer1.org1.example.com | [13c 12-12 14:19:33.62 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 | [127 12-12 14:19:35.91 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.1.0,txid=9260c88c-9a79-4695-bb87-1b7070cd63bb,syscc=true,proposal=0x0,canname=vscc:1.1.0 -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -peer0.org2.example.com | [05a 12-12 14:19:34.56 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 | [0cf 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e7ef793f]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [13d 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.1.0 -orderer.example.com | OwJpoynNCyKsWozuVw== -peer0.org1.example.com | [128 12-12 14:19:35.91 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.1.0 is being launched -peer0.org2.example.com | [05b 12-12 14:19:34.56 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [0d0 12-12 14:19:33.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... -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [13e 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.1.0" , sending back REGISTERED -peer0.org2.example.com | [05c 12-12 14:19:34.56 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF0060A3F0A1B70656572302E6F...455254494649434154452D2D2D2D2D0A -peer0.org1.example.com | [129 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -orderer.example.com | [042 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [13f 12-12 14:19:33.62 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 | [0d1 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e7ef793f]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [140 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [12a 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org2.example.com | [05d 12-12 14:19:34.56 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 5699430CFFD2DD6195E48262BA9765125A1BF154ADF58A98D867C9C0A134EAF7 -peer1.org1.example.com | [141 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [0d2 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e7ef793f]Move state message INIT -peer0.org1.example.com | [12b 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -peer0.org2.example.com | [05e 12-12 14:19:34.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [142 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [0d3 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e7ef793f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [05f 12-12 14:19:34.56 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [143 12-12 14:19:33.62 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.1.0 launch seq completed -peer0.org1.example.com | [12c 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer0.org2.example.com | [060 12-12 14:19:34.56 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267322E6578616D706C652E636F6D3A37303531 -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | [0d4 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [12d 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) -peer1.org1.example.com | [144 12-12 14:19:33.62 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 | [061 12-12 14:19:34.56 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 31AA5BDA348977D7C004285715D545FB004C7F32E9BB02A9710DB7C2282B8EA6 -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [12e 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer0.org2.example.com | [062 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -peer0.org1.example.com | [12f 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org1.example.com | [145 12-12 14:19:33.62 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 | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -peer0.org2.example.com | [063 12-12 14:19:34.57 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.1.0,txid=19db4943-f1b0-40ac-ad00-164ffc4ee3a8,syscc=true,proposal=0x0,canname=cscc:1.1.0 -peer1.org2.example.com | [0d5 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e7ef793f]sending state message INIT -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.1.0 -peer1.org1.example.com | [146 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [56146ac5]Move state message READY -peer1.org2.example.com | [0d6 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e7ef793f]Received message INIT from shim -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -peer0.org2.example.com | [064 12-12 14:19:34.57 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.1.0 is being launched -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -peer1.org2.example.com | [0d7 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e7ef793f]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [147 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [56146ac5]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -peer0.org2.example.com | [065 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org2.example.com | [0d8 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org1.example.com | [149 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -peer0.org2.example.com | [066 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org1.example.com | [148 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [56146ac5]Entered state ready -peer1.org2.example.com | [0d9 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e7ef793f]Received INIT, initializing chaincode -peer0.org2.example.com | [067 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=cscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org1.example.com | [14a 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:56146ac5-e675-493b-95ac-116b3901d9dc, channelID: -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -peer1.org2.example.com | [0da 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [068 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -orderer.example.com | OwJpoynNCyKsWozuVw== -peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org1.example.com | [14b 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [56146ac5]sending state message READY -peer1.org2.example.com | [0db 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e7ef793f]Init get response status: 200 -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [069 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: cscc:1.1.0(networkid:dev,peerid:peer0.org2.example.com) -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [14c 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [56146ac5]Received message READY from shim -peer1.org2.example.com | [0dc 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e7ef793f]Init succeeded. Sending COMPLETED -orderer.example.com | [043 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | [14d 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [56146ac5]Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [06a 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | [044 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [0dd 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e7ef793f]Move state message COMPLETED -peer0.org2.example.com | [06b 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org2.example.com | [0de 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e7ef793f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [14e 12-12 14:19:33.62 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 | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +peer0.org1.example.com | [1be 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org2.example.com | [044 12-15 03:49:10.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | [03f 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [049 12-15 03:49:12.55 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer0.org2.example.com | [045 12-15 03:49:10.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [1bf 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [04b 12-15 03:49:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +orderer.example.com | [040 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | [046 12-15 03:49:10.85 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer0.org1.example.com | [1c0 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEtE3CPbY6Gx8lB2eiEdGfI89dkVnVVm +peer1.org1.example.com | ek8+jOT7OIagSUCdgEnpfiPSv+u9Mxfcs5O9xCnVnAb/W+osyB0SjKyjTTBLMA4G +peer0.org2.example.com | [047 12-15 03:49:10.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [04a 12-15 03:49:12.56 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 [] [16 4 186 80 32 151 195 67 155 142 130 145 97 134 193 127 243 122 5 213 167 169 230 238 30 89 49 238 155 112 208 6] peer1.org2.example.com:7051 } incTime is 1513309752558910400 +peer0.org1.example.com | [1c1 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [041 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +peer0.org2.example.com | [048 12-15 03:49:10.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [04c 12-15 03:49:12.57 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 [] [16 4 186 80 32 151 195 67 155 142 130 145 97 134 193 127 243 122 5 213 167 169 230 238 30 89 49 238 155 112 208 6] peer1.org2.example.com:7051 } +peer0.org1.example.com | [1c2 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [049 12-15 03:49:10.85 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer1.org1.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIGs/atHe +peer1.org2.example.com | [04d 12-15 03:49:12.57 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [042 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [1c3 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42196de00, header 0xc421b0dc80 +peer0.org2.example.com | [04a 12-15 03:49:10.86 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 [] [109 212 25 206 12 243 25 208 194 104 44 94 93 151 168 208 31 239 198 116 113 202 228 243 34 157 125 232 53 180 113 65] peer0.org2.example.com:7051 } incTime is 1513309750863444500 +peer1.org1.example.com | NRJz0ZdqxmBLESiPzTltvP3PYRMfcbyf+gOjAiBNQLb1+p/ClpFFbJnmFLJo6OFw +peer1.org2.example.com | [04e 12-15 03:49:12.57 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [04b 12-15 03:49:10.86 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 [] [109 212 25 206 12 243 25 208 194 104 44 94 93 151 168 208 31 239 198 116 113 202 228 243 34 157 125 232 53 180 113 65] peer0.org2.example.com:7051 } +peer0.org1.example.com | [1c4 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +orderer.example.com | [043 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [04c 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [1c5 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 874d2d0c9dd653d155fd2f2ea7a7a8366daeccc8c1792d9d3fad791a213aac66 +peer1.org1.example.com | Uegb+PKNM4s4W1Egog== +peer1.org1.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [04f 12-15 03:49:12.57 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer0.org2.example.com | [04d 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [1c6 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 874d2d0c9dd653d155fd2f2ea7a7a8366daeccc8c1792d9d3fad791a213aac66 channel id: +orderer.example.com | [044 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [050 12-15 03:49:12.57 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.org1.example.com | [044 12-15 03:49:08.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [04e 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer1.org2.example.com | [051 12-15 03:49:12.57 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 | [1c7 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 874d2d0c9dd653d155fd2f2ea7a7a8366daeccc8c1792d9d3fad791a213aac66 channel id: version: 1.1.0 +peer0.org2.example.com | [04f 12-15 03:49:10.86 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 | [052 12-15 03:49:12.57 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 | [045 12-15 03:49:08.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [045 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [053 12-15 03:49:12.57 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 | [1c8 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=874d2d0c9dd653d155fd2f2ea7a7a8366daeccc8c1792d9d3fad791a213aac66,syscc=true,proposal=0xc42196de00,canname=cscc:1.1.0 +peer0.org2.example.com | [050 12-15 03:49:10.86 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 | [054 12-15 03:49:12.57 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.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [1c9 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 +peer1.org1.example.com | [046 12-15 03:49:08.22 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org2.example.com | [055 12-15 03:49:12.57 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: 1801AA01C3060A201004BA502097C343...455254494649434154452D2D2D2D2D0A +peer0.org2.example.com | [051 12-15 03:49:10.86 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 +orderer.example.com | [046 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org2.example.com | [056 12-15 03:49:12.57 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: D34FEE9F153B621BDE51B3A936D1F04E452DCBBECE50A0FB8DEF6A79A1046C43 +peer0.org1.example.com | [1ca 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [047 12-15 03:49:08.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [052 12-15 03:49:10.86 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.org2.example.com | [057 12-15 03:49:12.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer1.org1.example.com | [048 12-15 03:49:08.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [053 12-15 03:49:10.86 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.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org2.example.com | [058 12-15 03:49:12.57 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.1.0,txid=ffa01149-a5c6-40e6-bc07-0f828d8d3667,syscc=true,proposal=0x0,canname=cscc:1.1.0 +orderer.example.com | [047 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org2.example.com | [059 12-15 03:49:12.57 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.1.0 is being launched +peer0.org1.example.com | [1cb 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +peer1.org1.example.com | [049 12-15 03:49:08.22 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [048 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +peer0.org2.example.com | [054 12-15 03:49:10.86 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: 1801AA01C7060A206DD419CE0CF319D0...455254494649434154452D2D2D2D2D0A +peer1.org2.example.com | [05a 12-15 03:49:12.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org2.example.com:7051 started +peer0.org1.example.com | [1cc 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [874d2d0c]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [04a 12-15 03:49:08.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [055 12-15 03:49:10.86 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: 97F220C5B19225DF304EE6A0C01A289A45ED4A8C4BAC002BAED13D9BD9917AE2 +peer1.org2.example.com | [05b 12-15 03:49:12.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +orderer.example.com | [049 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [1cd 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [05c 12-15 03:49:12.57 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 | [04c 12-15 03:49:08.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer0.org1.example.com | [1ce 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [05d 12-15 03:49:12.57 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | MIICLzCCAdWgAwIBAgIQGXf5zEgjlejkE1rJW2znwDAKBggqhkjOPQQDAjBpMQsw +peer0.org2.example.com | [056 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [04b 12-15 03:49:08.25 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 [] [241 117 78 6 153 149 24 255 168 205 32 55 19 249 86 148 151 96 62 243 83 216 19 59 184 36 81 218 69 41 226 155] peer1.org1.example.com:7051 } incTime is 1513309748228867200 +peer1.org2.example.com | [05e 12-15 03:49:12.57 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF0060A3F0A1B70656572312E6F...455254494649434154452D2D2D2D2D0A +peer0.org2.example.com | [057 12-15 03:49:10.86 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.1.0,txid=7811ba24-60fe-400f-91ec-62de264200c7,syscc=true,proposal=0x0,canname=cscc:1.1.0 +peer0.org1.example.com | [1cf 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [874d2d0c]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [05f 12-15 03:49:12.57 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 76278B5B0EDF2C28A47A8C3533F42A7E1D9E89808886CE0B5FC24C9904AF8245 +peer0.org2.example.com | [058 12-15 03:49:10.86 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.1.0 is being launched +peer1.org1.example.com | [04d 12-15 03:49:08.26 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 [] [241 117 78 6 153 149 24 255 168 205 32 55 19 249 86 148 151 96 62 243 83 216 19 59 184 36 81 218 69 41 226 155] peer1.org1.example.com:7051 } +peer0.org1.example.com | [1d0 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [874d2d0c]Move state message TRANSACTION +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org2.example.com | [060 12-15 03:49:12.57 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 | [059 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer0.org2.example.com | [05a 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +peer1.org1.example.com | [04e 12-15 03:49:08.26 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [061 12-15 03:49:12.57 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [1d1 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [874d2d0c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [05b 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=cscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +peer0.org1.example.com | [1d2 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [04f 12-15 03:49:08.26 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [062 12-15 03:49:12.57 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267322E6578616D706C652E636F6D3A37303531 +peer0.org2.example.com | [05c 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +peer0.org2.example.com | [05d 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: cscc:1.1.0(networkid:dev,peerid:peer0.org2.example.com) +peer0.org2.example.com | [05e 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer0.org2.example.com | [05f 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer1.org1.example.com | [050 12-15 03:49:08.26 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org1.example.com | [051 12-15 03:49:08.26 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.org1.example.com | [052 12-15 03:49:08.26 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 | [1d3 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [874d2d0c]sending state message TRANSACTION +peer0.org1.example.com | [1d4 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [874d2d0c]Received message TRANSACTION from shim +peer0.org1.example.com | [1d5 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [874d2d0c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [063 12-15 03:49:12.57 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 84DCB4760C577E9B4E2A280CB22EA6979C16748D7FD46DCFD4002D8650CAD285 +peer1.org2.example.com | [064 12-15 03:49:12.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself +peer1.org2.example.com | [065 12-15 03:49:12.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer1.org2.example.com | [066 12-15 03:49:12.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.1.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} -peer1.org2.example.com | [0df 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e7ef793f]send state message COMPLETED +peer0.org1.example.com | [1d6 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [874d2d0c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [053 12-15 03:49:08.26 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 | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [14f 12-12 14:19:33.62 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 | [045 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [130 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock +peer1.org2.example.com | [067 12-15 03:49:12.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=cscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +peer0.org1.example.com | [1d7 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -orderer.example.com | [046 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [0e0 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e7ef793f]Received message COMPLETED from shim +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowaTELMAkGA1UE +peer0.org1.example.com | [1d8 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +peer1.org1.example.com | [054 12-15 03:49:08.26 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 | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org1.example.com | [150 12-12 14:19:33.62 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 | [131 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock -peer1.org2.example.com | [0e1 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e7ef793f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [047 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org2.example.com | [068 12-15 03:49:12.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [1d9 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org1.example.com | [132 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.1.0 -peer1.org1.example.com | [151 12-12 14:19:33.62 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.1.0 -peer1.org2.example.com | [0e2 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e7ef793f-4c9e-4dba-8821-8eb4b1a75c75]HandleMessage- COMPLETED. Notify -orderer.example.com | [048 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org2.example.com | [069 12-15 03:49:12.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: cscc:1.1.0(networkid:dev,peerid:peer1.org2.example.com) +peer1.org1.example.com | [055 12-15 03:49:08.26 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.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [152 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [56146ac5]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [0e3 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e7ef793f-4c9e-4dba-8821-8eb4b1a75c75, channelID: -orderer.example.com | [049 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -peer0.org1.example.com | [133 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) -peer1.org2.example.com | [0e4 12-12 14:19:33.57 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 | [153 12-12 14:19:33.62 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 | [056 12-15 03:49:08.26 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: 1801AA01C7060A20F1754E06999518FF...455254494649434154452D2D2D2D2D0A peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | [135 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 -orderer.example.com | [04a 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [0e5 12-12 14:19:33.57 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 | [1da 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] +peer1.org2.example.com | [06a 12-15 03:49:12.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFSKPRsXnXvaTTqRKjkTRYYoPjGg +peer1.org1.example.com | [057 12-15 03:49:08.26 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: E752917A1D9C70B7050D72AB3F9C55110C1837036CBA00825F6A51EFEE798438 +peer0.org1.example.com | [1db 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] does not exist 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 | [154 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [56146ac5]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [136 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org2.example.com | [0e6 12-12 14:19:33.57 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.1.0,txid=60e8c224-5908-46c1-84e2-5c52375699b1,syscc=true,proposal=0x0,canname=escc:1.1.0 -orderer.example.com | MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [06c 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock -peer1.org1.example.com | [155 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [56146ac5]Move state message INIT -peer0.org1.example.com | [137 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 -peer1.org2.example.com | [0e7 12-12 14:19:33.57 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.1.0 is being launched -peer0.org2.example.com | [06d 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [0e8 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org1.example.com | [156 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [56146ac5]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [06e 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.1.0 -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [138 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [0e9 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org2.example.com | [06f 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) -peer1.org1.example.com | [157 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer0.org2.example.com | [070 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 -peer1.org2.example.com | [0ea 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=escc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -peer0.org2.example.com | [072 12-12 14:19:34.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 | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | [158 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [56146ac5]sending state message INIT -peer0.org1.example.com | [134 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer0.org2.example.com | [071 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 -peer0.org1.example.com | [139 12-12 14:19:35.91 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 | [0eb 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer1.org1.example.com | [159 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [56146ac5]Received message INIT from shim -peer1.org2.example.com | [0ec 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: escc:1.1.0(networkid:dev,peerid:peer1.org2.example.com) -peer0.org2.example.com | [073 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org2.example.com | [0ed 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -orderer.example.com | n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -peer1.org1.example.com | [15a 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [56146ac5]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [074 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 -orderer.example.com | +8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer1.org2.example.com | [0ee 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org1.example.com | [15b 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [075 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [13a 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -peer1.org1.example.com | [15c 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [56146ac5]Received INIT, initializing chaincode -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=escc:1.1.0 -peer0.org2.example.com | [076 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [15d 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [56146ac5]Init get response status: 200 -peer0.org1.example.com | [13b 12-12 14:19:35.91 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 | SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -peer0.org2.example.com | [077 12-12 14:19:34.57 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 | [06b 12-15 03:49:12.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer0.org1.example.com | [1dc 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] exists +peer1.org1.example.com | [059 12-15 03:49:08.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org1.example.com:7051 started +orderer.example.com | TgXRAoMQwI+9AaLXTSL+AsApwlxedr+PJ+UgfBNcxey226YSZRJqLeiH/TajXzBd +peer0.org2.example.com | [060 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.1.0 +peer0.org1.example.com | [1dd 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +peer1.org1.example.com | [05a 12-15 03:49:08.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +peer1.org1.example.com | [05b 12-15 03:49:08.27 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 | [061 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [15e 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [56146ac5]Init succeeded. Sending COMPLETED -orderer.example.com | uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y +peer0.org1.example.com | [1de 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +peer1.org1.example.com | [05c 12-15 03:49:08.27 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [062 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.1.0 peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org1.example.com | [13c 12-12 14:19:35.91 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 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [56146ac5]Move state message COMPLETED -orderer.example.com | cNvAXU8LlQ== +peer0.org1.example.com | [1df 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +orderer.example.com | Af8wKQYDVR0OBCIEIPxyg8RiuCl5W+wOoXUqeRhWBcR2XF2JtWJ5qtJMQ3Y1MAoG +peer0.org2.example.com | [063 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org1.example.com | [13d 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.1.0 -peer0.org2.example.com | [078 12-12 14:19:34.57 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 | [160 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [56146ac5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [079 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.1.0 +peer0.org1.example.com | [1e0 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +peer1.org1.example.com | [05d 12-15 03:49:08.27 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF4060A3F0A1B70656572312E6F...455254494649434154452D2D2D2D2D0A +orderer.example.com | CCqGSM49BAMCA0gAMEUCIQCoRrlZYPh0Qnsp3Z9KitmTDkRqi6JyR4RLiOyfv8Tf +peer0.org2.example.com | [064 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org2.example.com:7051 started peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org1.example.com | [13e 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.1.0" , sending back REGISTERED -peer1.org1.example.com | [161 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [56146ac5]send state message COMPLETED -orderer.example.com | [04b 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [07a 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.1.0" , sending back REGISTERED -peer1.org1.example.com | [162 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [56146ac5]Received message COMPLETED from shim -peer0.org1.example.com | [13f 12-12 14:19:35.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 | [1e1 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +orderer.example.com | QgIgdHbFqXGTZ0HFQmknUFd5DD4TTltv8Ijmfm8J1skS4jc= +peer0.org2.example.com | [065 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | [07b 12-12 14:19:34.57 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 | [163 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [56146ac5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [140 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org1.example.com | [05e 12-15 03:49:08.27 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: FB9183E981EE0589305240D5228681517B461FE425D59E9DA9A3CECEEBC38EB0 +peer0.org1.example.com | [1e2 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [066 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | [07c 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [164 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [56146ac5-e675-493b-95ac-116b3901d9dc]HandleMessage- COMPLETED. Notify -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | [05f 12-15 03:49:08.27 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 | [1e3 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc421c479a0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +orderer.example.com | [04a 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [067 12-15 03:49:10.86 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_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org1.example.com | [141 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [07e 12-12 14:19:34.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 cscc:1.1.0 launch seq completed -peer1.org2.example.com | [0ef 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock -peer0.org2.example.com | [07f 12-12 14:19:34.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 -peer1.org2.example.com | [0f0 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock -peer1.org1.example.com | [165 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:56146ac5-e675-493b-95ac-116b3901d9dc, channelID: -peer0.org2.example.com | [080 12-12 14:19:34.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... -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [143 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [0f1 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.1.0 -peer1.org1.example.com | [166 12-12 14:19:33.62 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 | [081 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [19db4943]Move state message READY -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer0.org1.example.com | [142 12-12 14:19:35.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.1.0 launch seq completed -peer1.org1.example.com | [167 12-12 14:19:33.62 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 | [082 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [19db4943]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | [0f2 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) -peer0.org2.example.com | [083 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [19db4943]Entered state ready -peer0.org1.example.com | [144 12-12 14:19:35.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 -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer1.org1.example.com | [168 12-12 14:19:33.62 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.1.0,txid=4d0b88ed-5105-48ef-b8b7-ddf30f5919bf,syscc=true,proposal=0x0,canname=qscc:1.1.0 -peer1.org2.example.com | [0f3 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 -peer0.org1.example.com | [145 12-12 14:19:35.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.org2.example.com | [084 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:19db4943-f1b0-40ac-ad00-164ffc4ee3a8, channelID: -peer1.org1.example.com | [169 12-12 14:19:33.62 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.1.0 is being launched -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -peer0.org1.example.com | [146 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9260c88c]Move state message READY -peer1.org1.example.com | [16a 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org1.example.com | [16b 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -peer0.org1.example.com | [147 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9260c88c]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -peer1.org1.example.com | [16c 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=qscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -peer0.org2.example.com | [085 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [19db4943]sending state message READY -peer1.org2.example.com | [0f4 12-12 14:19:33.57 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 | [148 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [9260c88c]Entered state ready -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -peer1.org2.example.com | [0f5 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 -peer1.org1.example.com | [16d 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer0.org2.example.com | [086 12-12 14:19:34.57 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 | [149 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:9260c88c-9a79-4695-bb87-1b7070cd63bb, channelID: -peer1.org2.example.com | [0f6 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -orderer.example.com | ZM8rwLlgV6XUeTLW -peer0.org2.example.com | [087 12-12 14:19:34.57 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 | [16e 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: qscc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [0f7 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 -peer0.org1.example.com | [14a 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9260c88c]sending state message READY -peer0.org2.example.com | [088 12-12 14:19:34.57 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 | [16f 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer1.org2.example.com | [0f8 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [089 12-12 14:19:34.57 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.1.0 -orderer.example.com | [04c 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [14b 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9260c88c]Received message READY from shim -peer0.org2.example.com | [08a 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [19db4943]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [170 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org2.example.com | [0f9 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [14c 12-12 14:19:35.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 -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -peer1.org2.example.com | [0fa 12-12 14:19:33.57 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 | CORE_CHAINCODE_ID_NAME=qscc:1.1.0 -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [0fb 12-12 14:19:33.57 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 | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | [14e 12-12 14:19:35.91 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 | [08b 12-12 14:19:34.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.org2.example.com | [0fc 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.1.0 -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org2.example.com | [0fd 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.1.0" , sending back REGISTERED -peer0.org1.example.com | [14f 12-12 14:19:35.91 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 | [08c 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [19db4943]sendExecuteMsg trigger event INIT -peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org2.example.com | [0fe 12-12 14:19:33.57 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 | [14d 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9260c88c]Handling ChaincodeMessage of type: READY(state:established) -peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer0.org2.example.com | [07d 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [0ff 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | [150 12-12 14:19:35.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.1.0 -peer0.org2.example.com | [08d 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [151 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9260c88c]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [100 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [08e 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [19db4943]Received message READY from shim -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 | [101 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer1.org1.example.com | [171 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock -peer0.org1.example.com | [152 12-12 14:19:35.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 | [090 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [19db4943]Move state message INIT -peer1.org1.example.com | [172 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock -peer1.org2.example.com | [102 12-12 14:19:33.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 escc:1.1.0 launch seq completed -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -peer1.org1.example.com | [173 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.1.0 -peer0.org1.example.com | [153 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9260c88c]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [091 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [19db4943]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [103 12-12 14:19:33.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 | [154 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9260c88c]Move state message INIT -peer0.org2.example.com | [092 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -peer1.org1.example.com | [174 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) -peer0.org2.example.com | [093 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [19db4943]sending state message INIT -peer0.org1.example.com | [155 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9260c88c]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -peer1.org2.example.com | [104 12-12 14:19:33.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... -peer0.org2.example.com | [08f 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [19db4943]Handling ChaincodeMessage of type: READY(state:established) -peer0.org1.example.com | [156 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -peer0.org2.example.com | [094 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [19db4943]Received message INIT from shim -peer1.org2.example.com | [105 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [60e8c224]Move state message READY -peer1.org1.example.com | [175 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -peer0.org2.example.com | [095 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [19db4943]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [157 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9260c88c]sending state message INIT -peer1.org2.example.com | [106 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [60e8c224]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | ZM8rwLlgV6XUeTLW -peer0.org2.example.com | [096 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [176 12-12 14:19:33.63 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 | [158 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9260c88c]Received message INIT from shim -peer1.org2.example.com | [107 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [60e8c224]Entered state ready -peer0.org2.example.com | [097 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [19db4943]Received INIT, initializing chaincode -peer1.org1.example.com | [177 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 -peer0.org1.example.com | [159 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9260c88c]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [108 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:60e8c224-5908-46c1-84e2-5c52375699b1, channelID: -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [098 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org1.example.com | [15a 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [178 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org2.example.com | [099 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [109 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [60e8c224]sending state message READY -orderer.example.com | [04d 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org1.example.com | [15b 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [9260c88c]Received INIT, initializing chaincode -peer1.org1.example.com | [179 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 -peer1.org2.example.com | [10b 12-12 14:19:33.57 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 | [09a 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [19db4943]Init get response status: 200 -peer0.org1.example.com | [15c 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9260c88c]Init get response status: 200 -orderer.example.com | [04e 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -peer1.org2.example.com | [10c 12-12 14:19:33.57 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 | [15d 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9260c88c]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [17a 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [15e 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9260c88c]Move state message COMPLETED -peer1.org2.example.com | [10d 12-12 14:19:33.57 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 | [17b 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | [04f 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer0.org2.example.com | [09b 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [19db4943]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [15f 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9260c88c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [10e 12-12 14:19:33.57 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.1.0 -peer1.org1.example.com | [17c 12-12 14:19:33.63 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 | [160 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9260c88c]send state message COMPLETED -peer0.org2.example.com | [09c 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [19db4943]Move state message COMPLETED -peer1.org1.example.com | [17d 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | [050 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -peer1.org2.example.com | [10f 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [60e8c224]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [161 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9260c88c]Received message COMPLETED from shim -peer1.org1.example.com | [17e 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.1.0 -peer0.org2.example.com | [09d 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [19db4943]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [162 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9260c88c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [17f 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.1.0" , sending back REGISTERED -peer0.org2.example.com | [09e 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [19db4943]send state message COMPLETED -orderer.example.com | [051 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -peer0.org1.example.com | [163 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9260c88c-9a79-4695-bb87-1b7070cd63bb]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [110 12-12 14:19:33.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 | [180 12-12 14:19:33.63 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 | [052 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -peer0.org1.example.com | [164 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9260c88c-9a79-4695-bb87-1b7070cd63bb, channelID: -peer0.org2.example.com | [09f 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [19db4943]Received message COMPLETED from shim -peer1.org1.example.com | [181 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [111 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [60e8c224]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [165 12-12 14:19:35.91 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 | [0a0 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [19db4943]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [182 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [166 12-12 14:19:35.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 | [112 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [60e8c224]Move state message INIT -peer0.org1.example.com | [167 12-12 14:19:35.92 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.1.0,txid=2800e44b-479a-4037-a809-2b93dbf305b6,syscc=true,proposal=0x0,canname=qscc:1.1.0 -peer1.org1.example.com | [183 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | [053 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -peer0.org1.example.com | [168 12-12 14:19:35.92 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.1.0 is being launched -peer0.org2.example.com | [0a1 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [19db4943-f1b0-40ac-ad00-164ffc4ee3a8]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [113 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [60e8c224]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [184 12-12 14:19:33.63 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.1.0 launch seq completed -peer0.org1.example.com | [169 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -orderer.example.com | [054 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -peer1.org2.example.com | [114 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [0a2 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:19db4943-f1b0-40ac-ad00-164ffc4ee3a8, channelID: -peer1.org1.example.com | [185 12-12 14:19:33.63 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 | [16a 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org2.example.com | [115 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [60e8c224]sending state message INIT -peer0.org1.example.com | [16b 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=qscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -peer1.org1.example.com | [186 12-12 14:19:33.63 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 | [0a3 12-12 14:19:34.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 | [055 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -peer1.org2.example.com | [10a 12-12 14:19:33.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [60e8c224]Received message READY from shim -peer0.org1.example.com | [16c 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer1.org1.example.com | [187 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4d0b88ed]Move state message READY -peer0.org2.example.com | [0a4 12-12 14:19:34.57 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.org1.example.com | [16d 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: qscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) -peer1.org1.example.com | [188 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4d0b88ed]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [116 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [60e8c224]Handling ChaincodeMessage of type: READY(state:established) -peer0.org1.example.com | [16e 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -orderer.example.com | [056 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -peer1.org1.example.com | [189 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [4d0b88ed]Entered state ready -peer0.org2.example.com | [0a5 12-12 14:19:34.57 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.1.0,txid=489bdbf5-c844-43f3-9ba9-895080113179,syscc=true,proposal=0x0,canname=lscc:1.1.0 -peer1.org2.example.com | [117 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [60e8c224]Received message INIT from shim -peer0.org1.example.com | [16f 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org1.example.com | [18a 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:4d0b88ed-5105-48ef-b8b7-ddf30f5919bf, channelID: -peer0.org2.example.com | [0a6 12-12 14:19:34.57 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.1.0 is being launched -peer1.org2.example.com | [118 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [60e8c224]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.1.0 -peer1.org1.example.com | [18b 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4d0b88ed]sending state message READY -orderer.example.com | [057 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums/SampleConsortium/Org1MSP -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [18c 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4d0b88ed]Received message READY from shim -peer0.org2.example.com | [0a7 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org2.example.com | [119 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -orderer.example.com | [058 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Consortiums/SampleConsortium/Org1MSP -peer1.org1.example.com | [18d 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4d0b88ed]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [11a 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [60e8c224]Received INIT, initializing chaincode -peer0.org2.example.com | [0a8 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org1.example.com | [18e 12-12 14:19:33.63 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 | [11b 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -orderer.example.com | [059 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Consortiums/SampleConsortium/Org1MSP -peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org1.example.com | [18f 12-12 14:19:33.63 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 | [0a9 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=lscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -peer1.org2.example.com | [11c 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [60e8c224]Init get response status: 200 -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [190 12-12 14:19:33.63 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 | [0aa 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -orderer.example.com | [05a 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums/SampleConsortium/Org2MSP -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | [191 12-12 14:19:33.63 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.1.0 -peer0.org2.example.com | [0ab 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: lscc:1.1.0(networkid:dev,peerid:peer0.org2.example.com) -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 | [11d 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [60e8c224]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [192 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4d0b88ed]Inside sendExecuteMessage. Message INIT -orderer.example.com | [05b 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Consortiums/SampleConsortium/Org2MSP -peer0.org1.example.com | [170 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock -peer0.org2.example.com | [0ac 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer1.org1.example.com | [193 12-12 14:19:33.63 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 | [171 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock -peer1.org2.example.com | [11e 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [60e8c224]Move state message COMPLETED -peer1.org1.example.com | [194 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4d0b88ed]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [172 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.1.0 -orderer.example.com | [05c 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Consortiums/SampleConsortium/Org2MSP -peer0.org2.example.com | [0ad 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org2.example.com | [11f 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [60e8c224]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [05d 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums +peer1.org1.example.com | [060 12-15 03:49:08.27 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [061 12-15 03:49:08.27 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267312E6578616D706C652E636F6D3A37303531 +peer1.org1.example.com | [062 12-15 03:49:08.27 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 5E1207E32E2709D3C49FD6E4E42EA75E054BF7CAB0517372323BB60EB639719F +peer1.org1.example.com | [058 12-15 03:49:08.27 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.1.0,txid=e89da81f-fc6f-48e6-85a2-cde418fb69d6,syscc=true,proposal=0x0,canname=cscc:1.1.0 +orderer.example.com | MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org2.example.com | [06c 12-15 03:49:12.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock +peer0.org1.example.com | [1e4 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +peer1.org1.example.com | [063 12-15 03:49:08.27 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.1.0 is being launched +peer1.org1.example.com | [064 12-15 03:49:08.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } +peer0.org2.example.com | [068 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +peer1.org2.example.com | [06d 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock +peer0.org1.example.com | [1e5 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: +peer1.org1.example.com | [065 12-15 03:49:08.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Exiting +peer1.org2.example.com | [06e 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.1.0 +peer0.org1.example.com | [1e6 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() +peer0.org2.example.com | [069 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org1.example.com | [066 12-15 03:49:08.27 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer1.org2.example.com | [06f 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) +peer0.org2.example.com | [06a 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org1.example.com | [067 12-15 03:49:08.27 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +peer1.org2.example.com | [070 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 +peer0.org2.example.com | [06b 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF4060A3F0A1B70656572302E6F...455254494649434154452D2D2D2D2D0A +orderer.example.com | zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +peer0.org1.example.com | [1e7 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. +peer0.org2.example.com | [06c 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 3B07B1EA32722AD4175B03334CE5D1553DFB30DA43747ECF392EADFDA0700175 +orderer.example.com | ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org1.example.com | [068 12-15 03:49:08.27 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=cscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +peer1.org2.example.com | [071 12-15 03:49:12.58 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 | [1e8 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [0] +peer0.org2.example.com | [06d 12-15 03:49:10.86 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 | [06e 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +peer1.org1.example.com | [069 12-15 03:49:08.27 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key] +peer1.org2.example.com | [072 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 +peer0.org2.example.com | [06f 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267322E6578616D706C652E636F6D3A37303531 +peer0.org1.example.com | [1e9 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [06a 12-15 03:49:08.27 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: cscc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) +orderer.example.com | Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +peer1.org2.example.com | [073 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer1.org2.example.com | [074 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 +peer0.org2.example.com | [070 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 31AA5BDA348977D7C004285715D545FB004C7F32E9BB02A9710DB7C2282B8EA6 +peer0.org1.example.com | [1ea 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [0] +peer1.org1.example.com | [06b 12-15 03:49:08.27 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +orderer.example.com | sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +peer0.org2.example.com | [071 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 +peer1.org2.example.com | [075 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [06c 12-15 03:49:08.27 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer0.org1.example.com | [1eb 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org2.example.com | [072 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +peer1.org2.example.com | [076 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | [077 12-15 03:49:12.58 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 | [04b 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +orderer.example.com | ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +orderer.example.com | Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +orderer.example.com | sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +peer1.org2.example.com | [078 12-15 03:49:12.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 | [079 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.1.0 +peer0.org2.example.com | [073 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 +peer0.org1.example.com | [1ec 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer0.org1.example.com | [1ed 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.1.0 +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer1.org2.example.com | [07a 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.1.0" , sending back REGISTERED +orderer.example.com | [04c 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org2.example.com | [074 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org2.example.com | [07b 12-15 03:49:12.58 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 | [04d 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ConsortiumProtos +peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer0.org2.example.com | [075 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [1ee 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +orderer.example.com | [04e 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelCreationPolicy +peer1.org2.example.com | [07c 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [07d 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org2.example.com | [07e 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org2.example.com | [07f 12-15 03:49:12.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 cscc:1.1.0 launch seq completed +peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org2.example.com | [076 12-15 03:49:10.86 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 | [077 12-15 03:49:10.86 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 | [078 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.1.0 +orderer.example.com | [04f 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [050 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [051 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [052 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [053 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [054 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [055 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAMt+4ybOK1r7B8eavLVTMBUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BPGrtJtHj1Ql02gq7I0ZQQKJwvtZhp0t3rCwF1cFILTHIBM4phJ/ZYJQa1lb12pO +orderer.example.com | sxSxuEvRGTFcZXtunUc0SeWjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICSqVyrJerF7YoXDKKeV +orderer.example.com | 2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCIB+psiek7FqP18l1 +orderer.example.com | 3s2anbtfpiGTHbAnm2BihpD9sRPjAiAIvsdyfn+nb2bCQBK6sodbO+LxSkuZulkP +orderer.example.com | oMR3yCH/eA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [056 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | [080 12-15 03:49:12.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 | [079 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.1.0" , sending back REGISTERED +peer0.org1.example.com | [1ef 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +orderer.example.com | VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +peer1.org2.example.com | [081 12-15 03:49:12.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 | [07a 12-15 03:49:10.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 | [07b 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org2.example.com | [07c 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [07d 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org2.example.com | [07e 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer0.org2.example.com | [07f 12-15 03:49:10.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 cscc:1.1.0 launch seq completed +peer0.org2.example.com | [080 12-15 03:49:10.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 +peer0.org2.example.com | [081 12-15 03:49:10.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.org2.example.com | [082 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7811ba24]Move state message READY +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 | YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +peer1.org1.example.com | [06d 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock +peer1.org2.example.com | [082 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ffa01149]Move state message READY +orderer.example.com | 8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +peer0.org2.example.com | [083 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7811ba24]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [1f0 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +peer1.org1.example.com | [06e 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock +peer1.org2.example.com | [083 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ffa01149]Fabric side Handling ChaincodeMessage of type: READY in state established +orderer.example.com | N5+z/fTTfchGfLaCtzM= +peer0.org2.example.com | [084 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [7811ba24]Entered state ready +peer0.org2.example.com | [085 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:7811ba24-60fe-400f-91ec-62de264200c7, channelID: +mysql | Initializing database +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [06f 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.1.0 +peer1.org1.example.com | [070 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) +mysql | 2017-12-15T03:49:05.871737Z 0 [Note] Basedir set to /usr/ +mysql | 2017-12-15T03:49:05.871902Z 0 [Warning] The syntax '--symbolic-links/-s' is deprecated and will be removed in a future release +peer0.org2.example.com | [086 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7811ba24]sending state message READY +peer1.org2.example.com | [084 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [ffa01149]Entered state ready +peer1.org2.example.com | [085 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:ffa01149-a5c6-40e6-bc07-0f828d8d3667, channelID: +peer1.org2.example.com | [086 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ffa01149]sending state message READY +peer1.org2.example.com | [087 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ffa01149]Received message READY from shim +mysql | 2017-12-15T03:49:05.873057Z 0 [Warning] You need to use --log-bin to make --log-slave-updates work. +mysql | libnuma: Warning: /sys not mounted or invalid. Assuming one node: No such file or directory +mysql | mbind: Operation not permitted +mysql | mbind: Operation not permitted +mysql | 2017-12-15T03:49:11.321929Z 0 [Warning] No existing UUID has been found, so we assume that this is the first time that this server has been started. Generating a new UUID: e921b17a-e14a-11e7-9604-0242ac150002. +mysql | 2017-12-15T03:49:12.015194Z 0 [Warning] You have not provided a mandatory server-id. Servers in a replication topology must have unique server-ids. Please refer to the proper server start-up parameters documentation. +mysql | 2017-12-15T03:49:12.026997Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened. +mysql | 2017-12-15T03:49:12.032640Z 5 [Warning] root@localhost is created with an empty password ! Please consider switching off the --initialize-insecure option. +mysql | 2017-12-15T03:49:13.482045Z 5 [Warning] 'user' entry 'mysql.session@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-15T03:49:13.482116Z 5 [Warning] 'user' entry 'mysql.sys@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-15T03:49:13.482142Z 5 [Warning] 'user' entry 'root@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-15T03:49:13.482181Z 5 [Warning] 'db' entry 'performance_schema mysql.session@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-15T03:49:13.482223Z 5 [Warning] 'db' entry 'sys mysql.sys@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-15T03:49:13.482263Z 5 [Warning] 'proxies_priv' entry '@ root@localhost' ignored in --skip-name-resolve mode. +peer0.org2.example.com | [087 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7811ba24]Received message READY from shim +mysql | 2017-12-15T03:49:13.482597Z 5 [Warning] 'tables_priv' entry 'user mysql.session@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-15T03:49:13.482620Z 5 [Warning] 'tables_priv' entry 'sys_config mysql.sys@localhost' ignored in --skip-name-resolve mode. +mysql | Database initialized +mysql | Initializing certificates +mysql | Generating a 2048 bit RSA private key +mysql | .......................+++ +mysql | .....................................................................................................+++ +mysql | unable to write 'random state' +mysql | writing new private key to 'ca-key.pem' +mysql | ----- +mysql | Generating a 2048 bit RSA private key +mysql | ....+++ +mysql | .........................+++ +mysql | unable to write 'random state' +mysql | writing new private key to 'server-key.pem' +mysql | ----- +mysql | Generating a 2048 bit RSA private key +mysql | ...........................................................................................................................................................................+++ +mysql | ..................................................................................+++ +mysql | unable to write 'random state' +mysql | writing new private key to 'client-key.pem' +mysql | ----- +mysql | Certificates initialized +mysql | MySQL init process in progress... +mysql | 2017-12-15T03:49:16.319418Z 0 [Note] Basedir set to /usr/ +mysql | 2017-12-15T03:49:16.319643Z 0 [Warning] The syntax '--symbolic-links/-s' is deprecated and will be removed in a future release +mysql | 2017-12-15T03:49:16.319780Z 0 [Note] --secure-file-priv is set to NULL. Operations related to importing and exporting data are disabled +mysql | 2017-12-15T03:49:16.319856Z 0 [Note] /usr/sbin/mysqld (mysqld 8.0.3-rc-log) starting as process 85 ... +mysql | 2017-12-15T03:49:16.323451Z 0 [Warning] No argument was provided to --log-bin, and --log-bin-index was not used; so replication may break when this MySQL server acts as a master and has his hostname changed!! Please use '--log-bin=mysql-bin' to avoid this problem. +mysql | 2017-12-15T03:49:16.328373Z 0 [Note] InnoDB: Using Linux native AIO +mysql | 2017-12-15T03:49:16.328625Z 0 [Note] Plugin 'FEDERATED' is disabled. +mysql | 2017-12-15T03:49:16.333290Z 1 [Note] InnoDB: PUNCH HOLE support available +mysql | 2017-12-15T03:49:16.333358Z 1 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins +mysql | 2017-12-15T03:49:16.333371Z 1 [Note] InnoDB: Uses event mutexes +mysql | 2017-12-15T03:49:16.333380Z 1 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier +mysql | 2017-12-15T03:49:16.333391Z 1 [Note] InnoDB: Compressed tables use zlib 1.2.11 +mysql | 2017-12-15T03:49:16.334366Z 1 [Note] InnoDB: Number of pools: 1 +mysql | 2017-12-15T03:49:16.334852Z 1 [Note] InnoDB: Using CPU crc32 instructions +mysql | 2017-12-15T03:49:16.338349Z 1 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M +mysql | libnuma: Warning: /sys not mounted or invalid. Assuming one node: No such file or directory +mysql | mbind: Operation not permitted +mysql | mbind: Operation not permitted +mysql | 2017-12-15T03:49:16.350380Z 1 [Note] InnoDB: Completed initialization of buffer pool +mysql | 2017-12-15T03:49:16.352364Z 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority(). +mysql | 2017-12-15T03:49:16.368582Z 1 [Note] InnoDB: Using 'tablespaces.open.2' max LSN: 13791453 +mysql | 2017-12-15T03:49:16.371656Z 1 [Note] InnoDB: Applying a batch of 0 redo log records ... +mysql | 2017-12-15T03:49:16.371710Z 1 [Note] InnoDB: Apply batch completed! +mysql | 2017-12-15T03:49:16.373083Z 1 [Note] InnoDB: Opened 2 existing undo tablespaces. +mysql | 2017-12-15T03:49:16.388737Z 1 [Note] InnoDB: Creating shared tablespace for temporary tables +mysql | 2017-12-15T03:49:16.389046Z 1 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ... +mysql | MySQL init process in progress... +mysql | 2017-12-15T03:49:17.172761Z 1 [Note] InnoDB: File './ibtmp1' size is now 12 MB. +mysql | 2017-12-15T03:49:17.175405Z 1 [Note] InnoDB: Created 128 and tracked 128 new rollback segment(s) in the temporary tablespace. 128 are now active. +mysql | 2017-12-15T03:49:17.175724Z 1 [Note] InnoDB: 8.0.3 started; log sequence number 15050659 +peer1.org2.example.com | [088 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ffa01149]Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [088 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7811ba24]Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [089 12-15 03:49:10.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.org2.example.com | [08a 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +mysql | 2017-12-15T03:49:17.224603Z 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool +peer1.org1.example.com | [071 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 +orderer.example.com | [057 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [1f1 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer1.org2.example.com | [089 12-15 03:49:12.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 +mysql | 2017-12-15T03:49:17.236778Z 0 [Note] InnoDB: Buffer pool(s) load completed at 171215 3:49:17 +peer0.org2.example.com | [08b 12-15 03:49:10.86 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 | [072 12-15 03:49:08.28 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 | MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +mysql | 2017-12-15T03:49:17.248481Z 1 [Note] Found data dictionary with version 1 +peer1.org2.example.com | [08a 12-15 03:49:12.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 | [08c 12-15 03:49:10.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.1.0 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +mysql | 2017-12-15T03:49:17.274190Z 0 [Note] InnoDB: DDL log recovery : begin +peer1.org2.example.com | [08b 12-15 03:49:12.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 | [073 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 +peer0.org2.example.com | [08d 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7811ba24]Inside sendExecuteMessage. Message INIT +mysql | 2017-12-15T03:49:17.274271Z 0 [Note] InnoDB: DDL log recovery : end +peer1.org2.example.com | [08c 12-15 03:49:12.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: cscc:1.1.0 +peer1.org1.example.com | [074 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [1f2 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:1 channel_group: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +mysql | 2017-12-15T03:49:17.277338Z 0 [Note] InnoDB: Waiting for purge to start +peer1.org2.example.com | [08d 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ffa01149]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [08e 12-15 03:49:10.87 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 | [075 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 +mysql | 2017-12-15T03:49:17.342102Z 0 [Warning] You have not provided a mandatory server-id. Servers in a replication topology must have unique server-ids. Please refer to the proper server start-up parameters documentation. +peer0.org2.example.com | [08f 12-15 03:49:10.87 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7811ba24]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [1f3 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org2.example.com | [08e 12-15 03:49:12.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.org2.example.com | [08f 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ffa01149]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [090 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ffa01149]Move state message INIT +mysql | 2017-12-15T03:49:17.344585Z 0 [Note] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them. +mysql | 2017-12-15T03:49:17.344825Z 0 [Warning] CA certificate ca.pem is self signed. +mysql | 2017-12-15T03:49:17.359006Z 0 [Warning] 'user' entry 'mysql.session@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-15T03:49:17.359063Z 0 [Warning] 'user' entry 'mysql.sys@localhost' ignored in --skip-name-resolve mode. +peer0.org2.example.com | [090 12-15 03:49:10.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7811ba24]Move state message INIT +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [091 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ffa01149]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [092 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [093 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ffa01149]sending state message INIT +mysql | 2017-12-15T03:49:17.359079Z 0 [Warning] 'user' entry 'root@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-15T03:49:17.359109Z 0 [Warning] 'db' entry 'performance_schema mysql.session@localhost' ignored in --skip-name-resolve mode. +peer0.org2.example.com | [091 12-15 03:49:10.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7811ba24]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [092 12-15 03:49:10.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +peer1.org1.example.com | [076 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +mysql | 2017-12-15T03:49:17.359121Z 0 [Warning] 'db' entry 'sys mysql.sys@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-15T03:49:17.359148Z 0 [Warning] 'proxies_priv' entry '@ root@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-15T03:49:17.362045Z 0 [Warning] 'tables_priv' entry 'user mysql.session@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-15T03:49:17.362081Z 0 [Warning] 'tables_priv' entry 'sys_config mysql.sys@localhost' ignored in --skip-name-resolve mode. +peer1.org2.example.com | [094 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ffa01149]Received message INIT from shim +peer1.org2.example.com | [095 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ffa01149]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +peer0.org2.example.com | [093 12-15 03:49:10.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7811ba24]sending state message INIT +peer0.org2.example.com | [094 12-15 03:49:10.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7811ba24]Received message INIT from shim +mysql | 2017-12-15T03:49:17.369571Z 4 [Note] Event Scheduler: scheduler thread started with id 4 +peer1.org1.example.com | [077 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | [078 12-15 03:49:08.28 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 | [096 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [1f4 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [095 12-15 03:49:10.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7811ba24]Handling ChaincodeMessage of type: INIT(state:ready) +mysql | 2017-12-15T03:49:17.369881Z 0 [Note] /usr/sbin/mysqld: ready for connections. Version: '8.0.3-rc-log' socket: '/var/run/mysqld/mysqld.sock' port: 0 MySQL Community Server (GPL) +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +peer1.org1.example.com | [079 12-15 03:49:08.28 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 | [097 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [ffa01149]Received INIT, initializing chaincode +peer0.org1.example.com | [1f5 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [1f6 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +mysql | Warning: Unable to load '/usr/share/zoneinfo/iso3166.tab' as time zone. Skipping it. +orderer.example.com | YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +peer1.org1.example.com | [07a 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.1.0 +peer0.org2.example.com | [096 12-15 03:49:10.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [098 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +mysql | Warning: Unable to load '/usr/share/zoneinfo/leap-seconds.list' as time zone. Skipping it. +peer0.org1.example.com | [1f7 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | 8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +peer1.org1.example.com | [07b 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.1.0" , sending back REGISTERED +peer0.org2.example.com | [097 12-15 03:49:10.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [7811ba24]Received INIT, initializing chaincode +peer1.org2.example.com | [099 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +mysql | Warning: Unable to load '/usr/share/zoneinfo/zone.tab' as time zone. Skipping it. +peer0.org1.example.com | [1f8 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | N5+z/fTTfchGfLaCtzM= +peer1.org1.example.com | [07c 12-15 03:49:08.28 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 | [098 12-15 03:49:10.87 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer1.org2.example.com | [09a 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ffa01149]Init get response status: 200 +mysql | 2017-12-15T03:49:21.548735Z 9 [Warning] 'user' entry 'mysql.sys@localhost' ignored in --skip-name-resolve mode. +peer0.org1.example.com | [1f9 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [07d 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org2.example.com | [099 12-15 03:49:10.87 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [09b 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ffa01149]Init succeeded. Sending COMPLETED +mysql | 2017-12-15T03:49:21.548773Z 9 [Warning] 'user' entry 'root@localhost' ignored in --skip-name-resolve mode. +peer0.org1.example.com | [1fa 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [058 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer1.org2.example.com | [09c 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ffa01149]Move state message COMPLETED +mysql | 2017-12-15T03:49:21.548795Z 9 [Warning] 'db' entry 'performance_schema mysql.session@localhost' ignored in --skip-name-resolve mode. +peer0.org1.example.com | [1fb 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org1.example.com | [07e 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [09a 12-15 03:49:10.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7811ba24]Init get response status: 200 +orderer.example.com | [059 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +mysql | 2017-12-15T03:49:21.548806Z 9 [Warning] 'db' entry 'sys mysql.sys@localhost' ignored in --skip-name-resolve mode. +peer1.org2.example.com | [09d 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ffa01149]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1fc 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [07f 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org2.example.com | [09b 12-15 03:49:10.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7811ba24]Init succeeded. Sending COMPLETED +mysql | 2017-12-15T03:49:21.548829Z 9 [Warning] 'proxies_priv' entry '@ root@localhost' ignored in --skip-name-resolve mode. +peer1.org2.example.com | [09e 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ffa01149]send state message COMPLETED +peer0.org1.example.com | [1fd 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [080 12-15 03:49:08.28 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.1.0 launch seq completed +peer0.org2.example.com | [09c 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7811ba24]Move state message COMPLETED +orderer.example.com | [05a 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +mysql | 2017-12-15T03:49:21.548961Z 9 [Warning] 'tables_priv' entry 'user mysql.session@localhost' ignored in --skip-name-resolve mode. +peer0.org1.example.com | [1fe 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [1ff 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [09f 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ffa01149]Received message COMPLETED from shim +peer0.org2.example.com | [09d 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7811ba24]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [09e 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7811ba24]send state message COMPLETED +orderer.example.com | [05b 12-15 03:49:08.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +mysql | 2017-12-15T03:49:21.548982Z 9 [Warning] 'tables_priv' entry 'sys_config mysql.sys@localhost' ignored in --skip-name-resolve mode. +peer1.org1.example.com | [081 12-15 03:49:08.28 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 | [082 12-15 03:49:08.28 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 | [0a0 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ffa01149]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [09f 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7811ba24]Received message COMPLETED from shim +orderer.example.com | [05c 12-15 03:49:08.13 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +mysql | mysql: [Warning] Using a password on the command line interface can be insecure. +peer0.org1.example.com | [200 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [083 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e89da81f]Move state message READY +peer1.org2.example.com | [0a1 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ffa01149-a5c6-40e6-bc07-0f828d8d3667]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [0a0 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7811ba24]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [05d 12-15 03:49:08.13 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org1.example.com | [084 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e89da81f]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [0a2 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ffa01149-a5c6-40e6-bc07-0f828d8d3667, channelID: +mysql | +peer0.org1.example.com | [201 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [0a1 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7811ba24-60fe-400f-91ec-62de264200c7]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [0a2 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7811ba24-60fe-400f-91ec-62de264200c7, channelID: +peer0.org2.example.com | [0a3 12-15 03:49:10.88 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 | [0a4 12-15 03:49:10.88 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 +mysql | /usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/fabricexplorer.sql +peer1.org2.example.com | [0a3 12-15 03:49:12.58 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 | [202 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [05e 12-15 03:49:08.13 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +peer1.org1.example.com | [085 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [e89da81f]Entered state ready +peer0.org2.example.com | [0a5 12-15 03:49:10.88 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.1.0,txid=5e507424-f037-4488-a597-3ab7693f8e11,syscc=true,proposal=0x0,canname=lscc:1.1.0 +mysql | mysql: [Warning] Using a password on the command line interface can be insecure. +peer1.org2.example.com | [0a4 12-15 03:49:12.58 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 | [05f 12-15 03:49:08.13 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [086 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:e89da81f-fc6f-48e6-85a2-cde418fb69d6, channelID: +peer0.org2.example.com | [0a6 12-15 03:49:10.88 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.1.0 is being launched +peer0.org1.example.com | [203 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +mysql | +peer1.org2.example.com | [0a5 12-15 03:49:12.58 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.1.0,txid=6c723d60-0655-4184-a726-b0bd3db50635,syscc=true,proposal=0x0,canname=lscc:1.1.0 +orderer.example.com | MIICQzCCAemgAwIBAgIQShjAwe+6sxoSMZ8UrYKOcTAKBggqhkjOPQQDAjBzMQsw +peer1.org1.example.com | [087 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e89da81f]sending state message READY +peer0.org2.example.com | [0a7 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer0.org1.example.com | [204 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +mysql | +peer1.org2.example.com | [0a6 12-15 03:49:12.58 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.1.0 is being launched +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org1.example.com | [088 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e89da81f]Received message READY from shim +mysql | 2017-12-15T03:49:21.768605Z 0 [Note] Giving 1 client threads a chance to die gracefully +peer0.org1.example.com | [205 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [0a7 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer0.org2.example.com | [0a8 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa +peer1.org1.example.com | [089 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e89da81f]Handling ChaincodeMessage of type: READY(state:established) +mysql | 2017-12-15T03:49:21.768809Z 0 [Note] Shutting down slave threads +peer1.org2.example.com | [0a8 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +peer1.org2.example.com | [0a9 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=lscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +peer0.org2.example.com | [0a9 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=lscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +peer0.org1.example.com | [206 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [08a 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +mysql | 2017-12-15T03:49:21.769277Z 0 [Note] Event Scheduler: Killing the scheduler thread, thread id 4 +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org2.example.com | [0aa 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key] +peer1.org2.example.com | [0aa 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] +peer1.org1.example.com | [08b 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +mysql | 2017-12-15T03:49:21.769308Z 0 [Note] Event Scheduler: Waiting for the scheduler thread to reply +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | GwyyfDLH07dFVkEvxJDGOKGevUcaYHphZvhzV78MBXVwIEGIENk7Zs8x+dx6iwIK +orderer.example.com | LOGmXxq/Wqd4qLs6kFyZvqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer0.org2.example.com | [0ab 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: lscc:1.1.0(networkid:dev,peerid:peer0.org2.example.com) +peer1.org1.example.com | [08c 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +mysql | 2017-12-15T03:49:21.769468Z 0 [Note] Event Scheduler: Stopped +peer1.org2.example.com | [0ab 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: lscc:1.1.0(networkid:dev,peerid:peer1.org2.example.com) +peer0.org1.example.com | [207 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [208 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgsK9pE/plIOV10mqefUzE +peer0.org2.example.com | [0ac 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer1.org1.example.com | [08d 12-15 03:49:08.28 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.1.0 +mysql | 2017-12-15T03:49:21.769498Z 0 [Note] Forcefully disconnecting 0 remaining clients +peer1.org2.example.com | [0ac 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +peer0.org1.example.com | [209 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +peer0.org2.example.com | [0ad 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +mysql | 2017-12-15T03:49:21.769537Z 0 [Note] Event Scheduler: Purging the queue. 0 events +peer1.org1.example.com | [08e 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e89da81f]Inside sendExecuteMessage. Message INIT +orderer.example.com | vCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAL7xXrYD1fkzcpxi +peer1.org2.example.com | [0ad 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.1.0 -peer0.org1.example.com | [173 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) -peer1.org1.example.com | [195 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4d0b88ed]Move state message INIT -peer1.org2.example.com | [120 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [60e8c224]send state message COMPLETED -orderer.example.com | [05e 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +peer0.org1.example.com | [20a 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +mysql | 2017-12-15T03:49:21.769891Z 0 [Note] InnoDB: FTS optimize thread exiting. +orderer.example.com | yyZhFfEvMDWCoUicQw2b+c3GQ6OuAiA0KtNuH4yS4+c13W9Lsd28XNQK88FkwB2J +peer1.org1.example.com | [08f 12-15 03:49:08.28 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 | CORE_CHAINCODE_ID_NAME=lscc:1.1.0 peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [196 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4d0b88ed]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [121 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [60e8c224]Received message COMPLETED from shim -orderer.example.com | [05f 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Consortiums/Readers -peer0.org1.example.com | [174 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 -peer1.org1.example.com | [197 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [060 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -peer0.org1.example.com | [175 12-12 14:19:35.92 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_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -orderer.example.com | [061 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Consortiums/Writers -peer1.org1.example.com | [198 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4d0b88ed]sending state message INIT -peer1.org2.example.com | [122 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [60e8c224]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -orderer.example.com | [062 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -peer1.org1.example.com | [199 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4d0b88ed]Received message INIT from shim -peer0.org1.example.com | [176 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 -peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org1.example.com | [19a 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4d0b88ed]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | [063 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [123 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [60e8c224-5908-46c1-84e2-5c52375699b1]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [177 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org1.example.com | [19b 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [064 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | [124 12-12 14:19:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:60e8c224-5908-46c1-84e2-5c52375699b1, channelID: -orderer.example.com | [065 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [19c 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4d0b88ed]Received INIT, initializing chaincode -peer0.org1.example.com | [178 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 -orderer.example.com | [066 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | [125 12-12 14:19:33.59 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 | [067 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [19d 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -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 | [179 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | [068 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [0ae 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock -peer1.org2.example.com | [126 12-12 14:19:33.59 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 | [069 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [19e 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4d0b88ed]Init get response status: 200 -peer0.org1.example.com | [17a 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | [06a 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [127 12-12 14:19:33.60 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.1.0,txid=d949093f-50a1-4869-8e55-f0c5fc8d6959,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org1.example.com | [19f 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4d0b88ed]Init succeeded. Sending COMPLETED -orderer.example.com | [06b 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org2.example.com | [0af 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock -peer0.org1.example.com | [17b 12-12 14:19:35.92 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 | [06c 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [0b0 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.1.0 -peer1.org1.example.com | [1a0 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4d0b88ed]Move state message COMPLETED -peer0.org1.example.com | [17c 12-12 14:19:35.92 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 | [128 12-12 14:19:33.60 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.1.0 is being launched -orderer.example.com | [06d 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [17d 12-12 14:19:35.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.1.0 -peer0.org2.example.com | [0b1 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) -peer1.org1.example.com | [1a1 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4d0b88ed]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [129 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -orderer.example.com | [06e 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | [06f 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org2.example.com | [0b2 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 -peer0.org1.example.com | [17e 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.1.0" , sending back REGISTERED -peer1.org1.example.com | [1a2 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4d0b88ed]send state message COMPLETED -peer1.org2.example.com | [12a 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -orderer.example.com | [070 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org2.example.com | [0b3 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org1.example.com | [17f 12-12 14:19:35.92 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 | [071 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [12b 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -peer1.org1.example.com | [1a3 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4d0b88ed]Received message COMPLETED from shim -peer0.org1.example.com | [180 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [12c 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer0.org2.example.com | [0b4 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.1.0 -peer1.org1.example.com | [1a4 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4d0b88ed]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [072 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [181 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [1a5 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4d0b88ed-5105-48ef-b8b7-ddf30f5919bf]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [12d 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer1.org2.example.com) -peer0.org2.example.com | [0b5 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [1a6 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:4d0b88ed-5105-48ef-b8b7-ddf30f5919bf, channelID: -peer0.org2.example.com | [0b6 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 -peer1.org2.example.com | [12e 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -orderer.example.com | [073 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums -peer0.org2.example.com | [0b7 12-12 14:19:34.57 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 | [182 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | [1a7 12-12 14:19:33.63 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 | [074 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium -peer1.org2.example.com | [12f 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org1.example.com | [1a8 12-12 14:19:33.63 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.org1.example.com | [183 12-12 14:19:35.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.1.0 launch seq completed -peer0.org2.example.com | [0b8 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.1.0 -orderer.example.com | [075 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium/Org1MSP +peer0.org1.example.com | [20b 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +mysql | 2017-12-15T03:49:21.871184Z 0 [Note] Binlog end +orderer.example.com | QR9yhJE7rA== +peer1.org1.example.com | [090 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e89da81f]sendExecuteMsg trigger event INIT peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [1a9 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled +peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer0.org1.example.com | [20c 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +mysql | 2017-12-15T03:49:21.873871Z 0 [Note] Shutting down plugin 'ngram' +mysql | 2017-12-15T03:49:21.874004Z 0 [Note] Shutting down plugin 'BLACKHOLE' +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [091 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e89da81f]Move state message INIT +peer1.org1.example.com | [092 12-15 03:49:08.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e89da81f]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [093 12-15 03:49:08.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [094 12-15 03:49:08.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e89da81f]sending state message INIT +mysql | 2017-12-15T03:49:21.874016Z 0 [Note] Shutting down plugin 'ARCHIVE' +mysql | 2017-12-15T03:49:21.874032Z 0 [Note] Shutting down plugin 'INNODB_CACHED_INDEXES' +mysql | 2017-12-15T03:49:21.874039Z 0 [Note] Shutting down plugin 'INNODB_VIRTUAL' +mysql | 2017-12-15T03:49:21.874053Z 0 [Note] Shutting down plugin 'INNODB_COLUMNS' +mysql | 2017-12-15T03:49:21.874058Z 0 [Note] Shutting down plugin 'INNODB_TABLESPACES' +mysql | 2017-12-15T03:49:21.874063Z 0 [Note] Shutting down plugin 'INNODB_INDEXES' +mysql | 2017-12-15T03:49:21.874069Z 0 [Note] Shutting down plugin 'INNODB_TABLESTATS' +mysql | 2017-12-15T03:49:21.874075Z 0 [Note] Shutting down plugin 'INNODB_TABLES' +mysql | 2017-12-15T03:49:21.874081Z 0 [Note] Shutting down plugin 'INNODB_FT_INDEX_TABLE' +mysql | 2017-12-15T03:49:21.874086Z 0 [Note] Shutting down plugin 'INNODB_FT_INDEX_CACHE' +peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +mysql | 2017-12-15T03:49:21.874091Z 0 [Note] Shutting down plugin 'INNODB_FT_CONFIG' +peer1.org1.example.com | [095 12-15 03:49:08.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e89da81f]Received message INIT from shim +orderer.example.com | [060 12-15 03:49:08.14 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [20d 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org1.example.com | [184 12-12 14:19:35.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 -peer0.org2.example.com | [0b9 12-12 14:19:34.57 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 | [1aa 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes -orderer.example.com | [076 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP +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} +mysql | 2017-12-15T03:49:21.874096Z 0 [Note] Shutting down plugin 'INNODB_FT_BEING_DELETED' +mysql | 2017-12-15T03:49:21.874101Z 0 [Note] Shutting down plugin 'INNODB_FT_DELETED' +peer1.org1.example.com | [096 12-15 03:49:08.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e89da81f]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [20e 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org2.example.com | [0ba 12-12 14:19:34.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 | [185 12-12 14:19:35.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... +peer0.org2.example.com | [0ae 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +mysql | 2017-12-15T03:49:21.874106Z 0 [Note] Shutting down plugin 'INNODB_FT_DEFAULT_STOPWORD' +peer1.org1.example.com | [097 12-15 03:49:08.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [20f 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org2.example.com | [0bb 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.1.0 -orderer.example.com | [077 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins -peer1.org1.example.com | [1ab 12-12 14:19:33.63 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] +peer0.org2.example.com | [0af 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock +mysql | 2017-12-15T03:49:21.874111Z 0 [Note] Shutting down plugin 'INNODB_METRICS' +peer1.org1.example.com | [098 12-15 03:49:08.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e89da81f]Received INIT, initializing chaincode +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [0b0 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.1.0 +mysql | 2017-12-15T03:49:21.874117Z 0 [Note] Shutting down plugin 'INNODB_TEMP_TABLE_INFO' peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | [0bc 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.1.0" , sending back REGISTERED -peer0.org1.example.com | [186 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2800e44b]Move state message READY -orderer.example.com | [078 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers -peer1.org1.example.com | [1ac 12-12 14:19:33.63 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] +peer1.org1.example.com | [099 12-15 03:49:08.29 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer1.org1.example.com | [09a 12-15 03:49:08.29 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [09b 12-15 03:49:08.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e89da81f]Init get response status: 200 +peer1.org1.example.com | [09c 12-15 03:49:08.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e89da81f]Init succeeded. Sending COMPLETED +mysql | 2017-12-15T03:49:21.874121Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_POOL_STATS' +mysql | 2017-12-15T03:49:21.874126Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE_LRU' +mysql | 2017-12-15T03:49:21.874131Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE' +mysql | 2017-12-15T03:49:21.874145Z 0 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX_RESET' +mysql | 2017-12-15T03:49:21.874150Z 0 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX' +mysql | 2017-12-15T03:49:21.874155Z 0 [Note] Shutting down plugin 'INNODB_CMPMEM_RESET' +mysql | 2017-12-15T03:49:21.874163Z 0 [Note] Shutting down plugin 'INNODB_CMPMEM' +mysql | 2017-12-15T03:49:21.874171Z 0 [Note] Shutting down plugin 'INNODB_CMP_RESET' +mysql | 2017-12-15T03:49:21.874177Z 0 [Note] Shutting down plugin 'INNODB_CMP' +mysql | 2017-12-15T03:49:21.874182Z 0 [Note] Shutting down plugin 'INNODB_TRX' +mysql | 2017-12-15T03:49:21.874198Z 0 [Note] Shutting down plugin 'InnoDB' +mysql | 2017-12-15T03:49:21.874224Z 0 [Note] InnoDB: Starting shutdown... +mysql | 2017-12-15T03:49:21.974630Z 0 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysql/ib_buffer_pool +mysql | 2017-12-15T03:49:21.974926Z 0 [Note] InnoDB: Buffer pool(s) dump completed at 171215 3:49:21 +mysql | 2017-12-15T03:49:23.218156Z 0 [Note] InnoDB: Shutdown completed; log sequence number 26210761 +mysql | 2017-12-15T03:49:23.229219Z 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1" +mysql | 2017-12-15T03:49:23.230429Z 0 [Note] Shutting down plugin 'MRG_MYISAM' +mysql | 2017-12-15T03:49:23.230490Z 0 [Note] Shutting down plugin 'MyISAM' +mysql | 2017-12-15T03:49:23.230522Z 0 [Note] Shutting down plugin 'CSV' +mysql | 2017-12-15T03:49:23.230544Z 0 [Note] Shutting down plugin 'MEMORY' +mysql | 2017-12-15T03:49:23.230631Z 0 [Note] Shutting down plugin 'PERFORMANCE_SCHEMA' peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | [0bd 12-12 14:19:34.57 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 | [187 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2800e44b]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | [079 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers +peer0.org2.example.com | [0b1 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw 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 | [0be 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | [188 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [2800e44b]Entered state ready -orderer.example.com | [07a 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium/Org2MSP -peer1.org1.example.com | [1ad 12-12 14:19:33.63 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 | [130 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock -peer0.org2.example.com | [0bf 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | [07b 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP -peer1.org1.example.com | [1ae 12-12 14:19:33.63 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.org2.example.com | [131 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock -peer1.org1.example.com | [1af 12-12 14:19:33.64 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 | [189 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:2800e44b-479a-4037-a809-2b93dbf305b6, channelID: -peer0.org2.example.com | [0c0 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | [07c 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins -peer1.org2.example.com | [132 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.1.0 -peer1.org1.example.com | [1b0 12-12 14:19:33.64 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 | [0c1 12-12 14:19:34.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 lscc:1.1.0 launch seq completed -peer1.org2.example.com | [133 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) -orderer.example.com | [07d 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers -peer0.org2.example.com | [0c2 12-12 14:19:34.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 -peer1.org2.example.com | [134 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 -peer0.org2.example.com | [0c3 12-12 14:19:34.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.org1.example.com | [1b1 12-12 14:19:33.64 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 | [18a 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2800e44b]sending state message READY -orderer.example.com | [07e 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers -peer0.org2.example.com | [0c4 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [489bdbf5]Move state message READY -peer1.org2.example.com | [135 12-12 14:19:33.60 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 | [18b 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2800e44b]Received message READY from shim -peer0.org2.example.com | [0c5 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [489bdbf5]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [1b2 12-12 14:19:33.64 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 | [136 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 -orderer.example.com | [07f 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy -peer0.org1.example.com | [18c 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2800e44b]Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [0c6 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [489bdbf5]Entered state ready -peer1.org2.example.com | [137 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org1.example.com | [1b3 12-12 14:19:33.64 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.org2.example.com | [0c7 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:489bdbf5-c844-43f3-9ba9-895080113179, channelID: -peer1.org2.example.com | [138 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 -orderer.example.com | [080 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/Admins -peer0.org1.example.com | [18d 12-12 14:19:35.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 -peer1.org1.example.com | [1b4 12-12 14:19:33.64 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 | [0c8 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [489bdbf5]sending state message READY -peer1.org2.example.com | [139 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | [081 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org1.example.com | [18e 12-12 14:19:35.92 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 | [1b5 12-12 14:19:33.64 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 | [13a 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | [082 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org2.example.com | [0c9 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [489bdbf5]Received message READY from shim -peer1.org1.example.com | [1b6 12-12 14:19:33.64 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' -peer0.org1.example.com | [18f 12-12 14:19:35.92 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 | [13b 12-12 14:19:33.60 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 | [0ca 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [489bdbf5]Handling ChaincodeMessage of type: READY(state:established) -peer1.org1.example.com | [1b7 12-12 14:19:33.64 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 | [190 12-12 14:19:35.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.1.0 -orderer.example.com | [083 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org2.example.com | [13c 12-12 14:19:33.60 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 | [0cb 12-12 14:19:34.57 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 | [1b8 12-12 14:19:33.64 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 | [13d 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.1.0 -peer0.org2.example.com | [0cc 12-12 14:19:34.57 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 | [084 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org1.example.com | [1b9 12-12 14:19:33.64 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.org2.example.com | [13e 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.1.0" , sending back REGISTERED -peer0.org2.example.com | [0cd 12-12 14:19:34.57 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 | [191 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [2800e44b]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [1ba 12-12 14:19:33.64 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 | [13f 12-12 14:19:33.60 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 | [0ce 12-12 14:19:34.57 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.1.0 -peer0.org1.example.com | [192 12-12 14:19:35.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 | [085 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [140 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [0cf 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [489bdbf5]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [1bb 12-12 14:19:33.64 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 | [0d0 12-12 14:19:34.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... -orderer.example.com | [086 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org2.example.com | [141 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [193 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [2800e44b]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [0d1 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [489bdbf5]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [142 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | [1bc 12-12 14:19:33.64 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 | [087 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [194 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2800e44b]Move state message INIT -peer1.org2.example.com | [143 12-12 14:19:33.60 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.1.0 launch seq completed -peer0.org2.example.com | [0d2 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [489bdbf5]Move state message INIT -peer1.org1.example.com | [1bd 12-12 14:19:36.59 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 -peer1.org2.example.com | [144 12-12 14:19:33.60 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 | [195 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2800e44b]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [0d3 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [489bdbf5]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [088 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer1.org1.example.com | [1be 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:52016 -peer1.org2.example.com | [145 12-12 14:19:33.60 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 | [089 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org1.example.com | [196 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [0d4 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [146 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d949093f]Move state message READY -peer1.org1.example.com | [1bf 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421abaa80 -peer1.org2.example.com | [147 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d949093f]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [0d5 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [489bdbf5]sending state message INIT -orderer.example.com | [08a 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -peer1.org2.example.com | [148 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [d949093f]Entered state ready -orderer.example.com | [08b 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -peer1.org1.example.com | [1c0 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org2.example.com | [149 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:d949093f-50a1-4869-8e55-f0c5fc8d6959, channelID: -orderer.example.com | [08c 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums -peer0.org1.example.com | [197 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2800e44b]sending state message INIT -peer0.org2.example.com | [0d6 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [489bdbf5]Received message INIT from shim -orderer.example.com | [08d 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -peer1.org1.example.com | [1c1 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [198 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2800e44b]Received message INIT from shim -peer1.org2.example.com | [14a 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d949093f]sending state message READY -peer0.org2.example.com | [0d7 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [489bdbf5]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [199 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2800e44b]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | [08e 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums -peer1.org2.example.com | [14b 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d949093f]Received message READY from shim -peer1.org1.example.com | [1c2 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -peer0.org2.example.com | [0d8 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [08f 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -peer0.org1.example.com | [19a 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [0d9 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [489bdbf5]Received INIT, initializing chaincode -peer1.org2.example.com | [14c 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d949093f]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | [090 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -peer0.org1.example.com | [19b 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [2800e44b]Received INIT, initializing chaincode -peer1.org1.example.com | [1c3 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [091 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -peer1.org2.example.com | [14d 12-12 14:19:33.60 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 | [19c 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer0.org2.example.com | [0da 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [1c4 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [19d 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2800e44b]Init get response status: 200 -peer1.org2.example.com | [14e 12-12 14:19:33.60 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 | [1c5 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421ac2370, header 0xc421abab10 -peer0.org2.example.com | [0db 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [489bdbf5]Init get response status: 200 -peer0.org1.example.com | [19e 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2800e44b]Init succeeded. Sending COMPLETED -orderer.example.com | [092 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org2.example.com | [14f 12-12 14:19:33.60 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 | [0dc 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [489bdbf5]Init succeeded. Sending COMPLETED -orderer.example.com | [093 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.readBlock -> DEBU Read block 0 -peer1.org1.example.com | [1c6 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -peer1.org2.example.com | [150 12-12 14:19:33.60 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.1.0 -peer0.org2.example.com | [0dd 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [489bdbf5]Move state message COMPLETED -peer0.org1.example.com | [19f 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2800e44b]Move state message COMPLETED -orderer.example.com | [094 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.newBlockWriter -> DEBU [channel: testchainid] Creating block writer for tip of chain (blockNumber=0, lastConfigBlockNum=0, lastConfigSeq=0) -peer1.org2.example.com | [151 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d949093f]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [0de 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [489bdbf5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [1c7 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: e4ab66bff4ad17922976760321c54e2fb2bb4fe9b75ff51b7ed80b5a06ec97d7 -orderer.example.com | [095 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport -> DEBU [channel: testchainid] Done creating channel support resources -peer0.org1.example.com | [1a0 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2800e44b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [0df 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [489bdbf5]send state message COMPLETED -peer1.org2.example.com | [152 12-12 14:19:33.60 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 | [1c8 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: e4ab66bff4ad17922976760321c54e2fb2bb4fe9b75ff51b7ed80b5a06ec97d7 channel id: -orderer.example.com | [096 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.NewSystemChannel -> DEBU Creating system channel msg processor for channel testchainid -peer0.org1.example.com | [1a1 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2800e44b]send state message COMPLETED -peer1.org1.example.com | [1c9 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: e4ab66bff4ad17922976760321c54e2fb2bb4fe9b75ff51b7ed80b5a06ec97d7 channel id: version: 1.1.0 -peer0.org2.example.com | [0e0 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [489bdbf5]Received message COMPLETED from shim -peer1.org2.example.com | [153 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d949093f]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [1ca 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=e4ab66bff4ad17922976760321c54e2fb2bb4fe9b75ff51b7ed80b5a06ec97d7,syscc=true,proposal=0xc421ac2370,canname=cscc:1.1.0 -peer0.org1.example.com | [1a2 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2800e44b]Received message COMPLETED from shim -peer1.org1.example.com | [1cb 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -peer1.org2.example.com | [154 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d949093f]Move state message INIT -orderer.example.com | [097 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.readBlock -> DEBU Read block 0 -peer0.org2.example.com | [0e1 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [489bdbf5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [1cc 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [1a3 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2800e44b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [0e2 12-12 14:19:34.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [489bdbf5-c844-43f3-9ba9-895080113179]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [155 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d949093f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [1a4 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2800e44b-479a-4037-a809-2b93dbf305b6]HandleMessage- COMPLETED. Notify -orderer.example.com | [098 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> INFO Starting system channel 'testchainid' with genesis block hash 70ae3d6f5a0faf234648a4503f4d291158f7bb9762d20e83e2e25c55f52e824f and orderer type solo -peer0.org2.example.com | [0e3 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:489bdbf5-c844-43f3-9ba9-895080113179, channelID: -peer1.org1.example.com | [1cd 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -peer1.org2.example.com | [156 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [099 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Starting orderer: -peer0.org1.example.com | [1a5 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:2800e44b-479a-4037-a809-2b93dbf305b6, channelID: -peer1.org2.example.com | [157 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d949093f]sending state message INIT -peer1.org1.example.com | [1ce 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e4ab66bf]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [0e4 12-12 14:19:34.58 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 | [1a6 12-12 14:19:35.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 | Version: 1.1.0 -peer0.org2.example.com | [0e5 12-12 14:19:34.58 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 | [158 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d949093f]Received message INIT from shim -peer0.org1.example.com | [1a7 12-12 14:19:35.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 | [1cf 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [159 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d949093f]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | Go version: go1.9.2 -peer0.org2.example.com | [0e6 12-12 14:19:34.58 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.1.0,txid=5d28c1d0-636d-4cd6-af63-551458b3c5b7,syscc=true,proposal=0x0,canname=escc:1.1.0 -peer0.org1.example.com | [1a8 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled -peer1.org2.example.com | [15a 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [1d0 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [0e7 12-12 14:19:34.58 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.1.0 is being launched -orderer.example.com | OS/Arch: linux/amd64 -peer0.org1.example.com | [1a9 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes -peer1.org2.example.com | [15b 12-12 14:19:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d949093f]Received INIT, initializing chaincode -peer1.org1.example.com | [1d1 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e4ab66bf]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [1aa 12-12 14:19:35.92 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] -orderer.example.com | Experimental features: false -peer0.org2.example.com | [0e8 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org1.example.com | [1d2 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e4ab66bf]Move state message TRANSACTION -peer0.org1.example.com | [1ab 12-12 14:19:35.92 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] -peer1.org2.example.com | [15c 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d949093f]Init get response status: 200 -peer0.org2.example.com | [0e9 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org1.example.com | [1d3 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e4ab66bf]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [1ac 12-12 14:19:35.92 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 | [0ea 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=escc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -orderer.example.com | [09a 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Beginning to serve requests -peer1.org2.example.com | [15d 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d949093f]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [1d4 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [09b 12-12 14:19:39.24 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -peer0.org1.example.com | [1ad 12-12 14:19:35.92 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.org2.example.com | [15e 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d949093f]Move state message COMPLETED -peer0.org2.example.com | [0eb 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] -orderer.example.com | [09c 12-12 14:19:39.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36746 -peer1.org1.example.com | [1d5 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e4ab66bf]sending state message TRANSACTION -peer0.org1.example.com | [1ae 12-12 14:19:35.92 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 | [09d 12-12 14:19:39.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36746 -peer1.org2.example.com | [15f 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d949093f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [0ec 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: escc:1.1.0(networkid:dev,peerid:peer0.org2.example.com) -orderer.example.com | [09e 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -peer1.org1.example.com | [1d6 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e4ab66bf]Received message TRANSACTION from shim -peer1.org2.example.com | [160 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d949093f]send state message COMPLETED -peer0.org1.example.com | [1af 12-12 14:19:35.92 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 | [0ed 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -orderer.example.com | [09f 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:36748 -peer1.org1.example.com | [1d7 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e4ab66bf]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [161 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d949093f]Received message COMPLETED from shim -peer0.org2.example.com | [0ee 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer0.org1.example.com | [1b0 12-12 14:19:35.92 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 | [0a0 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.18.0.7:36748 -peer1.org2.example.com | [162 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d949093f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +mysql | 2017-12-15T03:49:23.230673Z 0 [Note] Shutting down plugin 'TempTable' +peer0.org2.example.com | [0b2 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +mysql | 2017-12-15T03:49:23.230737Z 0 [Note] Shutting down plugin 'sha2_cache_cleaner' +peer1.org2.example.com | [0ae 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock +peer0.org2.example.com | [0b3 12-15 03:49:10.88 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 | [09d 12-15 03:49:08.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e89da81f]Move state message COMPLETED +peer0.org1.example.com | [210 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +mysql | 2017-12-15T03:49:23.230770Z 0 [Note] Shutting down plugin 'caching_sha2_password' +peer0.org2.example.com | [0b4 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [0b5 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +mysql | 2017-12-15T03:49:23.230789Z 0 [Note] Shutting down plugin 'sha256_password' +mysql | 2017-12-15T03:49:23.230806Z 0 [Note] Shutting down plugin 'mysql_native_password' +mysql | 2017-12-15T03:49:23.230971Z 0 [Note] Shutting down plugin 'binlog' +peer1.org1.example.com | [09e 12-15 03:49:08.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e89da81f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [211 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +peer1.org2.example.com | [0af 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock +peer0.org2.example.com | [0b6 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.1.0 +mysql | 2017-12-15T03:49:23.235362Z 0 [Note] /usr/sbin/mysqld: Shutdown complete +peer1.org1.example.com | [09f 12-15 03:49:08.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e89da81f]send state message COMPLETED +peer0.org1.example.com | [212 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org2.example.com | [0b7 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [0b8 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | [0b0 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.1.0 +orderer.example.com | kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +mysql | +peer0.org2.example.com | [0b9 12-15 03:49:10.88 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 | [0a0 12-15 03:49:08.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e89da81f]Received message COMPLETED from shim +mysql | +peer1.org2.example.com | [0b1 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) +peer0.org2.example.com | [0ba 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +peer0.org1.example.com | [213 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [0bb 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.1.0 +peer1.org1.example.com | [0a1 12-15 03:49:08.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e89da81f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [0b2 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 +orderer.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +peer0.org2.example.com | [0bc 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.1.0" , sending back REGISTERED +mysql | MySQL init process done. Ready for start up. +peer0.org1.example.com | [214 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [0a2 12-15 03:49:08.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e89da81f-fc6f-48e6-85a2-cde418fb69d6]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [0b3 12-15 03:49:12.58 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 | [0bd 12-15 03:49:10.88 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 | OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +mysql | +peer0.org2.example.com | [0be 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org1.example.com | [0a3 12-15 03:49:08.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e89da81f-fc6f-48e6-85a2-cde418fb69d6, channelID: +peer0.org2.example.com | [0bf 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +mysql | 2017-12-15T03:49:23.629681Z 0 [Note] Basedir set to /usr/ +orderer.example.com | bqEi6/lY2kK0EtGRnA== +peer0.org1.example.com | [215 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [0b4 12-15 03:49:12.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 +peer1.org1.example.com | [0a4 12-15 03:49:08.29 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 | [0c0 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +orderer.example.com | -----END CERTIFICATE----- +mysql | 2017-12-15T03:49:23.629866Z 0 [Warning] The syntax '--symbolic-links/-s' is deprecated and will be removed in a future release +peer1.org2.example.com | [0b5 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org1.example.com | [216 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org1.example.com | [0a5 12-15 03:49:08.29 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 | [0c1 12-15 03:49:10.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.1.0 launch seq completed +peer1.org2.example.com | [0b6 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.1.0 +peer0.org1.example.com | [217 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +mysql | 2017-12-15T03:49:23.629925Z 0 [Note] --secure-file-priv is set to NULL. Operations related to importing and exporting data are disabled +peer1.org1.example.com | [0a6 12-15 03:49:08.30 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.1.0,txid=caad8bf8-d72b-4abd-8bf5-452828512a88,syscc=true,proposal=0x0,canname=lscc:1.1.0 +orderer.example.com | [061 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [0c2 12-15 03:49:10.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 | [0b7 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +mysql | 2017-12-15T03:49:23.629957Z 0 [Note] /usr/sbin/mysqld (mysqld 8.0.3-rc-log) starting as process 1 ... +peer0.org1.example.com | [218 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [0c3 12-15 03:49:10.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.org1.example.com | [0a7 12-15 03:49:08.30 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.1.0 is being launched +peer0.org1.example.com | [219 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [0b8 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [0c4 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5e507424]Move state message READY +mysql | 2017-12-15T03:49:23.632145Z 0 [Warning] No argument was provided to --log-bin, and --log-bin-index was not used; so replication may break when this MySQL server acts as a master and has his hostname changed!! Please use '--log-bin=mysql-bin' to avoid this problem. +peer1.org1.example.com | [0a8 12-15 03:49:08.30 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer0.org1.example.com | [21a 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org2.example.com | [0c5 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5e507424]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [0b9 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +mysql | 2017-12-15T03:49:23.635080Z 0 [Note] InnoDB: Using Linux native AIO +peer1.org1.example.com | [0a9 12-15 03:49:08.30 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [0c6 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [5e507424]Entered state ready +mysql | 2017-12-15T03:49:23.635228Z 0 [Note] Plugin 'FEDERATED' is disabled. +peer0.org1.example.com | [21b 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org1.example.com | [0aa 12-15 03:49:08.30 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=lscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +peer1.org2.example.com | [0ba 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +mysql | 2017-12-15T03:49:23.637015Z 1 [Note] InnoDB: PUNCH HOLE support available +peer0.org2.example.com | [0c7 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:5e507424-f037-4488-a597-3ab7693f8e11, channelID: +peer0.org1.example.com | [21c 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [0bb 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.1.0 +peer1.org1.example.com | [0ab 12-15 03:49:08.30 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +peer0.org2.example.com | [0c8 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5e507424]sending state message READY +peer0.org1.example.com | [21d 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +mysql | 2017-12-15T03:49:23.637121Z 1 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [0bc 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.1.0" , sending back REGISTERED +peer1.org1.example.com | [0ac 12-15 03:49:08.30 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: lscc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) +peer0.org2.example.com | [0c9 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5e507424]Received message READY from shim +mysql | 2017-12-15T03:49:23.637140Z 1 [Note] InnoDB: Uses event mutexes +peer1.org2.example.com | [0bd 12-15 03:49:12.59 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 | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +peer0.org1.example.com | [21e 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org1.example.com | [0ad 12-15 03:49:08.30 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +mysql | 2017-12-15T03:49:23.637159Z 1 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier +peer0.org2.example.com | [0ca 12-15 03:49:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5e507424]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [0be 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +orderer.example.com | kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +mysql | 2017-12-15T03:49:23.637177Z 1 [Note] InnoDB: Compressed tables use zlib 1.2.11 +peer0.org1.example.com | [21f 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org2.example.com | [0cb 12-15 03:49:10.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 | [0ae 12-15 03:49:08.30 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer1.org2.example.com | [0bf 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +mysql | 2017-12-15T03:49:23.637529Z 1 [Note] InnoDB: Number of pools: 1 +peer0.org2.example.com | [0cc 12-15 03:49:10.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 | [220 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [0c0 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +orderer.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.1.0 +peer0.org2.example.com | [0cd 12-15 03:49:10.90 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 | [221 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +mysql | 2017-12-15T03:49:23.637728Z 1 [Note] InnoDB: Using CPU crc32 instructions +orderer.example.com | OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +peer0.org1.example.com | [222 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org2.example.com | [0c1 12-15 03:49:12.59 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.1.0 launch seq completed +peer0.org2.example.com | [0ce 12-15 03:49:10.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: lscc:1.1.0 +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +mysql | 2017-12-15T03:49:23.639050Z 1 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M +peer0.org1.example.com | [223 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | bqEi6/lY2kK0EtGRnA== +peer0.org2.example.com | [0cf 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5e507424]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [0c2 12-15 03:49:12.59 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 +mysql | libnuma: Warning: /sys not mounted or invalid. Assuming one node: No such file or directory +peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer0.org2.example.com | [0d0 12-15 03:49:10.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... +peer0.org1.example.com | [224 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [225 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | -----END CERTIFICATE----- +mysql | mbind: Operation not permitted +peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer0.org1.example.com | [226 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [0c3 12-15 03:49:12.59 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 | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +orderer.example.com | [062 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +mysql | mbind: Operation not permitted +peer0.org2.example.com | [0d1 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5e507424]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [227 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org2.example.com | [0c4 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6c723d60]Move state message READY +orderer.example.com | [063 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +peer0.org2.example.com | [0d2 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5e507424]Move state message INIT +peer0.org1.example.com | [228 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +mysql | 2017-12-15T03:49:23.647067Z 1 [Note] InnoDB: Completed initialization of buffer pool +orderer.example.com | [064 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +peer1.org2.example.com | [0c5 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6c723d60]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org2.example.com | [0d3 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5e507424]Fabric side Handling ChaincodeMessage of type: INIT in state ready +mysql | 2017-12-15T03:49:23.648077Z 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority(). +orderer.example.com | [065 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +peer1.org2.example.com | [0c6 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [6c723d60]Entered state ready +peer0.org1.example.com | [229 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [22a 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +mysql | 2017-12-15T03:49:23.659607Z 1 [Note] InnoDB: Using 'tablespaces.open.1' max LSN: 26200520 +peer0.org2.example.com | [0d4 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [22b 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [0c7 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:6c723d60-0655-4184-a726-b0bd3db50635, channelID: +orderer.example.com | [066 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +mysql | 2017-12-15T03:49:23.662415Z 1 [Note] InnoDB: Applying a batch of 0 redo log records ... +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 | [0d5 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5e507424]sending state message INIT +peer0.org1.example.com | [22c 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +mysql | 2017-12-15T03:49:23.662514Z 1 [Note] InnoDB: Apply batch completed! +orderer.example.com | [067 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +peer1.org1.example.com | [0af 12-15 03:49:08.30 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock +peer0.org2.example.com | [0d6 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5e507424]Received message INIT from shim +peer1.org2.example.com | [0c8 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6c723d60]sending state message READY +peer0.org1.example.com | [22d 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [068 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +peer1.org1.example.com | [0b0 12-15 03:49:08.30 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock +mysql | 2017-12-15T03:49:23.663132Z 1 [Note] InnoDB: Opened 2 existing undo tablespaces. +peer0.org2.example.com | [0d7 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5e507424]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [0c9 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6c723d60]Received message READY from shim +peer0.org1.example.com | [22e 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +mysql | 2017-12-15T03:49:23.686322Z 1 [Note] InnoDB: Creating shared tablespace for temporary tables +mysql | 2017-12-15T03:49:23.686580Z 1 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ... +mysql | 2017-12-15T03:49:23.770563Z 1 [Note] InnoDB: File './ibtmp1' size is now 12 MB. +mysql | 2017-12-15T03:49:23.773788Z 1 [Note] InnoDB: Created 128 and tracked 128 new rollback segment(s) in the temporary tablespace. 128 are now active. +peer1.org1.example.com | [0b1 12-15 03:49:08.30 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.1.0 +orderer.example.com | [069 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +mysql | 2017-12-15T03:49:23.774079Z 1 [Note] InnoDB: 8.0.3 started; log sequence number 26210761 +peer1.org2.example.com | [0ca 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6c723d60]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | [0b3 12-15 03:49:08.30 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 +peer0.org2.example.com | [0d8 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [22f 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [06a 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +mysql | 2017-12-15T03:49:23.844664Z 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool +peer1.org2.example.com | [0cb 12-15 03:49:12.59 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 | [0b4 12-15 03:49:08.31 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 | [0d9 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [5e507424]Received INIT, initializing chaincode +orderer.example.com | [06b 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +peer0.org1.example.com | [230 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +mysql | 2017-12-15T03:49:23.855632Z 0 [Note] InnoDB: Buffer pool(s) load completed at 171215 3:49:23 +peer1.org2.example.com | [0cc 12-15 03:49:12.59 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 | [0da 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [06c 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums/SampleConsortium/Org2MSP +orderer.example.com | [06d 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Consortiums/SampleConsortium/Org2MSP +orderer.example.com | [06e 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Consortiums/SampleConsortium/Org2MSP +orderer.example.com | [06f 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums/SampleConsortium/Org1MSP +mysql | 2017-12-15T03:49:23.903240Z 1 [Note] Found data dictionary with version 1 +peer1.org2.example.com | [0cd 12-15 03:49:12.59 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 | [0ce 12-15 03:49:12.59 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.1.0 +peer0.org2.example.com | [0db 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5e507424]Init get response status: 200 +peer0.org1.example.com | [231 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +mysql | 2017-12-15T03:49:23.927533Z 0 [Note] InnoDB: DDL log recovery : begin +orderer.example.com | [070 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Consortiums/SampleConsortium/Org1MSP +peer1.org1.example.com | [0b5 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 +peer1.org2.example.com | [0cf 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6c723d60]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [0dc 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5e507424]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [0dd 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5e507424]Move state message COMPLETED +mysql | 2017-12-15T03:49:23.928329Z 0 [Note] InnoDB: DDL log recovery : end +orderer.example.com | [071 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Consortiums/SampleConsortium/Org1MSP +orderer.example.com | [072 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums +orderer.example.com | [073 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +peer1.org2.example.com | [0d0 12-15 03:49:12.59 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 | [0de 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5e507424]Handling ChaincodeMessage of type: COMPLETED(state:ready) +mysql | 2017-12-15T03:49:23.928659Z 0 [Note] InnoDB: Waiting for purge to start +peer1.org1.example.com | [0b6 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org1.example.com | [232 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | [074 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Consortiums/Readers +peer1.org2.example.com | [0d1 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6c723d60]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [0df 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5e507424]send state message COMPLETED +mysql | 2017-12-15T03:49:23.992747Z 0 [Warning] You have not provided a mandatory server-id. Servers in a replication topology must have unique server-ids. Please refer to the proper server start-up parameters documentation. +peer0.org1.example.com | [233 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | [075 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +peer1.org1.example.com | [0b7 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.1.0 +peer0.org2.example.com | [0e0 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5e507424]Received message COMPLETED from shim +peer1.org2.example.com | [0d2 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6c723d60]Move state message INIT +mysql | 2017-12-15T03:49:24.057657Z 0 [Note] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them. +peer0.org1.example.com | [234 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +orderer.example.com | [076 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Consortiums/Writers +peer1.org1.example.com | [0b8 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [0e1 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5e507424]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +mysql | 2017-12-15T03:49:24.058464Z 0 [Warning] CA certificate ca.pem is self signed. +peer1.org2.example.com | [0d3 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6c723d60]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [235 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [077 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +peer1.org1.example.com | [0b9 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | [0e2 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5e507424-f037-4488-a597-3ab7693f8e11]HandleMessage- COMPLETED. Notify +mysql | 2017-12-15T03:49:24.064255Z 0 [Note] Server hostname (bind-address): '*'; port: 3306 +peer1.org2.example.com | [0d4 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [236 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [078 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org1.example.com | [0ba 12-15 03:49:08.31 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 | [0e3 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:5e507424-f037-4488-a597-3ab7693f8e11, channelID: +mysql | 2017-12-15T03:49:24.064434Z 0 [Note] IPv6 is available. +peer1.org2.example.com | [0d5 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6c723d60]sending state message INIT +peer0.org1.example.com | [237 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [079 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org1.example.com | [0bb 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +mysql | 2017-12-15T03:49:24.066078Z 0 [Note] - '::' resolves to '::'; +peer1.org2.example.com | [0d6 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6c723d60]Received message INIT from shim +peer0.org2.example.com | [0e4 12-15 03:49:10.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 | [07a 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [238 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org1.example.com | [0bc 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.1.0 +mysql | 2017-12-15T03:49:24.066164Z 0 [Note] Server socket created on IP: '::'. +peer1.org2.example.com | [0d7 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6c723d60]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | [07b 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [0e5 12-15 03:49:10.90 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 | [239 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +peer1.org1.example.com | [0bd 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.1.0" , sending back REGISTERED +mysql | 2017-12-15T03:49:24.094880Z 0 [Warning] 'user' entry 'mysql.sys@localhost' ignored in --skip-name-resolve mode. +peer1.org2.example.com | [0d8 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | [07c 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [0e6 12-15 03:49:10.90 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.1.0,txid=da1bba5f-0d60-45aa-984d-96be272beb58,syscc=true,proposal=0x0,canname=escc:1.1.0 +peer0.org2.example.com | [0e7 12-15 03:49:10.90 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.1.0 is being launched +peer1.org1.example.com | [0be 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +mysql | 2017-12-15T03:49:24.098971Z 0 [Warning] 'user' entry 'root@localhost' ignored in --skip-name-resolve mode. +peer1.org2.example.com | [0d9 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [6c723d60]Received INIT, initializing chaincode +orderer.example.com | [07d 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [23a 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +peer0.org2.example.com | [0e8 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +mysql | 2017-12-15T03:49:24.099553Z 0 [Warning] 'db' entry 'performance_schema mysql.session@localhost' ignored in --skip-name-resolve mode. +peer1.org1.example.com | [0bf 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [0da 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [07e 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [23b 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [0] Transaction index [0] TxId [] marked as valid by state validator +mysql | 2017-12-15T03:49:24.099771Z 0 [Warning] 'db' entry 'sys mysql.sys@localhost' ignored in --skip-name-resolve mode. +peer1.org1.example.com | [0c0 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org2.example.com | [0db 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6c723d60]Init get response status: 200 +peer0.org2.example.com | [0e9 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +orderer.example.com | [07f 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [23c 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +mysql | 2017-12-15T03:49:24.099825Z 0 [Warning] 'proxies_priv' entry '@ root@localhost' ignored in --skip-name-resolve mode. +peer1.org1.example.com | [0c1 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org2.example.com | [0dc 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6c723d60]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [0ea 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=escc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +orderer.example.com | [080 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +mysql | 2017-12-15T03:49:24.111324Z 0 [Warning] 'tables_priv' entry 'user mysql.session@localhost' ignored in --skip-name-resolve mode. +peer0.org1.example.com | [23d 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer1.org1.example.com | [0c2 12-15 03:49:08.31 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.1.0 launch seq completed +peer1.org2.example.com | [0dd 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6c723d60]Move state message COMPLETED +mysql | 2017-12-15T03:49:24.119264Z 0 [Warning] 'tables_priv' entry 'sys_config mysql.sys@localhost' ignored in --skip-name-resolve mode. +peer0.org1.example.com | [23e 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +orderer.example.com | [081 12-15 03:49:08.17 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [0eb 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] +peer1.org1.example.com | [0c3 12-15 03:49:08.31 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 | [0de 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6c723d60]Handling ChaincodeMessage of type: COMPLETED(state:ready) +mysql | 2017-12-15T03:49:24.135359Z 0 [Note] /usr/sbin/mysqld: ready for connections. Version: '8.0.3-rc-log' socket: '/var/run/mysqld/mysqld.sock' port: 3306 MySQL Community Server (GPL) +peer0.org1.example.com | [23f 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage +orderer.example.com | [082 12-15 03:49:08.17 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org1.example.com | [0c4 12-15 03:49:08.31 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 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: escc:1.1.0(networkid:dev,peerid:peer0.org2.example.com) +peer1.org2.example.com | [0df 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6c723d60]send state message COMPLETED +mysql | 2017-12-15T03:49:24.135628Z 4 [Note] Event Scheduler: scheduler thread started with id 4 +peer0.org1.example.com | [240 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [0] +orderer.example.com | [083 12-15 03:49:08.17 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org2.example.com | [0ed 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer1.org1.example.com | [0c5 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [caad8bf8]Move state message READY +peer0.org2.example.com | [0ee 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +orderer.example.com | [084 12-15 03:49:08.17 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [0e0 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6c723d60]Received message COMPLETED from shim +peer1.org1.example.com | [0c6 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [caad8bf8]Fabric side Handling ChaincodeMessage of type: READY in state established +orderer.example.com | [085 12-15 03:49:08.17 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [241 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xa1, 0x60, 0xe0, 0x48, 0x49, 0xa2, 0x7b, 0xd, 0x4, 0xe8, 0xa0, 0x11, 0xe6, 0xf7, 0x68, 0xce, 0x66, 0xf4, 0xbe, 0xa6, 0xb, 0xc5, 0x74, 0xd1, 0xf8, 0xc1, 0xc6, 0x60, 0xbf, 0x2c, 0xe0, 0x38} txOffsets= +peer1.org2.example.com | [0e1 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6c723d60]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=escc:1.1.0 -peer1.org1.example.com | [1d8 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e4ab66bf]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [0a1 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update tx with system channel message processor for channel ID businesschannel -peer1.org2.example.com | [163 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d949093f-50a1-4869-8e55-f0c5fc8d6959]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [1b1 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' +peer1.org1.example.com | [0c7 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [caad8bf8]Entered state ready +peer0.org1.example.com | txId= locPointer=offset=38, bytesLength=12083 +orderer.example.com | [086 12-15 03:49:08.18 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [0e2 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6c723d60-0655-4184-a726-b0bd3db50635]HandleMessage- COMPLETED. Notify peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -orderer.example.com | [0a2 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing channel create tx for channel businesschannel on system channel testchainid -orderer.example.com | [0a3 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org1.example.com | [1d9 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -orderer.example.com | [0a4 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [164 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d949093f-50a1-4869-8e55-f0c5fc8d6959, channelID: +peer0.org1.example.com | ] +peer1.org2.example.com | [0e3 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:6c723d60-0655-4184-a726-b0bd3db50635, channelID: +orderer.example.com | [087 12-15 03:49:08.18 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org1.example.com | [1da 12-12 14:19:40.43 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -orderer.example.com | [0a5 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [1b2 12-12 14:19:35.92 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 | [165 12-12 14:19:33.61 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 | [0a6 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [1db 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -peer0.org1.example.com | [1b3 12-12 14:19:35.92 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 | [0c8 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:caad8bf8-d72b-4abd-8bf5-452828512a88, channelID: +peer1.org2.example.com | [0e4 12-15 03:49:12.59 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 | [242 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12083] for tx ID: [] to index +orderer.example.com | [088 12-15 03:49:08.18 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org2.example.com | [166 12-12 14:19:33.61 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 | [0a7 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [0e5 12-15 03:49:12.59 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 | [243 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12083] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org1.example.com | [0c9 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [caad8bf8]sending state message READY peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org1.example.com | [1b4 12-12 14:19:35.92 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 | [0a8 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [1dc 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] -peer1.org2.example.com | [167 12-12 14:19:33.61 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.1.0,txid=ee001ded-d103-4f5d-ab5e-4c2c61a7191d,syscc=true,proposal=0x0,canname=qscc:1.1.0 +orderer.example.com | [089 12-15 03:49:08.18 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium +peer1.org2.example.com | [0e6 12-15 03:49:12.59 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.1.0,txid=70b0cfb6-129f-4342-8b5f-d753316f4845,syscc=true,proposal=0x0,canname=escc:1.1.0 +peer0.org1.example.com | [244 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12127], isChainEmpty=[false], lastBlockNumber=[0] peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | [0a9 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org1.example.com | [1dd 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] does not exist -peer0.org1.example.com | [1b5 12-12 14:19:35.92 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 | [168 12-12 14:19:33.61 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.1.0 is being launched +peer1.org1.example.com | [0ca 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [caad8bf8]Received message READY from shim +orderer.example.com | [08a 12-15 03:49:08.18 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium/Org2MSP +peer1.org2.example.com | [0e7 12-15 03:49:12.59 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.1.0 is being launched +peer0.org1.example.com | [245 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 0 +peer1.org1.example.com | [0cb 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [caad8bf8]Handling ChaincodeMessage of type: READY(state:established) +orderer.example.com | [08b 12-15 03:49:08.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP +peer1.org2.example.com | [0e8 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | [0aa 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [1de 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] exists -peer0.org1.example.com | [1b6 12-12 14:19:35.92 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 | [0ab 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org1.example.com | [0cc 12-15 03:49:08.31 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 | [246 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 0 +peer1.org2.example.com | [0e9 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +peer1.org1.example.com | [0cd 12-15 03:49:08.31 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 | 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 | [1df 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -peer1.org2.example.com | [169 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -orderer.example.com | [0ac 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [0ef 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock -peer0.org1.example.com | [1b7 12-12 14:19:35.92 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 | [1e0 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -peer0.org1.example.com | [1b8 12-12 14:19:35.92 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 | [0f0 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock -orderer.example.com | [0ad 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [0f1 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.1.0 -peer1.org2.example.com | [16a 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org1.example.com | [1b9 12-12 14:19:35.92 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.org1.example.com | [1e1 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -orderer.example.com | [0ae 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [0f2 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) -peer1.org1.example.com | [1e2 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -peer0.org1.example.com | [1ba 12-12 14:19:35.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' -peer1.org2.example.com | [16b 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=qscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -peer0.org2.example.com | [0f3 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 -orderer.example.com | [0af 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [1e3 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -peer1.org2.example.com | [16c 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] -peer0.org1.example.com | [1bb 12-12 14:19:35.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' -peer0.org2.example.com | [0f4 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -orderer.example.com | [0b0 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [16d 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: qscc:1.1.0(networkid:dev,peerid:peer1.org2.example.com) -peer0.org1.example.com | [1bc 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36666 -peer0.org2.example.com | [0f5 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 -peer1.org1.example.com | [1e4 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -peer0.org2.example.com | [0f6 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [16e 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -orderer.example.com | [0b1 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [1e5 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc421b84900)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -orderer.example.com | [0b2 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org2.example.com | [16f 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org1.example.com | [1e6 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -peer0.org1.example.com | [1bd 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4218e3860 -peer0.org2.example.com | [0f7 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 -orderer.example.com | [0b3 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.1.0 -peer0.org1.example.com | [1be 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org2.example.com | [0f8 12-12 14:19:34.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 | [0b4 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org2.example.com | [0f9 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [1e7 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: -peer0.org1.example.com | [1bf 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [0fa 12-12 14:19:34.58 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 | [0b5 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [08c 12-15 03:49:08.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins +peer1.org2.example.com | [0ea 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=escc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +peer0.org1.example.com | [247 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [0] with 1 transaction(s) +peer1.org2.example.com | [0eb 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +peer1.org1.example.com | [0ce 12-15 03:49:08.31 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 | [248 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database +peer0.org2.example.com | [0ef 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock +peer1.org2.example.com | [0ec 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: escc:1.1.0(networkid:dev,peerid:peer1.org2.example.com) +orderer.example.com | [08d 12-15 03:49:08.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers +peer0.org1.example.com | [249 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer1.org1.example.com | [0cf 12-15 03:49:08.31 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.1.0 +peer1.org2.example.com | [0ed 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +orderer.example.com | [08e 12-15 03:49:08.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers +peer0.org2.example.com | [0f0 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock +peer0.org1.example.com | [24a 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [0ee 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +orderer.example.com | [08f 12-15 03:49:08.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium/Org1MSP +peer1.org1.example.com | [0d0 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [caad8bf8]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [0f1 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.1.0 +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=escc:1.1.0 +orderer.example.com | [090 12-15 03:49:08.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP +peer0.org1.example.com | [24b 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer0.org2.example.com | [0f2 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | [0fb 12-12 14:19:34.58 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 | [1e8 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() -peer0.org1.example.com | [1c0 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -orderer.example.com | [0b6 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [24c 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [0d1 12-15 03:49:08.31 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 | [091 12-15 03:49:08.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -orderer.example.com | MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -peer0.org2.example.com | [0fc 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.1.0 -peer1.org1.example.com | [1e9 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [24d 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to history database +peer0.org2.example.com | [0f3 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org1.example.com | [1ea 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [0] -peer0.org2.example.com | [0fd 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.1.0" , sending back REGISTERED -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org2.example.com | [0fe 12-12 14:19:34.58 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 | bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -peer1.org1.example.com | [1eb 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [1c1 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [0ff 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [1ec 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [0] -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org1.example.com | [0d2 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [caad8bf8]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [0f4 12-15 03:49:10.90 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 | [092 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org1.example.com | [1c2 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [100 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [1ed 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer1.org1.example.com | [0d3 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [caad8bf8]Move state message INIT +peer0.org1.example.com | [24e 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -peer0.org1.example.com | [1c3 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42033d630, header 0xc4218e38f0 -peer0.org2.example.com | [101 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | [1ee 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -peer0.org1.example.com | [1c4 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +orderer.example.com | [093 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers +peer0.org2.example.com | [0f5 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 +orderer.example.com | [094 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -peer0.org2.example.com | [102 12-12 14:19:34.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 escc:1.1.0 launch seq completed +peer0.org2.example.com | [0f6 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org1.example.com | [24f 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org1.example.com | [0d4 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [caad8bf8]Fabric side Handling ChaincodeMessage of type: INIT in state ready 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 | [1c5 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 2496ccf07183b996b1da359017200bd8c2b36638a18be3f0541d3b94f10108a5 -peer1.org1.example.com | [1ef 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer0.org2.example.com | [103 12-12 14:19:34.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 -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -peer0.org1.example.com | [1c6 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 2496ccf07183b996b1da359017200bd8c2b36638a18be3f0541d3b94f10108a5 channel id: -peer1.org1.example.com | [1f0 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer1.org2.example.com | [170 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock -peer0.org1.example.com | [1c7 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 2496ccf07183b996b1da359017200bd8c2b36638a18be3f0541d3b94f10108a5 channel id: version: 1.1.0 -peer0.org2.example.com | [104 12-12 14:19:34.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... -peer1.org1.example.com | [1f1 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -peer0.org2.example.com | [105 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5d28c1d0]Move state message READY -peer1.org2.example.com | [171 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock -peer1.org1.example.com | [1f2 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer0.org1.example.com | [1c8 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=2496ccf07183b996b1da359017200bd8c2b36638a18be3f0541d3b94f10108a5,syscc=true,proposal=0xc42033d630,canname=cscc:1.1.0 -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -orderer.example.com | 0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= -peer1.org1.example.com | [1f3 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer0.org1.example.com | [1c9 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [172 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.1.0 -peer0.org2.example.com | [106 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5d28c1d0]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [1ca 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [1cb 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -peer0.org2.example.com | [107 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [5d28c1d0]Entered state ready -peer1.org2.example.com | [173 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) -peer1.org2.example.com | [174 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 -orderer.example.com | [0b7 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [108 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:5d28c1d0-636d-4cd6-af63-551458b3c5b7, channelID: -peer1.org1.example.com | [1f4 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:1 channel_group: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer1.org1.example.com | [1f5 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org1.example.com | [1f6 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [1f7 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [1f8 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [176 12-12 14:19:33.61 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 | [1f9 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [1cc 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2496ccf0]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [109 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5d28c1d0]sending state message READY -peer1.org2.example.com | [175 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 -peer1.org1.example.com | [1fa 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [10a 12-12 14:19:34.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 | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [177 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org1.example.com | [1cd 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org2.example.com | [178 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 -peer1.org1.example.com | [1fb 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org2.example.com | [10b 12-12 14:19:34.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.org1.example.com | [1ce 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [1fc 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [179 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [10c 12-12 14:19:34.58 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 | [1cf 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2496ccf0]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [1fd 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -peer1.org2.example.com | [17a 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [10d 12-12 14:19:34.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: escc:1.1.0 -peer1.org1.example.com | [1fe 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org2.example.com | [17b 12-12 14:19:33.61 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 | [1d0 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2496ccf0]Move state message TRANSACTION -peer0.org2.example.com | [10e 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5d28c1d0]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [1ff 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [17c 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -peer0.org1.example.com | [1d1 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2496ccf0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [10f 12-12 14:19:34.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.org2.example.com | [17d 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.1.0 -peer1.org1.example.com | [200 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [1d2 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org2.example.com | [110 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5d28c1d0]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [201 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [1d3 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2496ccf0]sending state message TRANSACTION -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -peer1.org2.example.com | [17e 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.1.0" , sending back REGISTERED -peer0.org2.example.com | [111 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5d28c1d0]Move state message INIT -peer1.org1.example.com | [202 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [1d4 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2496ccf0]Received message TRANSACTION from shim -peer0.org1.example.com | [1d5 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2496ccf0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [17f 12-12 14:19:33.61 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 | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -peer1.org1.example.com | [203 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [1d6 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2496ccf0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [113 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5d28c1d0]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [180 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -peer1.org1.example.com | [204 12-12 14:19:40.44 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [1d7 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [114 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [205 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [182 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [1d8 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -peer1.org1.example.com | [206 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [112 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5d28c1d0]Received message READY from shim -orderer.example.com | [0b8 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [1d9 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -peer1.org2.example.com | [183 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [116 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5d28c1d0]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | [207 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [115 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5d28c1d0]sending state message INIT -peer0.org1.example.com | [1da 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] -peer1.org1.example.com | [208 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [181 12-12 14:19:33.61 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.1.0 launch seq completed -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [184 12-12 14:19:33.61 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 | [1db 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] does not exist -peer0.org2.example.com | [117 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5d28c1d0]Received message INIT from shim -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [1dc 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] exists -peer1.org2.example.com | [185 12-12 14:19:33.61 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 | [209 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [1dd 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -peer0.org2.example.com | [118 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5d28c1d0]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [186 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee001ded]Move state message READY -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -peer0.org1.example.com | [1de 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -peer0.org2.example.com | [119 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [20a 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [1df 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -peer0.org2.example.com | [11a 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [5d28c1d0]Received INIT, initializing chaincode -peer1.org2.example.com | [187 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ee001ded]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [1e0 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org1.example.com | [20b 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -peer1.org2.example.com | [188 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [ee001ded]Entered state ready -peer0.org2.example.com | [11b 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -peer1.org1.example.com | [20c 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org1.example.com | [1e1 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org2.example.com | [189 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:ee001ded-d103-4f5d-ab5e-4c2c61a7191d, channelID: -peer0.org1.example.com | [1e2 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -peer0.org2.example.com | [11c 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5d28c1d0]Init get response status: 200 -peer0.org1.example.com | [1e3 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc421a442a0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -peer1.org1.example.com | [20d 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [18a 12-12 14:19:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee001ded]sending state message READY -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -peer0.org2.example.com | [11d 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5d28c1d0]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [1e4 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -peer1.org1.example.com | [20e 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -peer0.org1.example.com | [1e5 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: -peer1.org2.example.com | [18c 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee001ded]Received message READY from shim -peer0.org2.example.com | [11e 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5d28c1d0]Move state message COMPLETED -peer1.org1.example.com | [20f 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [1e6 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -peer0.org2.example.com | [11f 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5d28c1d0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [18d 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee001ded]Handling ChaincodeMessage of type: READY(state:established) -peer0.org1.example.com | [1e7 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. -peer0.org2.example.com | [120 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5d28c1d0]send state message COMPLETED -peer1.org1.example.com | [210 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [1e8 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [0] -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [211 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org1.example.com | [1e9 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [18b 12-12 14:19:33.62 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 | [212 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | [121 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5d28c1d0]Received message COMPLETED from shim -peer0.org1.example.com | [1ea 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [0] -peer1.org2.example.com | [18e 12-12 14:19:33.62 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 | [0b9 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -peer0.org2.example.com | [122 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5d28c1d0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [1eb 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org2.example.com | [18f 12-12 14:19:33.62 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 | [1ec 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer0.org2.example.com | [123 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5d28c1d0-636d-4cd6-af63-551458b3c5b7]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [213 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [190 12-12 14:19:33.62 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.1.0 -peer0.org1.example.com | [1ed 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -orderer.example.com | [0ba 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org2.example.com | [124 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:5d28c1d0-636d-4cd6-af63-551458b3c5b7, channelID: -peer0.org1.example.com | [1ee 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -orderer.example.com | [0bb 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [214 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org1.example.com | [1ef 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [191 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ee001ded]Inside sendExecuteMessage. Message INIT -orderer.example.com | [0bc 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [125 12-12 14:19:34.58 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 | [1f0 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer1.org1.example.com | [215 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [192 12-12 14:19:33.62 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 | [1f1 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer0.org2.example.com | [126 12-12 14:19:34.58 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 | [0bd 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [193 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ee001ded]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [216 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [0be 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [127 12-12 14:19:34.58 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.1.0,txid=d94540cf-3ebc-4fcd-8447-752c16a8e8de,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org2.example.com | [194 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee001ded]Move state message INIT -peer0.org1.example.com | [1f2 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:1 channel_group: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer1.org1.example.com | [217 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [0bf 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [128 12-12 14:19:34.58 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.1.0 is being launched -peer1.org2.example.com | [195 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ee001ded]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [1f3 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org1.example.com | [218 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [196 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [129 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -orderer.example.com | [0c0 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org1.example.com | [1f4 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [12a 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org1.example.com | [219 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [1f5 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [0c1 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [197 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee001ded]sending state message INIT -peer0.org1.example.com | [1f6 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [12b 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -orderer.example.com | [0c2 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [1f7 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [21a 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [198 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee001ded]Received message INIT from shim -peer0.org2.example.com | [12c 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key] -peer0.org1.example.com | [1f8 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [199 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee001ded]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [21b 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | [0c3 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org1.example.com | [1f9 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org2.example.com | [12d 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer0.org2.example.com) -peer1.org2.example.com | [19a 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [21c 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [1fa 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [0c4 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -peer0.org2.example.com | [12e 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer1.org2.example.com | [19b 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [ee001ded]Received INIT, initializing chaincode -peer0.org1.example.com | [1fb 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [1fc 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [0c5 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [21d 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [1fd 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [19c 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer0.org2.example.com | [12f 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -orderer.example.com | MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [1fe 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [21e 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | [095 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/Admins +peer0.org2.example.com | [0f7 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 +peer0.org1.example.com | [250 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +peer1.org1.example.com | [0d5 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [0ef 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock +orderer.example.com | [096 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org2.example.com | [0f0 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock +peer0.org1.example.com | [251 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +peer0.org2.example.com | [0f8 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [0d6 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [caad8bf8]sending state message INIT +orderer.example.com | [097 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org2.example.com | [0f1 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.1.0 +peer0.org1.example.com | [252 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [3eb027bb-9983-43c0-b3ee-2a386a0bfa64] +peer0.org2.example.com | [0f9 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | [098 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org1.example.com | [0d7 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [caad8bf8]Received message INIT from shim +peer1.org2.example.com | [0f2 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) +orderer.example.com | [099 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [0d8 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [caad8bf8]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [253 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.retrievePersistedConf.GetState.getState.GetState.GetState -> DEBU GetState(). ns=, key=resourcesconfigtx.CHANNEL_CONFIG_KEY +peer0.org2.example.com | [0fa 12-15 03:49:10.90 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 | [0f3 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 +orderer.example.com | [09a 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [0f4 12-15 03:49:12.59 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 | [0d9 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | [09b 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [0fb 12-15 03:49:10.90 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 | [254 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [3eb027bb-9983-43c0-b3ee-2a386a0bfa64] +peer1.org1.example.com | [0da 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [caad8bf8]Received INIT, initializing chaincode +peer1.org2.example.com | [0f5 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 +orderer.example.com | [09c 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [255 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org2.example.com | [0f6 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +orderer.example.com | [09d 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org1.example.com | [0db 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [0fc 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.1.0 +peer0.org1.example.com | [256 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [09e 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer1.org2.example.com | [0f7 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 +peer0.org1.example.com | [257 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [0dc 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [caad8bf8]Init get response status: 200 +orderer.example.com | [09f 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +peer1.org2.example.com | [0f8 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [0fd 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.1.0" , sending back REGISTERED +orderer.example.com | [0a0 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +peer0.org1.example.com | [258 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [0f9 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | [0a1 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums +peer0.org1.example.com | [259 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [0fa 12-15 03:49:12.59 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 | [0a2 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +peer1.org1.example.com | [0dd 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [caad8bf8]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [25a 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [0a3 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +peer1.org2.example.com | [0fb 12-15 03:49:12.59 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 | [0fe 12-15 03:49:10.90 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 | [25b 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | [0a4 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums +peer1.org2.example.com | [0fc 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.1.0 +peer1.org1.example.com | [0de 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [caad8bf8]Move state message COMPLETED +peer0.org2.example.com | [0ff 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +orderer.example.com | [0a5 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +peer0.org1.example.com | [25c 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [0fd 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.1.0" , sending back REGISTERED +orderer.example.com | [0a6 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +peer1.org1.example.com | [0df 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [caad8bf8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [0fe 12-15 03:49:12.59 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 | [25d 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [100 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +orderer.example.com | [0a7 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer0.org1.example.com | [25e 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [0e0 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [caad8bf8]send state message COMPLETED +peer1.org2.example.com | [0ff 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +orderer.example.com | [0a8 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +peer0.org2.example.com | [101 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +orderer.example.com | [0a9 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +peer1.org1.example.com | [0e1 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [caad8bf8]Received message COMPLETED from shim +peer1.org2.example.com | [100 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [25f 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | [102 12-15 03:49:10.90 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.1.0 launch seq completed +orderer.example.com | [0aa 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9158], Going to peek [8] bytes +peer1.org1.example.com | [0e2 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [caad8bf8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [101 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [260 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [103 12-15 03:49:10.90 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 | [0ab 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9156], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +peer0.org1.example.com | [261 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [104 12-15 03:49:10.90 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 | [0e3 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [caad8bf8-d72b-4abd-8bf5-452828512a88]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [262 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [102 12-15 03:49:12.59 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.1.0 launch seq completed +orderer.example.com | [0ac 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9156] read from file [0] +peer0.org2.example.com | [105 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [da1bba5f]Move state message READY +peer1.org1.example.com | [0e4 12-15 03:49:08.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:caad8bf8-d72b-4abd-8bf5-452828512a88, channelID: +peer0.org1.example.com | [263 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [103 12-15 03:49:12.59 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 | [106 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [da1bba5f]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [0e5 12-15 03:49:08.31 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 | [0ad 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.newBlockWriter -> DEBU [channel: testchainid] Creating block writer for tip of chain (blockNumber=0, lastConfigBlockNum=0, lastConfigSeq=0) +peer0.org1.example.com | [264 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [104 12-15 03:49:12.59 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 | [0e6 12-15 03:49:08.31 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 | [107 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [da1bba5f]Entered state ready +peer0.org1.example.com | [265 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | [0ae 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport -> DEBU [channel: testchainid] Done creating channel support resources +peer1.org2.example.com | [105 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [70b0cfb6]Move state message READY +peer0.org2.example.com | [108 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:da1bba5f-0d60-45aa-984d-96be272beb58, channelID: +peer1.org1.example.com | [0b2 12-15 03:49:08.30 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) +orderer.example.com | [0af 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.NewSystemChannel -> DEBU Creating system channel msg processor for channel testchainid +peer0.org1.example.com | [266 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [109 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [da1bba5f]sending state message READY +peer1.org2.example.com | [106 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [70b0cfb6]Fabric side Handling ChaincodeMessage of type: READY in state established +orderer.example.com | [0b0 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +peer1.org1.example.com | [0e7 12-15 03:49:08.32 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.1.0,txid=9d848a15-eb02-49cc-a098-b66c9ee1ea1d,syscc=true,proposal=0x0,canname=escc:1.1.0 +peer0.org1.example.com | [267 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [107 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [70b0cfb6]Entered state ready +peer0.org1.example.com | [268 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [0e8 12-15 03:49:08.32 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.1.0 is being launched +orderer.example.com | [0b1 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +peer0.org2.example.com | [10a 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [da1bba5f]Received message READY from shim +peer1.org2.example.com | [108 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:70b0cfb6-129f-4342-8b5f-d753316f4845, channelID: +peer1.org1.example.com | [0e9 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +orderer.example.com | [0b2 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9158], Going to peek [8] bytes +peer0.org1.example.com | [269 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [10b 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [da1bba5f]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | [0ea 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +peer1.org2.example.com | [109 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [70b0cfb6]sending state message READY +orderer.example.com | [0b3 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9156], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +peer0.org2.example.com | [10c 12-15 03:49:10.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 | [26a 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [0eb 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=escc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +orderer.example.com | [0b4 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9156] read from file [0] +peer0.org1.example.com | [26b 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +peer1.org2.example.com | [10a 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [70b0cfb6]Received message READY from shim +peer1.org1.example.com | [0ec 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] +peer0.org2.example.com | [10d 12-15 03:49:10.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 | [0b5 12-15 03:49:08.21 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> INFO Starting system channel 'testchainid' with genesis block hash da0612140047eb2fdcc2684cff5c8c6522994e1ce8749454cae0dbf733598748 and orderer type solo +peer1.org2.example.com | [10b 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [70b0cfb6]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | [0ed 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: escc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) +peer0.org1.example.com | [26c 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [10e 12-15 03:49:10.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 | [0b6 12-15 03:49:08.21 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Starting orderer: +peer1.org1.example.com | [0ee 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +peer1.org2.example.com | [10c 12-15 03:49:12.59 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 | [10f 12-15 03:49:10.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: escc:1.1.0 +peer1.org1.example.com | [0ef 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer1.org2.example.com | [10d 12-15 03:49:12.59 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 | [26d 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | Version: 1.1.0 +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.1.0 +peer1.org2.example.com | [10e 12-15 03:49:12.59 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 | [26e 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [110 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [da1bba5f]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | [10f 12-15 03:49:12.59 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.1.0 +peer0.org2.example.com | [111 12-15 03:49:10.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... +orderer.example.com | Go version: go1.9.2 +peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +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 | [0f0 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock +peer0.org1.example.com | [26f 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | OS/Arch: linux/amd64 +peer1.org2.example.com | [110 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [70b0cfb6]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [112 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [da1bba5f]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [113 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [da1bba5f]Move state message INIT +peer0.org2.example.com | [114 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [da1bba5f]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [115 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [116 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [da1bba5f]sending state message INIT +peer0.org2.example.com | [117 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [da1bba5f]Received message INIT from shim +peer0.org2.example.com | [118 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [da1bba5f]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [119 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [11a 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [da1bba5f]Received INIT, initializing chaincode +peer0.org2.example.com | [11b 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer1.org1.example.com | [0f1 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock +peer0.org1.example.com | [270 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [271 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer0.org1.example.com | [272 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [273 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [274 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org1.example.com | [275 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [276 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [277 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | Experimental features: false +peer1.org2.example.com | [111 12-15 03:49:12.59 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 | [112 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [70b0cfb6]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [113 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [70b0cfb6]Move state message INIT +peer1.org2.example.com | [114 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [70b0cfb6]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [0f2 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.1.0 +peer1.org1.example.com | [0f3 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) +peer1.org1.example.com | [0f4 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 +peer1.org1.example.com | [0f5 12-15 03:49:08.32 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 | [0f6 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 +peer0.org2.example.com | [11c 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [da1bba5f]Init get response status: 200 +peer0.org1.example.com | [278 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [279 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [27a 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [27b 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org1.example.com | [27c 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [27d 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [27e 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org1.example.com | [27f 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [115 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [0b7 12-15 03:49:08.21 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Beginning to serve requests +orderer.example.com | [0b8 12-15 03:49:14.22 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer1.org1.example.com | [0f7 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org1.example.com | [280 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org2.example.com | [11d 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [da1bba5f]Init succeeded. Sending COMPLETED +orderer.example.com | [0b9 12-15 03:49:14.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57090 +peer1.org1.example.com | [0f8 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 +peer1.org2.example.com | [116 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [70b0cfb6]sending state message INIT +peer0.org1.example.com | [281 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [0ba 12-15 03:49:14.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57090 +peer1.org2.example.com | [117 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [70b0cfb6]Received message INIT from shim +peer0.org1.example.com | [282 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org2.example.com | [11e 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [da1bba5f]Move state message COMPLETED +peer1.org1.example.com | [0f9 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +orderer.example.com | [0bb 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +peer1.org2.example.com | [118 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [70b0cfb6]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [119 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [11f 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [da1bba5f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [120 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [da1bba5f]send state message COMPLETED +peer1.org1.example.com | [0fa 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | [11a 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [70b0cfb6]Received INIT, initializing chaincode +peer1.org2.example.com | [11b 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +orderer.example.com | [0bc 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.21.0.8:57092 +peer0.org2.example.com | [121 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [da1bba5f]Received message COMPLETED from shim +peer0.org2.example.com | [122 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [da1bba5f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [0fb 12-15 03:49:08.32 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 | [11c 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [70b0cfb6]Init get response status: 200 +orderer.example.com | [0bd 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.21.0.8:57092 +peer0.org1.example.com | [283 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org1.example.com | [0fc 12-15 03:49:08.32 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 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [da1bba5f-0d60-45aa-984d-96be272beb58]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [11d 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [70b0cfb6]Init succeeded. Sending COMPLETED +orderer.example.com | [0be 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update tx with system channel message processor for channel ID businesschannel +peer1.org1.example.com | [0fd 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.1.0 +peer1.org1.example.com | [0fe 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.1.0" , sending back REGISTERED +peer0.org1.example.com | [284 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [285 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [11e 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [70b0cfb6]Move state message COMPLETED +peer0.org2.example.com | [124 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:da1bba5f-0d60-45aa-984d-96be272beb58, channelID: +peer1.org1.example.com | [0ff 12-15 03:49:08.32 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 | [0bf 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing channel create tx for channel businesschannel on system channel testchainid +peer1.org2.example.com | [11f 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [70b0cfb6]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [125 12-15 03:49:10.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 | [286 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [100 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +orderer.example.com | [0c0 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org2.example.com | [120 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [70b0cfb6]send state message COMPLETED +peer0.org2.example.com | [126 12-15 03:49:10.91 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 | [287 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [101 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org2.example.com | [121 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [70b0cfb6]Received message COMPLETED from shim +orderer.example.com | [0c1 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [127 12-15 03:49:10.91 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.1.0,txid=deca90ba-da67-4b1d-ad93-8e25816b61ed,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer0.org1.example.com | [288 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [102 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org2.example.com | [122 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [70b0cfb6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [0c2 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org2.example.com | [128 12-15 03:49:10.91 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.1.0 is being launched +peer0.org2.example.com | [129 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer0.org1.example.com | [289 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org1.example.com | [103 12-15 03:49:08.32 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.1.0 launch seq completed +peer1.org1.example.com | [104 12-15 03:49:08.32 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 | [123 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [70b0cfb6-129f-4342-8b5f-d753316f4845]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [12a 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +orderer.example.com | [0c3 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [105 12-15 03:49:08.32 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 | [124 12-15 03:49:12.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:70b0cfb6-129f-4342-8b5f-d753316f4845, channelID: +peer0.org1.example.com | [28a 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [12b 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +orderer.example.com | [0c4 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [125 12-15 03:49:12.59 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 | [106 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9d848a15]Move state message READY +peer0.org1.example.com | [28b 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [126 12-15 03:49:12.59 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.org2.example.com | [127 12-15 03:49:12.59 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.1.0,txid=7b9a9fbe-49d6-47d9-b8fd-1b1999d869d4,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer1.org2.example.com | [128 12-15 03:49:12.59 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.1.0 is being launched +peer1.org2.example.com | [129 12-15 03:49:12.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer1.org2.example.com | [12a 12-15 03:49:12.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +peer1.org2.example.com | [12b 12-15 03:49:12.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +peer1.org2.example.com | [12c 12-15 03:49:12.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +peer1.org2.example.com | [12d 12-15 03:49:12.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer1.org2.example.com) +peer1.org2.example.com | [12e 12-15 03:49:12.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +peer1.org2.example.com | [12f 12-15 03:49:12.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.1.0 +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +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 | [130 12-15 03:49:12.60 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock +peer1.org2.example.com | [131 12-15 03:49:12.60 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock +peer1.org2.example.com | [132 12-15 03:49:12.60 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.1.0 +peer1.org2.example.com | [133 12-15 03:49:12.60 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) +peer1.org2.example.com | [134 12-15 03:49:12.60 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 +peer1.org2.example.com | [136 12-15 03:49:12.60 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 | [135 12-15 03:49:12.60 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 +orderer.example.com | [0c5 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [12c 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] +peer1.org1.example.com | [107 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9d848a15]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [108 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [9d848a15]Entered state ready +peer1.org1.example.com | [109 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:9d848a15-eb02-49cc-a098-b66c9ee1ea1d, channelID: +peer1.org1.example.com | [10a 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9d848a15]sending state message READY +peer0.org1.example.com | [28c 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [137 12-15 03:49:12.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer1.org1.example.com | [10b 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9d848a15]Received message READY from shim +peer0.org1.example.com | [28d 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [138 12-15 03:49:12.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 +orderer.example.com | [0c6 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org2.example.com | [12d 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer0.org2.example.com) +peer0.org2.example.com | [12e 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer0.org1.example.com | [28e 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | [0c7 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [139 12-15 03:49:12.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [12f 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.1.0 -peer1.org2.example.com | [19d 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee001ded]Init get response status: 200 -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [1ff 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | [19e 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee001ded]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [21f 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [200 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [220 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org1.example.com | [201 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [202 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [221 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [19f 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee001ded]Move state message COMPLETED -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org1.example.com | [203 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org1.example.com | [204 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [222 12-12 14:19:40.45 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org2.example.com | [1a0 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee001ded]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | [205 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [223 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer1.org2.example.com | [1a1 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee001ded]send state message COMPLETED -peer0.org1.example.com | [206 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [224 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -peer1.org2.example.com | [1a2 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee001ded]Received message COMPLETED from shim -peer1.org1.example.com | [225 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP 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 | +8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer0.org1.example.com | [207 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [1a3 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ee001ded]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [130 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock -peer1.org1.example.com | [226 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [208 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [131 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -peer1.org1.example.com | [227 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [132 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.1.0 -peer1.org2.example.com | [1a4 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ee001ded-d103-4f5d-ab5e-4c2c61a7191d]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [209 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -peer1.org1.example.com | [228 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -peer0.org1.example.com | [20a 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [133 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) -peer1.org2.example.com | [1a5 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ee001ded-d103-4f5d-ab5e-4c2c61a7191d, channelID: -orderer.example.com | uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -peer0.org1.example.com | [20b 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [1a6 12-12 14:19:33.62 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 | [229 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | cNvAXU8LlQ== -peer1.org2.example.com | [1a7 12-12 14:19:33.62 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 | [134 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 -peer0.org1.example.com | [20c 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [1a8 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled -peer0.org2.example.com | [136 12-12 14:19:34.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 | -----END CERTIFICATE----- -peer1.org2.example.com | [1a9 12-12 14:19:33.62 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes -peer1.org1.example.com | [22a 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [1aa 12-12 14:19:33.62 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] -peer0.org1.example.com | [20d 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [135 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 -peer1.org1.example.com | [22b 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [1ab 12-12 14:19:33.62 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] -peer0.org1.example.com | [20e 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [0c6 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [20f 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org2.example.com | [137 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org2.example.com | [1ac 12-12 14:19:33.63 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 | [22c 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [210 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [1ad 12-12 14:19:33.63 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 | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -peer1.org1.example.com | [22d 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [138 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 -peer1.org2.example.com | [1ae 12-12 14:19:33.63 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 | [22e 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org1.example.com | [211 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [1af 12-12 14:19:33.63 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 | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [139 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | [1b0 12-12 14:19:33.63 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 | [212 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org2.example.com | [13a 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [22f 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [1b1 12-12 14:19:33.63 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' -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer1.org1.example.com | [230 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [13b 12-12 14:19:34.58 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 | [213 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [1b2 12-12 14:19:33.63 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [214 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [1b3 12-12 14:19:33.63 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.org2.example.com | [13c 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer1.org1.example.com | [231 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [215 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [1b4 12-12 14:19:33.63 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 | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -peer1.org1.example.com | [232 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [13d 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.1.0 -peer0.org1.example.com | [216 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [1b5 12-12 14:19:33.63 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 | [233 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org1.example.com | [217 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [13e 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.1.0" , sending back REGISTERED -peer1.org2.example.com | [1b6 12-12 14:19:33.63 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 | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -peer1.org2.example.com | [1b7 12-12 14:19:33.63 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 | [234 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [218 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [13f 12-12 14:19:34.58 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 | [1b8 12-12 14:19:33.63 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 | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -peer1.org2.example.com | [1b9 12-12 14:19:33.63 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 | [140 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | [219 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [235 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org2.example.com | [1ba 12-12 14:19:33.63 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 | [236 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org1.example.com | [21a 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org2.example.com | [1bb 12-12 14:19:33.63 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 | [237 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org2.example.com | [141 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -peer1.org2.example.com | [1bc 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:42306 -peer0.org1.example.com | [21b 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [142 12-12 14:19:34.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 vscc:1.1.0 launch seq completed -peer1.org1.example.com | [238 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [21c 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org2.example.com | [1bd 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42196a120 -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -peer0.org2.example.com | [144 12-12 14:19:34.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 -peer1.org1.example.com | [239 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [1be 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -orderer.example.com | ZM8rwLlgV6XUeTLW -peer1.org2.example.com | [1bf 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [21d 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org2.example.com | [145 12-12 14:19:34.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... -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [1c0 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP cec57e02e224c3efa1075c97d8c3172cd78fec768b3b75afcf280ac60a493411} -peer1.org1.example.com | [23a 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org2.example.com | [146 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d94540cf]Move state message READY -peer0.org1.example.com | [21e 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org2.example.com | [1c1 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [0c7 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [23b 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org2.example.com | [147 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d94540cf]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [21f 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [1c2 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [23c 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org2.example.com | [148 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [d94540cf]Entered state ready -peer1.org2.example.com | [1c3 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc420128230, header 0xc42196a1e0 -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -peer1.org1.example.com | [23d 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [0] Transaction index [0] TxId [] marked as valid by state validator -peer0.org2.example.com | [149 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:d94540cf-3ebc-4fcd-8447-752c16a8e8de, channelID: -peer0.org1.example.com | [220 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [23e 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org2.example.com | [14a 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d94540cf]sending state message READY -peer1.org2.example.com | [1c4 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -peer0.org1.example.com | [221 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [23f 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org2.example.com | [14b 12-12 14:19:34.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.org1.example.com | [222 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [1c5 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 1c8383ccf8abd45c2a45a51f46f6cf14d2ac1f8cda5f7d92214f5d88c1a261a4 -peer1.org1.example.com | [240 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org2.example.com | [14c 12-12 14:19:34.58 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 | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | [241 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage -peer0.org1.example.com | [223 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [14d 12-12 14:19:34.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 | [1c6 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 1c8383ccf8abd45c2a45a51f46f6cf14d2ac1f8cda5f7d92214f5d88c1a261a4 channel id: -peer1.org1.example.com | [242 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [0] -peer0.org2.example.com | [14e 12-12 14:19:34.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.1.0 -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer1.org2.example.com | [1c7 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 1c8383ccf8abd45c2a45a51f46f6cf14d2ac1f8cda5f7d92214f5d88c1a261a4 channel id: version: 1.1.0 -peer1.org1.example.com | [243 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x75, 0x95, 0x22, 0x8d, 0x73, 0xc0, 0xf2, 0x8, 0x3f, 0x0, 0x84, 0x26, 0x3f, 0xe, 0x6, 0x25, 0xc, 0xfa, 0x4, 0x7a, 0x46, 0xa1, 0x94, 0xba, 0xa3, 0xa8, 0x4a, 0x7b, 0xc5, 0xb3, 0x54, 0xed} txOffsets= -peer0.org2.example.com | [14f 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d94540cf]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [224 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | txId= locPointer=offset=38, bytesLength=12077 -peer0.org2.example.com | [150 12-12 14:19:34.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... -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | ] -peer0.org2.example.com | [151 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d94540cf]sendExecuteMsg trigger event INIT -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer1.org2.example.com | [1c8 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=1c8383ccf8abd45c2a45a51f46f6cf14d2ac1f8cda5f7d92214f5d88c1a261a4,syscc=true,proposal=0xc420128230,canname=cscc:1.1.0 -peer0.org1.example.com | [225 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [244 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12077] for tx ID: [] to index -peer0.org2.example.com | [143 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -peer0.org2.example.com | [152 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d94540cf]Received message READY from shim -peer1.org2.example.com | [1c9 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -peer0.org1.example.com | [226 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [245 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12077] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org2.example.com | [153 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d94540cf]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [1ca 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [227 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [246 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12121], isChainEmpty=[false], lastBlockNumber=[0] -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -peer0.org2.example.com | [154 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d94540cf]Move state message INIT -peer1.org2.example.com | [1cb 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -peer1.org1.example.com | [247 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 0 -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -peer0.org1.example.com | [228 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [155 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d94540cf]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [248 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 0 -peer1.org2.example.com | [1cc 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1c8383cc]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [249 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [0] with 1 transaction(s) -peer0.org2.example.com | [156 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [229 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [24a 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database -peer0.org2.example.com | [157 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d94540cf]sending state message INIT -peer1.org1.example.com | [24b 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -peer1.org2.example.com | [1cd 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [22a 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [158 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d94540cf]Received message INIT from shim -peer1.org1.example.com | [24c 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [22b 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -orderer.example.com | ZM8rwLlgV6XUeTLW -peer0.org2.example.com | [159 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d94540cf]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [1ce 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [22c 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org1.example.com | [24d 12-12 14:19:40.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [15a 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [22d 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [1cf 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1c8383cc]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [24e 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [15b 12-12 14:19:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d94540cf]Received INIT, initializing chaincode -orderer.example.com | [0c8 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org1.example.com | [22e 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | [24f 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to history database -peer0.org2.example.com | [15c 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d94540cf]Init get response status: 200 -peer1.org2.example.com | [1d0 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1c8383cc]Move state message TRANSACTION -orderer.example.com | [0c9 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [22f 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [250 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -peer0.org2.example.com | [15d 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d94540cf]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [230 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org2.example.com | [1d1 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1c8383cc]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [15e 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d94540cf]Move state message COMPLETED -orderer.example.com | [0ca 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [251 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org1.example.com | [231 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org2.example.com | [15f 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d94540cf]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [1d2 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [0cb 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [252 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -peer0.org2.example.com | [160 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d94540cf]send state message COMPLETED -peer0.org1.example.com | [232 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org1.example.com | [253 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer1.org2.example.com | [1d3 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1c8383cc]sending state message TRANSACTION -orderer.example.com | [0cc 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [161 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d94540cf]Received message COMPLETED from shim -peer0.org1.example.com | [233 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org2.example.com | [1d4 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c8383cc]Received message TRANSACTION from shim -peer1.org1.example.com | [254 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [912b9f64-46ad-4500-a329-ab7a7feec2c8] -peer0.org2.example.com | [162 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d94540cf]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [0cd 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -peer1.org2.example.com | [1d5 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1c8383cc]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [255 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.retrievePersistedConf.GetState.getState.GetState.GetState -> DEBU GetState(). ns=, key=resourcesconfigtx.CHANNEL_CONFIG_KEY -peer0.org1.example.com | [234 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [163 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d94540cf-3ebc-4fcd-8447-752c16a8e8de]HandleMessage- COMPLETED. Notify -orderer.example.com | [0ce 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | [1d6 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1c8383cc]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [256 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [912b9f64-46ad-4500-a329-ab7a7feec2c8] -peer0.org2.example.com | [164 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d94540cf-3ebc-4fcd-8447-752c16a8e8de, channelID: -peer0.org1.example.com | [235 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [1d7 12-12 14:19:40.74 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -orderer.example.com | [0cf 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org1.example.com | [257 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org2.example.com | [165 12-12 14:19:34.59 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 | [236 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [0d0 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer1.org2.example.com | [1d8 12-12 14:19:40.75 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -peer1.org1.example.com | [258 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [0d1 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -peer0.org2.example.com | [166 12-12 14:19:34.59 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 | [259 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [1d9 12-12 14:19:40.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -orderer.example.com | [0d2 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [237 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [167 12-12 14:19:34.59 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.1.0,txid=a9fbad5e-aeb0-41ae-b670-49747f5c2959,syscc=true,proposal=0x0,canname=qscc:1.1.0 -peer1.org1.example.com | [25a 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [238 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org2.example.com | [1da 12-12 14:19:40.75 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [239 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org1.example.com | [25b 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [168 12-12 14:19:34.59 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.1.0 is being launched -peer0.org1.example.com | [23a 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org2.example.com | [1db 12-12 14:19:40.75 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] does not exist -peer1.org1.example.com | [25c 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [169 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer0.org1.example.com | [23b 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [0] Transaction index [0] TxId [] marked as valid by state validator -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [1dc 12-12 14:19:40.75 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] exists -peer0.org2.example.com | [16a 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org1.example.com | [25d 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [23c 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org2.example.com | [16b 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=qscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -peer0.org1.example.com | [23d 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [1dd 12-12 14:19:40.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -peer1.org1.example.com | [25e 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org2.example.com | [16c 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer0.org1.example.com | [23e 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org1.example.com | [25f 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -peer1.org2.example.com | [1de 12-12 14:19:40.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -peer0.org1.example.com | [23f 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [1df 12-12 14:19:40.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -peer1.org1.example.com | [260 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [240 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [0] -peer0.org2.example.com | [16d 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: qscc:1.1.0(networkid:dev,peerid:peer0.org2.example.com) -peer1.org1.example.com | [261 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | [241 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x75, 0x95, 0x22, 0x8d, 0x73, 0xc0, 0xf2, 0x8, 0x3f, 0x0, 0x84, 0x26, 0x3f, 0xe, 0x6, 0x25, 0xc, 0xfa, 0x4, 0x7a, 0x46, 0xa1, 0x94, 0xba, 0xa3, 0xa8, 0x4a, 0x7b, 0xc5, 0xb3, 0x54, 0xed} txOffsets= -peer1.org2.example.com | [1e0 12-12 14:19:40.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | txId= locPointer=offset=38, bytesLength=12077 -peer1.org1.example.com | [262 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [16e 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer0.org1.example.com | ] -peer1.org1.example.com | [263 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [1e1 12-12 14:19:40.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -peer0.org2.example.com | [16f 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -orderer.example.com | BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -peer1.org1.example.com | [264 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [242 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12077] for tx ID: [] to index -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.1.0 -peer1.org2.example.com | [1e2 12-12 14:19:40.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -peer1.org1.example.com | [265 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [243 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12077] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -peer1.org2.example.com | [1e3 12-12 14:19:40.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4219e0b60)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -peer0.org1.example.com | [244 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12121], isChainEmpty=[false], lastBlockNumber=[0] -peer1.org1.example.com | [266 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [245 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 0 -peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org2.example.com | [1e4 12-12 14:19:40.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -orderer.example.com | GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -peer1.org1.example.com | [267 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org1.example.com | [246 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 0 -peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org1.example.com | [247 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [0] with 1 transaction(s) -peer1.org1.example.com | [268 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -peer1.org2.example.com | [1e5 12-12 14:19:40.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: -peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org1.example.com | [248 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database -peer1.org1.example.com | [269 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | xEFWkMtGbgY= -peer0.org1.example.com | [249 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [1e6 12-12 14:19:40.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [26a 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [24a 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [1e7 12-12 14:19:40.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [26b 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -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 | [24b 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -orderer.example.com | [0d3 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [1e8 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [0] -peer1.org1.example.com | [26c 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [24c 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [26d 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [170 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock -peer0.org1.example.com | [24d 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to history database -peer1.org1.example.com | [26e 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [1e9 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [24e 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -peer0.org2.example.com | [171 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | [26f 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [1ea 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [0] -peer0.org1.example.com | [24f 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org2.example.com | [172 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.1.0 -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -peer1.org2.example.com | [1eb 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org1.example.com | [270 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [250 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -peer0.org2.example.com | [173 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) -peer1.org1.example.com | [271 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [251 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer1.org2.example.com | [1ec 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer0.org2.example.com | [175 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [252 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [d01b4e94-6e29-46bb-a8b5-35e994987625] -peer1.org1.example.com | [272 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [176 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org1.example.com | [253 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.retrievePersistedConf.GetState.getState.GetState.GetState -> DEBU GetState(). ns=, key=resourcesconfigtx.CHANNEL_CONFIG_KEY -peer1.org2.example.com | [1ed 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -peer1.org1.example.com | [273 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org1.example.com | [254 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [d01b4e94-6e29-46bb-a8b5-35e994987625] -peer1.org2.example.com | [1ee 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer0.org2.example.com | [177 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 -peer0.org1.example.com | [255 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -peer1.org1.example.com | [274 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | [178 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -peer1.org2.example.com | [1ef 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [256 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [174 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 -peer1.org1.example.com | [275 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -peer1.org2.example.com | [1f0 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer0.org2.example.com | [179 12-12 14:19:34.59 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 | [257 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [276 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [17a 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [1f1 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -peer1.org1.example.com | [277 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [258 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [17b 12-12 14:19:34.59 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 | OwJpoynNCyKsWozuVw== -peer0.org1.example.com | [259 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [278 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [17c 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [25a 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [1f2 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:1 channel_group: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer1.org1.example.com | [279 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [25b 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org2.example.com | [17d 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.1.0 -orderer.example.com | [0d4 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [1f3 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org1.example.com | [27a 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [17e 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.1.0" , sending back REGISTERED -peer0.org1.example.com | [25c 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [1f4 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [1f5 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [1f6 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [17f 12-12 14:19:34.59 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 | [27b 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [25d 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -peer1.org2.example.com | [1f7 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [181 12-12 14:19:34.59 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.1.0 launch seq completed -peer1.org1.example.com | [27c 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [25e 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org2.example.com | [1f8 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [182 12-12 14:19:34.59 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 | [27d 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [25f 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [1f9 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | [183 12-12 14:19:34.59 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 | [1fa 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [27e 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -peer0.org1.example.com | [260 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [184 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a9fbad5e]Move state message READY -peer1.org2.example.com | [1fb 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | [27f 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [185 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a9fbad5e]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [1fc 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [280 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -peer1.org2.example.com | [1fd 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [261 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [186 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [a9fbad5e]Entered state ready -peer1.org1.example.com | [281 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org2.example.com | [1fe 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -peer0.org1.example.com | [262 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [187 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:a9fbad5e-aeb0-41ae-b670-49747f5c2959, channelID: -peer1.org2.example.com | [1ff 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [282 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [188 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a9fbad5e]sending state message READY -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -peer1.org2.example.com | [200 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [263 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [283 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [189 12-12 14:19:34.59 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 | [201 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [284 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [264 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -peer1.org2.example.com | [202 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [285 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org2.example.com | [18a 12-12 14:19:34.59 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 | [265 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [203 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -peer1.org1.example.com | [286 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [266 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [18b 12-12 14:19:34.59 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 | [204 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [287 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -peer0.org1.example.com | [267 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [18c 12-12 14:19:34.59 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.1.0 -peer1.org1.example.com | [288 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [205 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | OwJpoynNCyKsWozuVw== -peer0.org2.example.com | [18d 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a9fbad5e]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [268 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [18e 12-12 14:19:34.59 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 | [206 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [269 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [289 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [18f 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a9fbad5e]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [26a 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [180 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -orderer.example.com | [0d5 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org2.example.com | [207 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [26b 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org2.example.com | [190 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [28a 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [0d6 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -peer1.org2.example.com | [208 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [26c 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | [191 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [209 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org1.example.com | [28b 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [192 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a9fbad5e]Received message READY from shim -orderer.example.com | [0d7 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer1.org1.example.com | [28c 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [20a 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [26d 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [194 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a9fbad5e]Move state message INIT -orderer.example.com | [0d8 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -peer1.org2.example.com | [20b 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [26e 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [195 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a9fbad5e]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [28d 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | [0d9 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -peer1.org2.example.com | [20c 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [26f 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [28e 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | [0da 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -peer0.org2.example.com | [196 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [270 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [28f 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org2.example.com | [20d 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [0db 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -peer0.org2.example.com | [197 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a9fbad5e]sending state message INIT -peer1.org1.example.com | [290 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [20e 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [0dc 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -peer0.org2.example.com | [193 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a9fbad5e]Handling ChaincodeMessage of type: READY(state:established) -peer0.org1.example.com | [271 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | [0dd 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -peer1.org1.example.com | [291 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [20f 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | [0de 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -peer1.org1.example.com | [292 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | [272 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [198 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a9fbad5e]Received message INIT from shim -orderer.example.com | [0df 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -peer1.org2.example.com | [210 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org1.example.com | [273 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [293 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [0e0 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -peer1.org2.example.com | [211 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [199 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a9fbad5e]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [294 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org1.example.com | [274 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [0e1 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -peer0.org2.example.com | [19a 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [275 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [212 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [0e2 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -peer1.org1.example.com | [295 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org2.example.com | [213 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org2.example.com | [19b 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [a9fbad5e]Received INIT, initializing chaincode -orderer.example.com | [0e3 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -peer0.org1.example.com | [276 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [214 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [0e4 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -peer0.org2.example.com | [19c 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer0.org1.example.com | [277 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [0e5 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy ChannelCreationPolicy for Channel/Application -peer1.org1.example.com | [296 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org2.example.com | [215 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [0e6 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins -peer0.org1.example.com | [278 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [297 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org2.example.com | [19d 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a9fbad5e]Init get response status: 200 -orderer.example.com | [0e7 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -peer1.org2.example.com | [216 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [279 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [298 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -orderer.example.com | [0e8 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Application/Readers -peer1.org2.example.com | [217 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [19e 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a9fbad5e]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [27a 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [0e9 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -peer0.org2.example.com | [19f 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a9fbad5e]Move state message COMPLETED -peer1.org1.example.com | [299 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [0ea 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Application/Writers -peer1.org2.example.com | [218 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [27b 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org2.example.com | [1a0 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a9fbad5e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [29a 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org2.example.com | [219 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | [0eb 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -peer1.org1.example.com | [29b 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [27c 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [1a1 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a9fbad5e]send state message COMPLETED -peer1.org2.example.com | [21a 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org1.example.com | [29c 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [0ec 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [27d 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org2.example.com | [21b 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org2.example.com | [1a2 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a9fbad5e]Received message COMPLETED from shim -peer1.org1.example.com | [29d 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org1.example.com | [27e 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | [0ed 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org2.example.com | [21c 12-12 14:19:40.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org1.example.com | [29e 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org2.example.com | [1a3 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a9fbad5e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [27f 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [0ee 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [29f 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org2.example.com | [1a4 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a9fbad5e-aeb0-41ae-b670-49747f5c2959]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [21d 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [280 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [1a5 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:a9fbad5e-aeb0-41ae-b670-49747f5c2959, channelID: -peer1.org2.example.com | [21e 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [0ef 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [281 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [2a0 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org2.example.com | [21f 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [0f0 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [282 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [2a1 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org2.example.com | [1a6 12-12 14:19:34.59 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 | [283 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [220 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [0f1 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [2a2 12-12 14:19:40.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -peer0.org2.example.com | [1a7 12-12 14:19:34.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 | [221 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [284 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [1a8 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled -orderer.example.com | [0f2 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [285 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [2a3 12-12 14:19:40.48 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -orderer.example.com | [0f3 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org2.example.com | [1a9 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes -peer1.org1.example.com | [2a4 12-12 14:19:40.48 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org1.example.com | [286 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [222 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [0f4 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [287 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [2a5 12-12 14:19:40.48 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org2.example.com | [1aa 12-12 14:19:34.59 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] -orderer.example.com | [0f5 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org1.example.com | [288 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [223 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [2a6 12-12 14:19:40.48 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org1.example.com | [289 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [2a7 12-12 14:19:40.48 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -orderer.example.com | [0f6 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [1ab 12-12 14:19:34.59 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.org1.example.com | [28a 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [224 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [0f7 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [2a8 12-12 14:19:40.48 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] -peer1.org2.example.com | [225 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [1ac 12-12 14:19:34.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' -orderer.example.com | [0f8 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org1.example.com | [28b 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [2a9 12-12 14:19:40.48 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/transientStore/] does not exist -orderer.example.com | [0f9 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [226 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [1ad 12-12 14:19:34.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 | [2aa 12-12 14:19:40.48 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/transientStore/] exists -orderer.example.com | [0fa 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [28c 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [2ab 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -orderer.example.com | [0fb 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [227 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [2ac 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func3 -> DEBU Deploying system CC, for chain -peer0.org1.example.com | [28d 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [0fc 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [1ae 12-12 14:19:34.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' -peer1.org1.example.com | [2ad 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [228 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [0fd 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [2ae 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [8ecb7161-1a41-49af-9c59-b684c1b00163] -orderer.example.com | [0fe 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [2af 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.1.0,txid=8ecb7161-1a41-49af-9c59-b684c1b00163,syscc=true,proposal=0x0,canname=cscc:1.1.0 -peer0.org1.example.com | [28e 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [0ff 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [2b0 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -peer1.org2.example.com | [229 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [28f 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [100 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [1af 12-12 14:19:34.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 | [2b1 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [101 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [1b0 12-12 14:19:34.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' -peer0.org1.example.com | [290 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [22a 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [2b2 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -orderer.example.com | [102 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [1b1 12-12 14:19:34.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' -orderer.example.com | [103 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [291 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [22b 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [2b3 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8ecb7161]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [292 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [104 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [1b2 12-12 14:19:34.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' -orderer.example.com | [105 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [293 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org1.example.com | [2b4 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [106 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [22c 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org1.example.com | [2b5 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8ecb7161]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [1b3 12-12 14:19:34.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' -orderer.example.com | [107 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -peer1.org1.example.com | [2b6 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ecb7161]Move state message INIT -peer0.org1.example.com | [294 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [1b4 12-12 14:19:34.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.org2.example.com | [22d 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [108 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org1.example.com | [2b7 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ecb7161]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [22e 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [1b5 12-12 14:19:34.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' -orderer.example.com | [109 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org1.example.com | [2b8 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [1b6 12-12 14:19:34.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 | [22f 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [295 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org1.example.com | [2b9 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ecb7161]sending state message INIT -peer0.org2.example.com | [1b7 12-12 14:19:34.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' -peer0.org1.example.com | [296 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [230 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [10a 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org1.example.com | [2ba 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ecb7161]Received message INIT from shim -peer0.org2.example.com | [1b8 12-12 14:19:34.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' -peer1.org2.example.com | [231 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [10b 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org1.example.com | [297 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [2bb 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8ecb7161]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [1b9 12-12 14:19:34.59 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 | [298 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [2bc 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [232 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [10c 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [1ba 12-12 14:19:34.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 | [2bd 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [8ecb7161]Received INIT, initializing chaincode -peer1.org2.example.com | [233 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [10d 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [299 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [1bb 12-12 14:19:34.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 | [2be 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org2.example.com | [1bc 12-12 14:19:40.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:34866 -peer0.org1.example.com | [29a 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer1.org1.example.com | [2bf 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ecb7161]Init get response status: 200 -peer1.org2.example.com | [234 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [1bd 12-12 14:19:40.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421aa8840 -orderer.example.com | [10e 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org1.example.com | [2c0 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ecb7161]Init succeeded. Sending COMPLETED -orderer.example.com | [10f 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [2c1 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ecb7161]Move state message COMPLETED -peer0.org2.example.com | [1be 12-12 14:19:40.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org1.example.com | [29b 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org1.example.com | [2c2 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8ecb7161]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [235 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [110 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [29c 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org2.example.com | [1bf 12-12 14:19:40.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [2c3 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ecb7161]send state message COMPLETED -peer1.org2.example.com | [236 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org1.example.com | [2c4 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ecb7161]Received message COMPLETED from shim -peer1.org2.example.com | [237 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org2.example.com | [1c0 12-12 14:19:40.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP cec57e02e224c3efa1075c97d8c3172cd78fec768b3b75afcf280ac60a493411} -orderer.example.com | [111 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [29d 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer1.org2.example.com | [238 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org1.example.com | [2c5 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ecb7161]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [112 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [239 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org2.example.com | [1c1 12-12 14:19:40.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [29e 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [113 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [23a 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org1.example.com | [2c6 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ecb7161-1a41-49af-9c59-b684c1b00163]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [29f 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org2.example.com | [23b 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [0] Transaction index [0] TxId [] marked as valid by state validator -peer1.org1.example.com | [2c7 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8ecb7161-1a41-49af-9c59-b684c1b00163, channelID:businesschannel -peer0.org2.example.com | [1c2 12-12 14:19:40.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [2c8 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [23c 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -orderer.example.com | [114 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org1.example.com | [2c9 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org2.example.com | [23d 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org1.example.com | [2a0 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -peer0.org2.example.com | [1c3 12-12 14:19:40.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4202d1770, header 0xc421aa88d0 -orderer.example.com | [115 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [2ca 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [8ecb7161-1a41-49af-9c59-b684c1b00163] -peer1.org2.example.com | [23e 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org2.example.com | [1c4 12-12 14:19:40.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -peer0.org1.example.com | [2a1 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org1.example.com | [2cb 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [116 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [23f 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage -peer0.org2.example.com | [1c5 12-12 14:19:40.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 9f20cad8457838224a8954394e4cb43e3c5d858d5551f7c5a6be2aacb4c9e7c5 -peer1.org1.example.com | [2cc 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [8daf0211-9bd1-4da8-a510-a8870d34aeb7] -peer0.org1.example.com | [2a2 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org2.example.com | [240 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [0] -peer1.org1.example.com | [2cd 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=8daf0211-9bd1-4da8-a510-a8870d34aeb7,syscc=true,proposal=0x0,canname=lscc:1.1.0 -orderer.example.com | [117 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [1c6 12-12 14:19:40.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 9f20cad8457838224a8954394e4cb43e3c5d858d5551f7c5a6be2aacb4c9e7c5 channel id: -peer1.org2.example.com | [241 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x75, 0x95, 0x22, 0x8d, 0x73, 0xc0, 0xf2, 0x8, 0x3f, 0x0, 0x84, 0x26, 0x3f, 0xe, 0x6, 0x25, 0xc, 0xfa, 0x4, 0x7a, 0x46, 0xa1, 0x94, 0xba, 0xa3, 0xa8, 0x4a, 0x7b, 0xc5, 0xb3, 0x54, 0xed} txOffsets= -peer1.org1.example.com | [2ce 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org1.example.com | [2a3 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org2.example.com | txId= locPointer=offset=38, bytesLength=12077 -peer1.org1.example.com | [2cf 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | ] -orderer.example.com | [118 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [2a4 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org2.example.com | [1c7 12-12 14:19:40.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 9f20cad8457838224a8954394e4cb43e3c5d858d5551f7c5a6be2aacb4c9e7c5 channel id: version: 1.1.0 -peer1.org1.example.com | [2d0 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer1.org2.example.com | [242 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12077] for tx ID: [] to index -peer0.org1.example.com | [2a5 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -orderer.example.com | [119 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org1.example.com | [2d1 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8daf0211]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [243 12-12 14:19:40.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12077] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [2a6 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] -peer0.org2.example.com | [1c8 12-12 14:19:40.59 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=9f20cad8457838224a8954394e4cb43e3c5d858d5551f7c5a6be2aacb4c9e7c5,syscc=true,proposal=0xc4202d1770,canname=cscc:1.1.0 -peer1.org1.example.com | [2d2 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [2a7 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/transientStore/] does not exist -orderer.example.com | [11a 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [1c9 12-12 14:19:40.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -peer1.org1.example.com | [2d3 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8daf0211]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [2a8 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/transientStore/] exists -peer1.org2.example.com | [244 12-12 14:19:40.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12121], isChainEmpty=[false], lastBlockNumber=[0] -peer1.org1.example.com | [2d4 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8daf0211]Move state message INIT -peer0.org1.example.com | [2a9 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer0.org2.example.com | [1ca 12-12 14:19:40.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [245 12-12 14:19:40.78 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 0 -peer1.org1.example.com | [2d5 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8daf0211]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [2aa 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func3 -> DEBU Deploying system CC, for chain -peer1.org2.example.com | [246 12-12 14:19:40.78 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 0 -orderer.example.com | [11b 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | [2d6 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [2ab 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [247 12-12 14:19:40.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [0] with 1 transaction(s) -peer0.org2.example.com | [1cb 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -peer1.org1.example.com | [2d7 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8daf0211]sending state message INIT -peer0.org1.example.com | [2ac 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [88dd4b18-2b95-4be5-af72-e9a704c8ac61] -peer0.org2.example.com | [1cc 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9f20cad8]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [2d8 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8daf0211]Received message INIT from shim -orderer.example.com | [11c 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [2ad 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.1.0,txid=88dd4b18-2b95-4be5-af72-e9a704c8ac61,syscc=true,proposal=0x0,canname=cscc:1.1.0 -peer1.org1.example.com | [2d9 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8daf0211]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [248 12-12 14:19:40.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database -peer0.org1.example.com | [2ae 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -peer1.org1.example.com | [2da 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [11d 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org1.example.com | [2af 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [2db 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [8daf0211]Received INIT, initializing chaincode -peer1.org2.example.com | [249 12-12 14:19:40.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database -orderer.example.com | [11e 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [2b0 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -peer1.org1.example.com | [2dc 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8daf0211]Init get response status: 200 -peer1.org2.example.com | [24a 12-12 14:19:40.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [1cd 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [2b1 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [88dd4b18]Inside sendExecuteMessage. Message INIT -orderer.example.com | [11f 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Writers -peer1.org1.example.com | [2dd 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8daf0211]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [1ce 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [24b 12-12 14:19:40.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer0.org1.example.com | [2b2 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [120 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Capabilities -peer0.org2.example.com | [1cf 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9f20cad8]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [24c 12-12 14:19:40.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [2b3 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [88dd4b18]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [2de 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8daf0211]Move state message COMPLETED -peer0.org2.example.com | [1d0 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9f20cad8]Move state message TRANSACTION -orderer.example.com | [121 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -peer0.org1.example.com | [2b4 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [88dd4b18]Move state message INIT -peer1.org1.example.com | [2df 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8daf0211]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [1d1 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9f20cad8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [122 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy ChannelCreationPolicy -peer0.org1.example.com | [2b5 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [88dd4b18]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [2e0 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8daf0211]send state message COMPLETED -peer0.org1.example.com | [2b6 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [1d2 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [24d 12-12 14:19:40.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to history database -peer1.org1.example.com | [2e1 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8daf0211]Received message COMPLETED from shim -orderer.example.com | [123 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] -peer0.org1.example.com | [2b7 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [88dd4b18]sending state message INIT -peer0.org2.example.com | [1d3 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9f20cad8]sending state message TRANSACTION -peer1.org1.example.com | [2e2 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8daf0211]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [124 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -peer0.org1.example.com | [2b8 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [88dd4b18]Received message INIT from shim -peer1.org2.example.com | [24e 12-12 14:19:40.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -peer0.org2.example.com | [1d4 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9f20cad8]Received message TRANSACTION from shim -peer1.org1.example.com | [2e3 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8daf0211-9bd1-4da8-a510-a8870d34aeb7]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [2b9 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [88dd4b18]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [1d5 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9f20cad8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [2e4 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8daf0211-9bd1-4da8-a510-a8870d34aeb7, channelID:businesschannel -orderer.example.com | [125 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -peer0.org1.example.com | [2ba 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [1d6 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9f20cad8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [2e5 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [24f 12-12 14:19:40.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -orderer.example.com | [126 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -peer0.org1.example.com | [2bb 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [88dd4b18]Received INIT, initializing chaincode -peer0.org2.example.com | [1d7 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -peer1.org1.example.com | [2e6 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org1.example.com | [2bc 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -orderer.example.com | [127 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -peer0.org2.example.com | [1d8 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -peer0.org1.example.com | [2bd 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [88dd4b18]Init get response status: 200 -orderer.example.com | [128 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -peer1.org1.example.com | [2e7 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [8daf0211-9bd1-4da8-a510-a8870d34aeb7] -peer1.org2.example.com | [250 12-12 14:19:40.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -peer0.org2.example.com | [1d9 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -peer0.org1.example.com | [2be 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [88dd4b18]Init succeeded. Sending COMPLETED -orderer.example.com | [129 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -peer1.org1.example.com | [2e8 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [251 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer0.org2.example.com | [1da 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] -peer0.org1.example.com | [2bf 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [88dd4b18]Move state message COMPLETED -peer1.org2.example.com | [252 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [dd82a295-9156-4ef6-ad28-7575e96e4010] -peer1.org1.example.com | [2e9 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [e659b413-2022-4991-9c36-7f66b7a6d9f1] -peer0.org2.example.com | [1db 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] does not exist -peer0.org1.example.com | [2c0 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [88dd4b18]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [12a 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -peer1.org1.example.com | [2ea 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=e659b413-2022-4991-9c36-7f66b7a6d9f1,syscc=true,proposal=0x0,canname=escc:1.1.0 -peer1.org2.example.com | [253 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.retrievePersistedConf.GetState.getState.GetState.GetState -> DEBU GetState(). ns=, key=resourcesconfigtx.CHANNEL_CONFIG_KEY -peer0.org2.example.com | [1dc 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] exists -peer0.org1.example.com | [2c1 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [88dd4b18]send state message COMPLETED -orderer.example.com | [12b 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -peer1.org1.example.com | [2eb 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer0.org2.example.com | [1dd 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -peer0.org1.example.com | [2c2 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [88dd4b18]Received message COMPLETED from shim -peer0.org2.example.com | [1de 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -peer0.org1.example.com | [2c3 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [88dd4b18]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [1df 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -peer1.org1.example.com | [2ec 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [12c 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy == -peer1.org2.example.com | [254 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [dd82a295-9156-4ef6-ad28-7575e96e4010] -peer0.org2.example.com | [1e0 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -orderer.example.com | [12d 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer1.org1.example.com | [2ed 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer0.org1.example.com | [2c4 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [88dd4b18-2b95-4be5-af72-e9a704c8ac61]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [1e1 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -orderer.example.com | [12e 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -peer1.org2.example.com | [255 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org1.example.com | [2c5 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:88dd4b18-2b95-4be5-af72-e9a704c8ac61, channelID:businesschannel -peer0.org2.example.com | [1e2 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -peer1.org1.example.com | [2ee 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e659b413]Inside sendExecuteMessage. Message INIT -orderer.example.com | [12f 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org2.example.com | [256 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [2c6 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [1e3 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc421b1f5a0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -peer1.org1.example.com | [2ef 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [130 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [2c7 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org1.example.com | [2f0 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e659b413]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [257 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [1e4 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -peer0.org1.example.com | [2c8 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [88dd4b18-2b95-4be5-af72-e9a704c8ac61] -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [2f1 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e659b413]Move state message INIT -peer0.org2.example.com | [1e5 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: -peer0.org1.example.com | [2c9 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | [2f2 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e659b413]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -peer0.org1.example.com | [2ca 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [245e2479-953f-41f9-bf31-191dadd7164e] -peer0.org2.example.com | [1e6 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() -peer1.org2.example.com | [258 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [2cb 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=245e2479-953f-41f9-bf31-191dadd7164e,syscc=true,proposal=0x0,canname=lscc:1.1.0 -peer1.org1.example.com | [2f3 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [2cc 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer1.org2.example.com | [259 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [1e7 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -peer0.org1.example.com | [2cd 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [2f4 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e659b413]sending state message INIT -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -peer0.org2.example.com | [1e8 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [0] -peer0.org1.example.com | [2ce 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -peer1.org2.example.com | [25a 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [1e9 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [2f5 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e659b413]Received message INIT from shim -peer0.org1.example.com | [2cf 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [245e2479]Inside sendExecuteMessage. Message INIT -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -peer1.org2.example.com | [25b 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org1.example.com | [2f6 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e659b413]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [2d0 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -peer0.org2.example.com | [1ea 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [0] -peer1.org2.example.com | [25c 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [2d1 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [245e2479]sendExecuteMsg trigger event INIT -orderer.example.com | OwJpoynNCyKsWozuVw== -peer1.org1.example.com | [2f7 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [1eb 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org2.example.com | [25d 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [2d2 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [245e2479]Move state message INIT -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [2f8 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e659b413]Received INIT, initializing chaincode -peer0.org1.example.com | [2d3 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [245e2479]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [25e 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [131 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e4d8 gate 1513088379290961800 evaluation starts -peer0.org1.example.com | [2d4 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [1ec 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -orderer.example.com | [132 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4d8 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [2d5 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [245e2479]sending state message INIT -peer1.org2.example.com | [25f 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [133 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4d8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org1.example.com | [2f9 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer0.org2.example.com | [1ed 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer0.org1.example.com | [2d6 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [245e2479]Received message INIT from shim -orderer.example.com | [134 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4d8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -peer1.org1.example.com | [2fa 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e659b413]Init get response status: 200 -peer0.org1.example.com | [2d7 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [245e2479]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [260 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [1ee 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer0.org1.example.com | [2d8 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [135 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4d8 principal evaluation fails -peer1.org2.example.com | [261 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [2fb 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e659b413]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [2d9 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [245e2479]Received INIT, initializing chaincode -peer0.org2.example.com | [1ef 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [136 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e4d8 gate 1513088379290961800 evaluation fails -peer1.org1.example.com | [2fc 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e659b413]Move state message COMPLETED -peer1.org2.example.com | [262 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [2da 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [245e2479]Init get response status: 200 -peer0.org2.example.com | [1f0 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer1.org1.example.com | [2fd 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e659b413]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [2db 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [245e2479]Init succeeded. Sending COMPLETED -orderer.example.com | [137 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [263 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [2dc 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [245e2479]Move state message COMPLETED -orderer.example.com | [138 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [1f1 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer0.org1.example.com | [2dd 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [245e2479]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [264 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [2fe 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e659b413]send state message COMPLETED -peer0.org1.example.com | [2de 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [245e2479]send state message COMPLETED -peer0.org2.example.com | [1f2 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:1 channel_group: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer1.org2.example.com | [265 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [139 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -peer0.org1.example.com | [2df 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [245e2479]Received message COMPLETED from shim -peer0.org2.example.com | [1f3 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org1.example.com | [2e0 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [245e2479]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [1f4 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [266 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [2e1 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [245e2479-953f-41f9-bf31-191dadd7164e]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [1f5 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [2ff 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e659b413]Received message COMPLETED from shim -peer1.org1.example.com | [300 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e659b413]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [301 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e659b413-2022-4991-9c36-7f66b7a6d9f1]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [302 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e659b413-2022-4991-9c36-7f66b7a6d9f1, channelID:businesschannel -peer1.org1.example.com | [303 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [304 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -peer0.org1.example.com | [2e2 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:245e2479-953f-41f9-bf31-191dadd7164e, channelID:businesschannel -peer0.org2.example.com | [1f6 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [13a 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e4e8 gate 1513088379291658000 evaluation starts -peer1.org2.example.com | [267 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [2e3 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [1f7 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [2e4 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -orderer.example.com | [13b 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4e8 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | [305 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [e659b413-2022-4991-9c36-7f66b7a6d9f1] -peer1.org2.example.com | [268 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [1f8 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [2e5 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [245e2479-953f-41f9-bf31-191dadd7164e] -orderer.example.com | [13c 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4e8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org1.example.com | [306 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [1f9 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [2e6 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [269 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [1fa 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [13d 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -peer1.org1.example.com | [307 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [10ffc698-0dd2-484a-bbb9-42f30520d67b] -peer1.org2.example.com | [26a 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [1fb 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [13e 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4e8 principal matched by identity 0 -peer0.org1.example.com | [2e7 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b860a85d-e013-4d5f-a516-c56d9b5affd7] -peer1.org2.example.com | [26b 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -peer0.org2.example.com | [1fc 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [308 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=10ffc698-0dd2-484a-bbb9-42f30520d67b,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org1.example.com | [2e8 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=b860a85d-e013-4d5f-a516-c56d9b5affd7,syscc=true,proposal=0x0,canname=escc:1.1.0 -peer1.org2.example.com | [26c 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [1fd 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [13f 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 c6 f2 4b 6b 1b ea 52 78 7f bb d0 74 0a 59 01 19 |..Kk..Rx...t.Y..| -peer1.org1.example.com | [309 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer0.org1.example.com | [2e9 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer1.org2.example.com | [26d 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [1fe 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [30a 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [2ea 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | 00000010 15 1d 23 c0 05 d6 7e 53 2f 24 e1 27 01 fa 7f 91 |..#...~S/$.'....| -peer1.org2.example.com | [26e 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [1ff 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [140 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8d c5 c4 b5 83 d5 c2 a1 5a 6b 19 |0E.!.........Zk.| -peer0.org1.example.com | [2eb 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer1.org1.example.com | [30b 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer0.org2.example.com | [200 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [2ec 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b860a85d]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [26f 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | 00000010 66 c1 b3 39 13 60 ef 56 00 ca 1e 70 24 c2 47 d0 |f..9.`.V...p$.G.| -peer1.org1.example.com | [30c 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [10ffc698]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [201 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [270 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | 00000020 a7 27 ef d6 d7 02 20 12 0e 17 ac 06 59 31 b2 6e |.'.... .....Y1.n| -peer0.org2.example.com | [202 12-12 14:19:40.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [30d 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [2ed 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [30e 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [10ffc698]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [2ee 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b860a85d]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [203 12-12 14:19:40.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | 00000030 98 c3 25 6e 9f 68 b5 03 28 25 0a cb 82 05 ab 9d |..%n.h..(%......| -peer1.org1.example.com | [30f 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10ffc698]Move state message INIT -peer1.org2.example.com | [271 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | 00000040 f1 38 8d 00 72 62 b2 |.8..rb.| -peer0.org1.example.com | [2ef 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b860a85d]Move state message INIT -peer1.org1.example.com | [310 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10ffc698]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [204 12-12 14:19:40.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [272 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org1.example.com | [311 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [2f0 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b860a85d]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [141 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4e8 principal evaluation succeeds for identity 0 -peer0.org2.example.com | [205 12-12 14:19:40.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [312 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10ffc698]sending state message INIT -orderer.example.com | [142 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e4e8 gate 1513088379291658000 evaluation succeeds -peer0.org1.example.com | [2f1 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [206 12-12 14:19:40.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [313 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10ffc698]Received message INIT from shim -peer1.org2.example.com | [273 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [2f2 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b860a85d]sending state message INIT -orderer.example.com | [143 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [314 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10ffc698]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [207 12-12 14:19:40.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [2f3 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b860a85d]Received message INIT from shim -peer1.org1.example.com | [315 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [144 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [274 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org1.example.com | [2f4 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b860a85d]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [208 12-12 14:19:40.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [275 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org2.example.com | [209 12-12 14:19:40.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org1.example.com | [316 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [10ffc698]Received INIT, initializing chaincode -peer0.org1.example.com | [2f5 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [145 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/ChannelCreationPolicy -peer1.org2.example.com | [276 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org2.example.com | [20a 12-12 14:19:40.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [146 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy -peer0.org1.example.com | [2f6 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b860a85d]Received INIT, initializing chaincode -peer1.org1.example.com | [317 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10ffc698]Init get response status: 200 -peer1.org2.example.com | [277 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org2.example.com | [20b 12-12 14:19:40.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [318 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10ffc698]Init succeeded. Sending COMPLETED -orderer.example.com | [147 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [2f7 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer1.org1.example.com | [319 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10ffc698]Move state message COMPLETED -peer1.org2.example.com | [278 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [20c 12-12 14:19:40.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [31a 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10ffc698]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [148 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [279 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [2f8 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b860a85d]Init get response status: 200 -peer0.org2.example.com | [20d 12-12 14:19:40.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [31b 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10ffc698]send state message COMPLETED -peer1.org2.example.com | [27a 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org1.example.com | [2f9 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b860a85d]Init succeeded. Sending COMPLETED -orderer.example.com | [149 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [27b 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [20e 12-12 14:19:40.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [31c 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10ffc698]Received message COMPLETED from shim -orderer.example.com | [14a 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [2fa 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b860a85d]Move state message COMPLETED -peer1.org1.example.com | [31d 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10ffc698]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [14b 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [20f 12-12 14:19:40.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -peer0.org1.example.com | [2fb 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b860a85d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [27c 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [14c 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [2fc 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b860a85d]send state message COMPLETED -peer0.org2.example.com | [210 12-12 14:19:40.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [14d 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [31e 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10ffc698-0dd2-484a-bbb9-42f30520d67b]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [2fd 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b860a85d]Received message COMPLETED from shim -peer1.org2.example.com | [27d 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org2.example.com | [211 12-12 14:19:40.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [2fe 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b860a85d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [14e 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org1.example.com | [31f 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:10ffc698-0dd2-484a-bbb9-42f30520d67b, channelID:businesschannel -peer1.org2.example.com | [27e 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [212 12-12 14:19:40.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org1.example.com | [2ff 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b860a85d-e013-4d5f-a516-c56d9b5affd7]HandleMessage- COMPLETED. Notify -orderer.example.com | [14f 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [320 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [213 12-12 14:19:40.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [300 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b860a85d-e013-4d5f-a516-c56d9b5affd7, channelID:businesschannel -peer1.org2.example.com | [27f 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [321 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -orderer.example.com | [150 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [214 12-12 14:19:40.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [301 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [280 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [322 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [10ffc698-0dd2-484a-bbb9-42f30520d67b] -peer0.org2.example.com | [215 12-12 14:19:40.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [151 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [302 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -peer1.org2.example.com | [281 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [323 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [303 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [b860a85d-e013-4d5f-a516-c56d9b5affd7] -peer1.org2.example.com | [282 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [216 12-12 14:19:40.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [152 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [304 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [217 12-12 14:19:40.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [324 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [ee4ca5f3-dcd1-437f-81f8-ccbce976943d] -peer0.org1.example.com | [305 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b2e99fa8-0326-4090-a9e5-f2e52bca410e] -peer1.org2.example.com | [283 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [153 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [325 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=ee4ca5f3-dcd1-437f-81f8-ccbce976943d,syscc=true,proposal=0x0,canname=qscc:1.1.0 -peer0.org2.example.com | [218 12-12 14:19:40.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org1.example.com | [306 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=b2e99fa8-0326-4090-a9e5-f2e52bca410e,syscc=true,proposal=0x0,canname=vscc:1.1.0 -orderer.example.com | [154 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [284 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [219 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [21a 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | [155 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [307 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer1.org1.example.com | [326 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 -peer1.org2.example.com | [285 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [21b 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | [156 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [308 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [286 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [327 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [157 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [328 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -peer0.org2.example.com | [21c 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [287 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [309 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer1.org1.example.com | [329 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ee4ca5f3]Inside sendExecuteMessage. Message INIT -orderer.example.com | [158 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [21d 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [288 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [32a 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [30a 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b2e99fa8]Inside sendExecuteMessage. Message INIT -orderer.example.com | [159 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [32b 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ee4ca5f3]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [21e 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [289 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [32c 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee4ca5f3]Move state message INIT -orderer.example.com | [15a 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [15b 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [21f 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org2.example.com | [28a 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [30b 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [220 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [28b 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [32d 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ee4ca5f3]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [30c 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b2e99fa8]sendExecuteMsg trigger event INIT -orderer.example.com | [15c 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [221 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [28c 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [30d 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b2e99fa8]Move state message INIT -peer0.org2.example.com | [222 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [32e 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [28d 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [15d 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [30e 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b2e99fa8]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [32f 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee4ca5f3]sending state message INIT -peer0.org2.example.com | [223 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [30f 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [28e 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org1.example.com | [330 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee4ca5f3]Received message INIT from shim -peer0.org2.example.com | [224 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [15e 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [310 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b2e99fa8]sending state message INIT -peer1.org1.example.com | [331 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee4ca5f3]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [28f 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [15f 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608FBCABFD10522...7F3B065704521FA5F949E74504926CE2 -peer0.org1.example.com | [311 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2e99fa8]Received message INIT from shim -peer0.org2.example.com | [225 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [332 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [160 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: 6E5205D93CAF3EF9AD0E608C2039E595E29183A0937C5FB659081788DBAD54C1 -peer0.org1.example.com | [312 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b2e99fa8]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [226 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [290 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [313 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [161 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [333 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [ee4ca5f3]Received INIT, initializing chaincode -peer0.org2.example.com | [227 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [291 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [314 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b2e99fa8]Received INIT, initializing chaincode -peer1.org1.example.com | [334 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org2.example.com | [292 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [228 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [162 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [335 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee4ca5f3]Init get response status: 200 -peer0.org1.example.com | [315 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2e99fa8]Init get response status: 200 -peer0.org2.example.com | [229 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [336 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee4ca5f3]Init succeeded. Sending COMPLETED -orderer.example.com | [163 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [293 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org1.example.com | [316 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2e99fa8]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [337 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee4ca5f3]Move state message COMPLETED -peer1.org2.example.com | [294 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org2.example.com | [22a 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [164 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [338 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee4ca5f3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [317 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2e99fa8]Move state message COMPLETED -peer0.org2.example.com | [22b 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [295 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [165 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AC9060A1708041A0608FBCABFD10522...98FA05F37868177018935CDD18083256 -peer1.org1.example.com | [339 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee4ca5f3]send state message COMPLETED -peer0.org1.example.com | [318 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b2e99fa8]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [296 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org1.example.com | [319 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2e99fa8]send state message COMPLETED -peer1.org1.example.com | [33a 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee4ca5f3]Received message COMPLETED from shim -orderer.example.com | [166 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: 518C30C9A19A965A6C1451DB08830CEC4DE525F9BA879E8A1A2D46A463A782CB -peer0.org1.example.com | [31a 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b2e99fa8]Received message COMPLETED from shim -peer0.org2.example.com | [22c 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org1.example.com | [33b 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ee4ca5f3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [297 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [167 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -peer0.org1.example.com | [31b 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b2e99fa8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [22d 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | [33c 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ee4ca5f3-dcd1-437f-81f8-ccbce976943d]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [31c 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b2e99fa8-0326-4090-a9e5-f2e52bca410e]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [298 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [22e 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [168 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer1.org1.example.com | [33d 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ee4ca5f3-dcd1-437f-81f8-ccbce976943d, channelID:businesschannel -peer1.org2.example.com | [299 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [22f 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [31d 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b2e99fa8-0326-4090-a9e5-f2e52bca410e, channelID:businesschannel -peer1.org1.example.com | [33e 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | [169 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -peer1.org2.example.com | [29a 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer1.org1.example.com | [33f 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer0.org2.example.com | [230 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [16a 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [31e 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [231 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org2.example.com | [29b 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org1.example.com | [340 12-12 14:19:40.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [ee4ca5f3-dcd1-437f-81f8-ccbce976943d] -orderer.example.com | [16b 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -peer0.org1.example.com | [31f 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer0.org2.example.com | [232 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [16c 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org1.example.com | [341 12-12 14:19:40.50 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled -peer1.org2.example.com | [29c 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org1.example.com | [320 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [b2e99fa8-0326-4090-a9e5-f2e52bca410e] -orderer.example.com | [16d 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [342 12-12 14:19:40.50 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry -peer0.org2.example.com | [233 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org2.example.com | [29d 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer1.org1.example.com | [343 12-12 14:19:40.50 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [234 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -orderer.example.com | MIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw -peer1.org2.example.com | [29e 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org1.example.com | [321 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [344 12-12 14:19:40.50 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry -peer0.org2.example.com | [235 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [322 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [63c2b686-5cc4-4995-bbfd-10c0449e13bb] -peer1.org2.example.com | [29f 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org1.example.com | [345 12-12 14:19:40.50 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [236 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [323 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=63c2b686-5cc4-4995-bbfd-10c0449e13bb,syscc=true,proposal=0x0,canname=qscc:1.1.0 -peer1.org2.example.com | [2a0 12-12 14:19:40.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org1.example.com | [346 12-12 14:19:40.50 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully -peer0.org1.example.com | [324 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 -peer0.org2.example.com | [237 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org1.example.com | [347 12-12 14:19:40.50 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE -peer1.org2.example.com | [2a1 12-12 14:19:40.80 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org2.example.com | [238 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [325 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [2a2 12-12 14:19:40.80 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org2.example.com | [239 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org1.example.com | [348 12-12 14:19:40.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e4ab66bf]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [23a 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -peer1.org2.example.com | [2a3 12-12 14:19:40.80 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org2.example.com | [23b 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [0] Transaction index [0] TxId [] marked as valid by state validator -peer0.org1.example.com | [326 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -peer1.org1.example.com | [349 12-12 14:19:40.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e4ab66bf]Move state message COMPLETED -peer1.org2.example.com | [2a4 12-12 14:19:40.80 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org2.example.com | [23c 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -orderer.example.com | hkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN -peer0.org1.example.com | [327 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [63c2b686]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [34a 12-12 14:19:40.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e4ab66bf]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [2a5 12-12 14:19:40.80 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org2.example.com | [23d 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org1.example.com | [34b 12-12 14:19:40.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e4ab66bf]send state message COMPLETED -peer0.org1.example.com | [328 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | tV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw -peer1.org2.example.com | [2a6 12-12 14:19:40.80 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] -peer0.org2.example.com | [23e 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE -peer1.org1.example.com | [34c 12-12 14:19:40.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e4ab66bf]Received message COMPLETED from shim -peer1.org2.example.com | [2a7 12-12 14:19:40.80 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/transientStore/] does not exist -peer0.org1.example.com | [329 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [63c2b686]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [23f 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage -peer1.org2.example.com | [2a8 12-12 14:19:40.80 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/transientStore/] exists -peer0.org1.example.com | [32a 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [63c2b686]Move state message INIT -orderer.example.com | +EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q -peer1.org1.example.com | [34d 12-12 14:19:40.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e4ab66bf]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [240 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [0] -peer1.org2.example.com | [2a9 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer0.org1.example.com | [32b 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [63c2b686]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [241 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x75, 0x95, 0x22, 0x8d, 0x73, 0xc0, 0xf2, 0x8, 0x3f, 0x0, 0x84, 0x26, 0x3f, 0xe, 0x6, 0x25, 0xc, 0xfa, 0x4, 0x7a, 0x46, 0xa1, 0x94, 0xba, 0xa3, 0xa8, 0x4a, 0x7b, 0xc5, 0xb3, 0x54, 0xed} txOffsets= -peer1.org2.example.com | [2aa 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func3 -> DEBU Deploying system CC, for chain -peer1.org1.example.com | [34e 12-12 14:19:40.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e4ab66bff4ad17922976760321c54e2fb2bb4fe9b75ff51b7ed80b5a06ec97d7]HandleMessage- COMPLETED. Notify -orderer.example.com | XZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd -peer0.org2.example.com | txId= locPointer=offset=38, bytesLength=12077 -peer1.org2.example.com | [2ab 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [32c 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [34f 12-12 14:19:40.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e4ab66bff4ad17922976760321c54e2fb2bb4fe9b75ff51b7ed80b5a06ec97d7, channelID: -peer0.org2.example.com | ] -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [2ac 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [aa5919df-1f19-4962-8c75-0f0aa9a43fe1] -peer0.org1.example.com | [32d 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [63c2b686]sending state message INIT -peer0.org2.example.com | [242 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12077] for tx ID: [] to index -peer1.org2.example.com | [2ad 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.1.0,txid=aa5919df-1f19-4962-8c75-0f0aa9a43fe1,syscc=true,proposal=0x0,canname=cscc:1.1.0 -orderer.example.com | [16e 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e600 gate 1513088379303507800 evaluation starts -peer1.org1.example.com | [350 12-12 14:19:40.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [243 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12077] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org2.example.com | [2ae 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -peer0.org1.example.com | [32e 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [63c2b686]Received message INIT from shim -orderer.example.com | [16f 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e600 signed by 0 principal evaluation starts (used [false]) -peer0.org2.example.com | [244 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12121], isChainEmpty=[false], lastBlockNumber=[0] -peer1.org2.example.com | [2af 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [351 12-12 14:19:40.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [245 12-12 14:19:40.62 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 0 -peer0.org1.example.com | [32f 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [63c2b686]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [2b0 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -peer0.org2.example.com | [246 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 0 -peer1.org2.example.com | [2b1 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [aa5919df]Inside sendExecuteMessage. Message INIT -orderer.example.com | [170 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e600 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624b6741774942416749515a514232667a33766f54575838334f36754e592b796a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d566f58445449334d5449784d4441344e4441784d566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415273516c4d6e6a7836777a4c5133455649357a4357785845485248413046674a6f6148586363505a595a4d746743534b684e0a7456346d424f31762b785565392b313755394f2f467037694b54616c68622f65676e71776f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344416b43387863556452672b44333878734373535a64304b343343724f450a2b455833697a4773554d7931527a414b42676771686b6a4f5051514441674e494144424641694541676e494d4e3768725a5370345561565238752b65746f2f710a585a4e4d476a6b7664614150486f316176673843494736454a4336356e6f6a684b6c754f53484841596b6a72356347646d6159455249576644737935544667640a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org2.example.com | [247 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [0] with 1 transaction(s) -peer1.org1.example.com | [352 12-12 14:19:40.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [2b2 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [171 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -peer0.org2.example.com | [248 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database -peer1.org2.example.com | [2b3 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [aa5919df]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [330 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [172 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -peer1.org2.example.com | [2b4 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aa5919df]Move state message INIT -peer1.org1.example.com | [353 12-12 14:19:40.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:52016) -peer0.org2.example.com | [249 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [331 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [63c2b686]Received INIT, initializing chaincode -orderer.example.com | [173 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e600 principal matched by identity 0 -peer1.org2.example.com | [2b5 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [aa5919df]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [24a 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [332 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -orderer.example.com | [174 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 51 8c 30 c9 a1 9a 96 5a 6c 14 51 db 08 83 0c ec |Q.0....Zl.Q.....| -peer1.org1.example.com | [354 12-12 14:19:46.49 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 | [2b6 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 00000010 4d e5 25 f9 ba 87 9e 8a 1a 2d 46 a4 63 a7 82 cb |M.%......-F.c...| -peer0.org1.example.com | [333 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [63c2b686]Init get response status: 200 -peer0.org2.example.com | [24b 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer1.org2.example.com | [2b7 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aa5919df]sending state message INIT -orderer.example.com | [175 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ad 0a 7b 97 33 f0 cf 9a 56 81 b1 |0E.!...{.3...V..| -peer0.org1.example.com | [334 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [63c2b686]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [355 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -peer1.org2.example.com | [2b8 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aa5919df]Received message INIT from shim -orderer.example.com | 00000010 54 a6 3c d4 f2 8f 59 c2 08 38 10 aa 50 7a d0 05 |T.<...Y..8..Pz..| -peer1.org1.example.com | [356 12-12 14:19:46.50 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 | [24c 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [2b9 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [aa5919df]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | 00000020 26 49 b4 da 48 02 20 5f 50 05 82 a9 44 95 b9 9b |&I..H. _P...D...| -peer1.org1.example.com | [357 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -peer1.org2.example.com | [2ba 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [24d 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to history database -peer0.org1.example.com | [335 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [63c2b686]Move state message COMPLETED -orderer.example.com | 00000030 78 05 eb 5b b0 53 81 ad b9 57 5b 62 ea 96 c1 ea |x..[.S...W[b....| -peer0.org2.example.com | [24e 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -peer1.org2.example.com | [2bb 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [aa5919df]Received INIT, initializing chaincode -peer1.org1.example.com | [358 12-12 14:19:46.50 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.org1.example.com | [336 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [63c2b686]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 00000040 36 7c b2 f5 dc f2 bb |6|.....| -peer1.org2.example.com | [2bc 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer1.org1.example.com | [359 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -peer0.org2.example.com | [24f 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org1.example.com | [337 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [63c2b686]send state message COMPLETED -orderer.example.com | [176 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e600 principal evaluation succeeds for identity 0 -peer1.org2.example.com | [2bd 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aa5919df]Init get response status: 200 -peer0.org1.example.com | [338 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [63c2b686]Received message COMPLETED from shim -peer1.org1.example.com | [35a 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] -orderer.example.com | [177 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e600 gate 1513088379303507800 evaluation succeeds -peer1.org1.example.com | [35b 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] -peer0.org2.example.com | [250 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -peer0.org1.example.com | [339 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [63c2b686]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [178 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [2be 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aa5919df]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [35c 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -orderer.example.com | [179 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [33a 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [63c2b686-5cc4-4995-bbfd-10c0449e13bb]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [2bf 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aa5919df]Move state message COMPLETED -orderer.example.com | [17a 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers -peer0.org2.example.com | [251 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer1.org1.example.com | [35d 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | [17b 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -peer1.org2.example.com | [2c0 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [aa5919df]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [33b 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:63c2b686-5cc4-4995-bbfd-10c0449e13bb, channelID:businesschannel -peer1.org1.example.com | [35e 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421acc9a0 env 0xc421955500 txn 0 -peer0.org2.example.com | [252 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [338e06ff-a767-4796-82a1-3f9b44b156d9] -peer1.org2.example.com | [2c1 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aa5919df]send state message COMPLETED -peer0.org1.example.com | [33c 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [35f 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421955500 -orderer.example.com | [17c 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -peer0.org2.example.com | [253 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.retrievePersistedConf.GetState.getState.GetState.GetState -> DEBU GetState(). ns=, key=resourcesconfigtx.CHANNEL_CONFIG_KEY -peer0.org1.example.com | [33d 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer1.org1.example.com | [360 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\375\312\277\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN\ntV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE\n+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q\nXZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd\n-----END CERTIFICATE-----\n\022\030\365b,\257\227\022\240f\314\316\352\017\301\245\365\335)\344\217\0214\022\362\336" -peer1.org2.example.com | [2c2 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aa5919df]Received message COMPLETED from shim -peer0.org2.example.com | [254 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [338e06ff-a767-4796-82a1-3f9b44b156d9] -peer0.org1.example.com | [33e 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [63c2b686-5cc4-4995-bbfd-10c0449e13bb] -peer1.org1.example.com | [361 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org2.example.com | [255 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | [2c3 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [aa5919df]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [33f 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled -peer1.org1.example.com | [362 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [17d 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -peer0.org1.example.com | [340 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [2c4 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [aa5919df-1f19-4962-8c75-0f0aa9a43fe1]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [363 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP d0f63d3eb6e4bcf73d7a1a7143e3dc9880a9a26b8aeb2aa8d323b803c43c142a} -peer0.org2.example.com | [256 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [364 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [2c5 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:aa5919df-1f19-4962-8c75-0f0aa9a43fe1, channelID:businesschannel -peer0.org1.example.com | [341 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [257 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [17e 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org1.example.com | [365 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [2c6 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [258 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [17f 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [366 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422236000, header channel_header:"\010\001\032\006\010\375\312\277\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN\ntV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE\n+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q\nXZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd\n-----END CERTIFICATE-----\n\022\030\365b,\257\227\022\240f\314\316\352\017\301\245\365\335)\344\217\0214\022\362\336" -peer0.org1.example.com | [342 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry -peer1.org2.example.com | [2c7 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org1.example.com | [367 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [259 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [343 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [180 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [368 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [25a 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [2c8 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [aa5919df-1f19-4962-8c75-0f0aa9a43fe1] -peer0.org1.example.com | [344 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully -peer1.org1.example.com | [369 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [25b 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [2c9 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [181 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [36a 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [2ca 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [9da3acac-6f73-4c44-9038-f2956091e78c] -peer0.org1.example.com | [345 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit -peer0.org2.example.com | [25c 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [36b 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [182 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [25d 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [2cb 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=9da3acac-6f73-4c44-9038-f2956091e78c,syscc=true,proposal=0x0,canname=lscc:1.1.0 -peer0.org1.example.com | [346 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2496ccf0]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [36c 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [183 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [25e 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [347 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2496ccf0]Move state message COMPLETED -peer0.org2.example.com | [25f 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [36d 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [260 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [2cc 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org1.example.com | [348 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2496ccf0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [261 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [184 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org2.example.com | [2cd 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [349 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2496ccf0]send state message COMPLETED -orderer.example.com | [185 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [36e 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [2ce 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org2.example.com | [262 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [34a 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2496ccf0]Received message COMPLETED from shim -orderer.example.com | [186 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [263 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [34b 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2496ccf0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [2cf 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9da3acac]Inside sendExecuteMessage. Message INIT -orderer.example.com | [187 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [264 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [36f 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [2d0 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [34c 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2496ccf07183b996b1da359017200bd8c2b36638a18be3f0541d3b94f10108a5]HandleMessage- COMPLETED. Notify -orderer.example.com | [188 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [265 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [370 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [34d 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:2496ccf07183b996b1da359017200bd8c2b36638a18be3f0541d3b94f10108a5, channelID: -peer1.org2.example.com | [2d1 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9da3acac]sendExecuteMsg trigger event INIT -orderer.example.com | [189 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [371 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [34e 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [266 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [18a 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [2d2 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9da3acac]Move state message INIT -peer0.org1.example.com | [34f 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org1.example.com | [372 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [18b 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [267 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -peer1.org2.example.com | [2d3 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9da3acac]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [373 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [350 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [18c 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [268 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | [2d4 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [374 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [18d 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [351 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36666) -peer0.org2.example.com | [269 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [18e 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org1.example.com | [375 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [2d5 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9da3acac]sending state message INIT -peer0.org1.example.com | [352 12-12 14:19:46.33 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 -orderer.example.com | [18f 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer1.org1.example.com | [376 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [26a 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [353 12-12 14:19:46.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -peer1.org2.example.com | [2d6 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9da3acac]Received message INIT from shim -peer0.org1.example.com | [354 12-12 14:19:46.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... -orderer.example.com | [190 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -peer1.org2.example.com | [2d7 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9da3acac]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [377 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [355 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -peer0.org2.example.com | [26b 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [2d8 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [191 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [378 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -peer0.org1.example.com | [356 12-12 14:19:46.37 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 | [26c 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [357 12-12 14:19:46.38 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -peer0.org2.example.com | [26d 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [2d9 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [9da3acac]Received INIT, initializing chaincode -peer1.org1.example.com | [379 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer1.org2.example.com | [2da 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9da3acac]Init get response status: 200 -peer0.org1.example.com | [358 12-12 14:19:46.39 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] -peer0.org2.example.com | [26e 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [37a 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [359 12-12 14:19:46.39 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] -orderer.example.com | MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -peer1.org2.example.com | [2db 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9da3acac]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [35a 12-12 14:19:46.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [37c 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [26f 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [35b 12-12 14:19:46.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org2.example.com | [2dc 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9da3acac]Move state message COMPLETED -peer0.org2.example.com | [270 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [37d 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [35c 12-12 14:19:46.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc420208180 env 0xc422523230 txn 0 -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -peer0.org1.example.com | [35d 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422523230 -peer1.org2.example.com | [2dd 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9da3acac]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [37b 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] -peer0.org2.example.com | [271 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [35e 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\375\312\277\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN\ntV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE\n+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q\nXZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd\n-----END CERTIFICATE-----\n\022\030\365b,\257\227\022\240f\314\316\352\017\301\245\365\335)\344\217\0214\022\362\336" -peer1.org2.example.com | [2de 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9da3acac]send state message COMPLETED -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org2.example.com | [2df 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9da3acac]Received message COMPLETED from shim -peer0.org2.example.com | [272 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -peer0.org1.example.com | [35f 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org1.example.com | [37e 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [273 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [360 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [37f 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -peer1.org2.example.com | [2e0 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9da3acac]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [361 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP d0f63d3eb6e4bcf73d7a1a7143e3dc9880a9a26b8aeb2aa8d323b803c43c142a} -peer0.org2.example.com | [274 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org1.example.com | [380 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [2e1 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9da3acac-6f73-4c44-9038-f2956091e78c]HandleMessage- COMPLETED. Notify -orderer.example.com | ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -peer0.org1.example.com | [362 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [2e2 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9da3acac-6f73-4c44-9038-f2956091e78c, channelID:businesschannel -peer0.org2.example.com | [275 12-12 14:19:40.63 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [363 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -peer1.org1.example.com | [381 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [364 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42184c000, header channel_header:"\010\001\032\006\010\375\312\277\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN\ntV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE\n+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q\nXZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd\n-----END CERTIFICATE-----\n\022\030\365b,\257\227\022\240f\314\316\352\017\301\245\365\335)\344\217\0214\022\362\336" -peer0.org2.example.com | [276 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [382 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -peer0.org1.example.com | [365 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [277 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [2e3 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [383 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer0.org1.example.com | [366 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -peer1.org1.example.com | [384 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org2.example.com | [278 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [2e4 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org1.example.com | [367 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] -peer0.org2.example.com | [279 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [385 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [368 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | 0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= -peer1.org1.example.com | [386 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [27a 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [369 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [2e5 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [9da3acac-6f73-4c44-9038-f2956091e78c] -peer0.org1.example.com | [36a 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [27b 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org1.example.com | [387 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [36b 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [192 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [27c 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [27d 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org1.example.com | [388 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [2e6 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [36c 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | [389 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [27e 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [36d 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [2e7 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [bc28b189-060f-4685-a023-799d3c51aa03] -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [38a 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [27f 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org1.example.com | [38b 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [36e 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [2e8 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=bc28b189-060f-4685-a023-799d3c51aa03,syscc=true,proposal=0x0,canname=escc:1.1.0 -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -peer0.org2.example.com | [280 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | [36f 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org1.example.com | [38c 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [2e9 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer0.org2.example.com | [281 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org1.example.com | [38d 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] -peer0.org1.example.com | [370 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -peer1.org2.example.com | [2ea 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [38e 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [282 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [2eb 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org1.example.com | [38f 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org1.example.com | [371 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [283 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [2ec 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bc28b189]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [390 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -peer0.org1.example.com | [372 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer1.org1.example.com | [391 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [2ed 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [284 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -peer0.org1.example.com | [373 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [2ee 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bc28b189]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [392 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -peer0.org1.example.com | [374 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [285 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [2ef 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bc28b189]Move state message INIT -peer0.org1.example.com | [375 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [393 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [2f0 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bc28b189]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [376 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [286 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [193 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [394 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [377 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer1.org2.example.com | [2f1 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [287 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | [395 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [378 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [288 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [2f2 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bc28b189]sending state message INIT -peer1.org1.example.com | [396 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [379 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -peer0.org2.example.com | [289 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [2f3 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bc28b189]Received message INIT from shim -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org1.example.com | [397 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [37a 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [2f4 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bc28b189]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -peer0.org2.example.com | [28a 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [398 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [37b 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org2.example.com | [2f5 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [28b 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [37c 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [28c 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [37d 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -peer1.org1.example.com | [399 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [2f6 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [bc28b189]Received INIT, initializing chaincode -peer0.org2.example.com | [28d 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [37e 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org2.example.com | [2f7 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer1.org1.example.com | [39a 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org2.example.com | [28e 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org1.example.com | [37f 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -peer1.org1.example.com | [39b 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [380 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [2f8 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bc28b189]Init get response status: 200 -peer0.org2.example.com | [28f 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [381 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [39c 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [290 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [2f9 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bc28b189]Init succeeded. Sending COMPLETED -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -peer1.org1.example.com | [39d 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [291 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [382 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -peer1.org1.example.com | [39e 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org2.example.com | [2fa 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bc28b189]Move state message COMPLETED -peer0.org2.example.com | [292 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org1.example.com | [383 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [293 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org1.example.com | [39f 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [2fb 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bc28b189]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [384 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org2.example.com | [294 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org2.example.com | [2fc 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bc28b189]send state message COMPLETED -orderer.example.com | [194 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -peer1.org1.example.com | [3a0 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [385 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer0.org2.example.com | [295 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [195 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [2fd 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bc28b189]Received message COMPLETED from shim -peer0.org1.example.com | [386 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org1.example.com | [3a1 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [2fe 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bc28b189]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [387 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [196 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [296 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org1.example.com | [3a2 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [388 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [2ff 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bc28b189-060f-4685-a023-799d3c51aa03]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [297 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [197 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [389 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [300 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:bc28b189-060f-4685-a023-799d3c51aa03, channelID:businesschannel -peer1.org1.example.com | [3a3 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [298 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [198 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [38a 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [3a4 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [299 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [301 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [38b 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [29a 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [199 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [302 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -peer1.org1.example.com | [3a5 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org2.example.com | [29b 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org1.example.com | [38c 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [3a6 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [19a 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [29c 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org2.example.com | [303 12-12 14:19:40.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [bc28b189-060f-4685-a023-799d3c51aa03] -peer0.org1.example.com | [38d 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org1.example.com | [3a7 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [29d 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [19b 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org1.example.com | [3a8 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [304 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [29e 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org1.example.com | [38e 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [3a9 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [38f 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [29f 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [19c 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [305 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [50c23a14-5d57-4a59-937c-4c35d0dd2f39] -peer1.org1.example.com | [3aa 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [2a0 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -peer0.org1.example.com | [390 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [306 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=50c23a14-5d57-4a59-937c-4c35d0dd2f39,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org2.example.com | [2a1 12-12 14:19:40.64 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -orderer.example.com | [19d 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org1.example.com | [3ab 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org2.example.com | [307 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer0.org1.example.com | [391 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [19e 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org2.example.com | [2a2 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org1.example.com | [3ac 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | [308 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [19f 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -peer0.org2.example.com | [2a3 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org1.example.com | [392 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [3ad 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [2a4 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org2.example.com | [309 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer1.org1.example.com | [3ae 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org1.example.com | [393 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org2.example.com | [2a5 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org2.example.com | [30a 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [50c23a14]Inside sendExecuteMessage. Message INIT -orderer.example.com | [1a0 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [3af 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [30b 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [394 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org2.example.com | [2a6 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] -peer1.org1.example.com | [3b0 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [2a7 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/transientStore/] does not exist -peer1.org2.example.com | [30c 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [50c23a14]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [395 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | [2a8 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/transientStore/] exists -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer0.org2.example.com | [2a9 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer1.org2.example.com | [30d 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [50c23a14]Move state message INIT -peer0.org1.example.com | [396 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [2aa 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func3 -> DEBU Deploying system CC, for chain -peer1.org1.example.com | [3b1 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [30e 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [50c23a14]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [2ab 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | [30f 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [2ac 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [362e85b0-f2d2-4ee7-bf84-0f798d6aa14c] -peer0.org1.example.com | [397 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer1.org1.example.com | [3b2 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [2ad 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.1.0,txid=362e85b0-f2d2-4ee7-bf84-0f798d6aa14c,syscc=true,proposal=0x0,canname=cscc:1.1.0 -peer1.org2.example.com | [310 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [50c23a14]sending state message INIT -peer0.org1.example.com | [398 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [2ae 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer0.org1.example.com | [399 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [311 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [50c23a14]Received message INIT from shim -peer1.org1.example.com | [3b3 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org2.example.com | [2af 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -peer1.org1.example.com | [3b4 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org1.example.com | [39a 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [2b0 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -peer1.org2.example.com | [312 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [50c23a14]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | +8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer1.org1.example.com | [3b5 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [39b 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [2b1 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [362e85b0]Inside sendExecuteMessage. Message INIT -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -peer1.org2.example.com | [313 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [39c 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [3b6 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org2.example.com | [2b2 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [314 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [50c23a14]Received INIT, initializing chaincode -orderer.example.com | SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -peer0.org2.example.com | [2b3 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [362e85b0]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [315 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [50c23a14]Init get response status: 200 -peer1.org1.example.com | [3b7 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [39d 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org2.example.com | [2b4 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [362e85b0]Move state message INIT -orderer.example.com | uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -peer0.org1.example.com | [39e 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [316 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [50c23a14]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [3b8 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org2.example.com | [2b5 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [362e85b0]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [3b9 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | cNvAXU8LlQ== -peer0.org1.example.com | [39f 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [2b6 12-12 14:19:40.65 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 | [3ba 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [317 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [50c23a14]Move state message COMPLETED -peer0.org2.example.com | [2b7 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [362e85b0]sending state message INIT -peer0.org1.example.com | [3a0 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [1a1 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [318 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [50c23a14]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [2b8 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [362e85b0]Received message INIT from shim -peer1.org1.example.com | [3bb 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [3a1 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [319 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [50c23a14]send state message COMPLETED -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [2b9 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [362e85b0]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [31a 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [50c23a14]Received message COMPLETED from shim -peer1.org1.example.com | [3bc 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org2.example.com | [2ba 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [3a2 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [31b 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [50c23a14]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [2bb 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [362e85b0]Received INIT, initializing chaincode -peer0.org1.example.com | [3a3 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [3bd 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [2bc 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org1.example.com | [3a4 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [2bd 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [362e85b0]Init get response status: 200 -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | [3be 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [31c 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [50c23a14-5d57-4a59-937c-4c35d0dd2f39]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [2be 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [362e85b0]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [3a5 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [3bf 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [31d 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:50c23a14-5d57-4a59-937c-4c35d0dd2f39, channelID:businesschannel -peer0.org2.example.com | [2bf 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [362e85b0]Move state message COMPLETED -peer0.org1.example.com | [3a6 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer1.org2.example.com | [31e 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [2c0 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [362e85b0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [3c0 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [3a7 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org2.example.com | [2c1 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [362e85b0]send state message COMPLETED -peer1.org2.example.com | [31f 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer1.org1.example.com | [3c1 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [3a8 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [2c2 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [362e85b0]Received message COMPLETED from shim -peer1.org2.example.com | [320 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [50c23a14-5d57-4a59-937c-4c35d0dd2f39] -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -peer0.org1.example.com | [3a9 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -peer1.org2.example.com | [321 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [3c2 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [2c3 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [362e85b0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -peer0.org1.example.com | [3aa 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org1.example.com | [3c3 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [322 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [8daa34f2-a637-43ac-85dc-d83e258269bc] -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -peer1.org1.example.com | [3c4 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org2.example.com | [2c4 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [362e85b0-f2d2-4ee7-bf84-0f798d6aa14c]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [323 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=8daa34f2-a637-43ac-85dc-d83e258269bc,syscc=true,proposal=0x0,canname=qscc:1.1.0 -peer0.org1.example.com | [3ab 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [2c5 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:362e85b0-f2d2-4ee7-bf84-0f798d6aa14c, channelID:businesschannel -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -peer0.org2.example.com | [2c6 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [3c5 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [3ac 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org2.example.com | [324 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 -orderer.example.com | ZM8rwLlgV6XUeTLW -peer0.org2.example.com | [2c7 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [1a2 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [3ad 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [325 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [2c8 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [362e85b0-f2d2-4ee7-bf84-0f798d6aa14c] -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer1.org1.example.com | [3c6 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [2c9 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [3ae 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [326 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -peer1.org1.example.com | [3c7 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [2ca 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [99a1cb15-1489-49b1-aff8-c0f2cffd3fd6] -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | [3c8 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [3af 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [2cb 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=99a1cb15-1489-49b1-aff8-c0f2cffd3fd6,syscc=true,proposal=0x0,canname=lscc:1.1.0 -peer1.org2.example.com | [327 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8daa34f2]Inside sendExecuteMessage. Message INIT -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer1.org1.example.com | [3c9 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org1.example.com | [3b0 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [2cc 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer1.org2.example.com | [328 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [3ca 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [2cd 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -peer0.org1.example.com | [3b1 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [3cb 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [2ce 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -peer1.org2.example.com | [329 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8daa34f2]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [3b2 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [3cc 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org2.example.com | [2cf 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [99a1cb15]Inside sendExecuteMessage. Message INIT -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -peer0.org2.example.com | [2d0 12-12 14:19:40.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [32a 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8daa34f2]Move state message INIT -peer0.org1.example.com | [3b3 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org1.example.com | [3cd 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [2d1 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [99a1cb15]sendExecuteMsg trigger event INIT -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -peer1.org2.example.com | [32b 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8daa34f2]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [3ce 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org2.example.com | [2d2 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [99a1cb15]Move state message INIT -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -orderer.example.com | ZM8rwLlgV6XUeTLW -peer1.org1.example.com | [3cf 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [32c 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [2d3 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [99a1cb15]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [3b4 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [2d4 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [3b5 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org1.example.com | [3d0 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org2.example.com | [32d 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8daa34f2]sending state message INIT -orderer.example.com | [1a3 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org2.example.com | [2d5 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [99a1cb15]sending state message INIT -peer0.org1.example.com | [3b6 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [32e 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8daa34f2]Received message INIT from shim -orderer.example.com | [1a4 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [2d6 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99a1cb15]Received message INIT from shim -peer0.org2.example.com | [2d7 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [99a1cb15]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [2d8 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [3b7 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [3d1 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org2.example.com | [2d9 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [99a1cb15]Received INIT, initializing chaincode -peer1.org2.example.com | [32f 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8daa34f2]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [3b8 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [1a5 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [2da 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99a1cb15]Init get response status: 200 -peer1.org1.example.com | [3d2 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [3b9 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org2.example.com | [330 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [1a6 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [2db 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99a1cb15]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [3d3 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org2.example.com | [331 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [8daa34f2]Received INIT, initializing chaincode -peer0.org1.example.com | [3ba 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org2.example.com | [2dc 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99a1cb15]Move state message COMPLETED -peer1.org1.example.com | [3d4 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [1a7 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [332 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org1.example.com | [3d5 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org1.example.com | [3bb 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [1a8 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -peer0.org2.example.com | [2dd 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [99a1cb15]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [333 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8daa34f2]Init get response status: 200 -peer1.org1.example.com | [3d6 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org1.example.com | [3bc 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [2de 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99a1cb15]send state message COMPLETED -peer1.org2.example.com | [334 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8daa34f2]Init succeeded. Sending COMPLETED -orderer.example.com | [1a9 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [3d7 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org2.example.com | [2df 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [99a1cb15]Received message COMPLETED from shim -peer1.org2.example.com | [335 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8daa34f2]Move state message COMPLETED -peer1.org1.example.com | [3d8 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [1aa 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [3bd 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [2e0 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [99a1cb15]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [336 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8daa34f2]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [3d9 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org1.example.com | [3be 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [1ab 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org2.example.com | [2e1 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [99a1cb15-1489-49b1-aff8-c0f2cffd3fd6]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [3da 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org2.example.com | [337 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8daa34f2]send state message COMPLETED -peer0.org1.example.com | [3bf 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [1ac 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -peer0.org2.example.com | [2e2 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:99a1cb15-1489-49b1-aff8-c0f2cffd3fd6, channelID:businesschannel -peer1.org1.example.com | [3db 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -peer1.org2.example.com | [338 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8daa34f2]Received message COMPLETED from shim -peer0.org1.example.com | [3c0 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [1ad 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [2e3 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [3dc 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org2.example.com | [339 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8daa34f2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [3c1 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [2e4 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org1.example.com | [3dd 12-12 14:19:46.54 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org2.example.com | [33a 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8daa34f2-a637-43ac-85dc-d83e258269bc]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [3c2 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [2e5 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [99a1cb15-1489-49b1-aff8-c0f2cffd3fd6] -peer1.org1.example.com | [3de 12-12 14:19:46.54 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org2.example.com | [33b 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8daa34f2-a637-43ac-85dc-d83e258269bc, channelID:businesschannel -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [2e6 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [3df 12-12 14:19:46.54 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org2.example.com | [33c 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [3c3 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -peer1.org1.example.com | [3e0 12-12 14:19:46.54 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org2.example.com | [33d 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer0.org2.example.com | [2e7 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [d7f0ffa5-f975-406b-98bd-3b09e75ed26d] -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [3e1 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer1.org2.example.com | [33e 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [8daa34f2-a637-43ac-85dc-d83e258269bc] -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer1.org2.example.com | [33f 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled -peer0.org1.example.com | [3c4 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [3e3 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org2.example.com | [340 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [3e4 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -orderer.example.com | BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -peer1.org2.example.com | [341 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [3c5 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [2e8 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=d7f0ffa5-f975-406b-98bd-3b09e75ed26d,syscc=true,proposal=0x0,canname=escc:1.1.0 -peer1.org1.example.com | [3e5 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -orderer.example.com | z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer1.org2.example.com | [342 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry -peer0.org1.example.com | [3c6 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [3e6 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -peer1.org2.example.com | [343 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [3e7 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -peer1.org2.example.com | [344 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully -peer0.org2.example.com | [2e9 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer0.org1.example.com | [3c7 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org1.example.com | [3e8 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] -orderer.example.com | OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -peer1.org2.example.com | [345 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit -peer0.org2.example.com | [2ea 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [3e9 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -orderer.example.com | xEFWkMtGbgY= -peer1.org2.example.com | [346 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c8383cc]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [3c8 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [3ea 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [347 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c8383cc]Move state message COMPLETED -peer0.org2.example.com | [2eb 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer1.org1.example.com | [3eb 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer1.org2.example.com | [348 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1c8383cc]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [2ec 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d7f0ffa5]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [3c9 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [1ae 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [3ec 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer1.org2.example.com | [349 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c8383cc]send state message COMPLETED -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -peer1.org1.example.com | [3ed 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [2ed 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [34a 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1c8383cc]Received message COMPLETED from shim -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [3ee 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer1.org2.example.com | [34b 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1c8383cc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [2ee 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d7f0ffa5]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [3ca 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | [34c 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1c8383ccf8abd45c2a45a51f46f6cf14d2ac1f8cda5f7d92214f5d88c1a261a4]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [2ef 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7f0ffa5]Move state message INIT -peer0.org1.example.com | [3cb 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -peer1.org1.example.com | [3ef 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer1.org2.example.com | [34d 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1c8383ccf8abd45c2a45a51f46f6cf14d2ac1f8cda5f7d92214f5d88c1a261a4, channelID: -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -orderer.example.com | OwJpoynNCyKsWozuVw== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [1af 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -orderer.example.com | OwJpoynNCyKsWozuVw== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [1b0 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [1b1 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -peer0.org2.example.com | [2f0 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7f0ffa5]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [34e 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [3cc 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org1.example.com | [3f0 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:2 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -orderer.example.com | [1b2 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer0.org2.example.com | [2f1 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [34f 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [3cd 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org1.example.com | [3f1 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [1b3 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -peer1.org2.example.com | [350 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org1.example.com | [3f2 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [3ce 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [1b4 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -peer0.org2.example.com | [2f2 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7f0ffa5]sending state message INIT -peer1.org1.example.com | [3f3 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [1b5 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -peer1.org1.example.com | [3f4 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [3cf 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [2f3 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7f0ffa5]Received message INIT from shim -peer1.org2.example.com | [351 12-12 14:19:40.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:42306) -peer1.org1.example.com | [3f5 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [2f4 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d7f0ffa5]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | [1b6 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -peer1.org2.example.com | [352 12-12 14:19:46.81 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.org1.example.com | [3f6 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [3d0 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org2.example.com | [2f5 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [1b7 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -peer1.org2.example.com | [353 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -peer1.org1.example.com | [3f7 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [3d1 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [1b8 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -peer1.org1.example.com | [3f8 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [3d2 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [2f6 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d7f0ffa5]Received INIT, initializing chaincode -orderer.example.com | [1b9 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -peer1.org2.example.com | [354 12-12 14:19:46.82 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 | [3f9 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [3d3 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org2.example.com | [2f7 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -orderer.example.com | [1ba 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -peer1.org2.example.com | [355 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -peer1.org1.example.com | [3fa 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [3d4 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org1.example.com | [3fb 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [356 12-12 14:19:46.82 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 | [1bb 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -peer0.org2.example.com | [2f8 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7f0ffa5]Init get response status: 200 -peer0.org1.example.com | [3d5 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org1.example.com | [3fc 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [2f9 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7f0ffa5]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [357 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -orderer.example.com | [1bc 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -peer0.org1.example.com | [3d6 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer1.org1.example.com | [3fd 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [2fa 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7f0ffa5]Move state message COMPLETED -peer0.org1.example.com | [3d7 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org2.example.com | [358 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] -peer1.org1.example.com | [3fe 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [1bd 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -peer0.org2.example.com | [2fb 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d7f0ffa5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [3d8 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org1.example.com | [3ff 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [2fc 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7f0ffa5]send state message COMPLETED -orderer.example.com | [1be 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -peer1.org2.example.com | [359 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] -peer0.org1.example.com | [3d9 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -peer1.org1.example.com | [400 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org2.example.com | [35a 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org2.example.com | [2fd 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7f0ffa5]Received message COMPLETED from shim -orderer.example.com | [1bf 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -peer0.org1.example.com | [3da 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org1.example.com | [401 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [35b 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org1.example.com | [3db 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org1.example.com | [402 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [1c0 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy ChannelCreationPolicy for Channel/Application -peer0.org2.example.com | [2fe 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7f0ffa5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [3dc 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org1.example.com | [403 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [3dd 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org2.example.com | [2ff 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7f0ffa5-f975-406b-98bd-3b09e75ed26d]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [35c 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4224f87e0 env 0xc4224d55f0 txn 0 -orderer.example.com | [1c1 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins -peer0.org1.example.com | [3de 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -orderer.example.com | [1c2 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -peer1.org1.example.com | [404 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [35d 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4224d55f0 -peer0.org2.example.com | [300 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d7f0ffa5-f975-406b-98bd-3b09e75ed26d, channelID:businesschannel -peer0.org1.example.com | [3df 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer0.org1.example.com | [3e0 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc420208180 env 0xc422523230 txn 0 -peer1.org2.example.com | [35e 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\375\312\277\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN\ntV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE\n+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q\nXZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd\n-----END CERTIFICATE-----\n\022\030\365b,\257\227\022\240f\314\316\352\017\301\245\365\335)\344\217\0214\022\362\336" -orderer.example.com | [1c3 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Application/Readers -peer0.org2.example.com | [301 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [405 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [3e1 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -orderer.example.com | [1c4 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -peer0.org2.example.com | [302 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -peer1.org1.example.com | [406 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [3e2 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org2.example.com | [35f 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -orderer.example.com | [1c5 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Application/Writers -peer0.org1.example.com | [3e3 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org1.example.com | [407 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org2.example.com | [360 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [303 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [d7f0ffa5-f975-406b-98bd-3b09e75ed26d] -peer0.org1.example.com | [3e4 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] -peer1.org1.example.com | [408 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | [304 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [3e5 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [361 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP d0f63d3eb6e4bcf73d7a1a7143e3dc9880a9a26b8aeb2aa8d323b803c43c142a} -peer0.org2.example.com | [305 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [e96a3df1-a05b-46ff-be4d-4046a62fe868] -peer1.org1.example.com | [409 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [1c6 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -peer0.org1.example.com | [3e6 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] -peer0.org2.example.com | [306 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=e96a3df1-a05b-46ff-be4d-4046a62fe868,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org2.example.com | [362 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [3e7 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -orderer.example.com | [1c7 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [40a 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [363 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [3e8 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer0.org2.example.com | [307 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer1.org1.example.com | [40b 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [1c8 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org2.example.com | [364 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422556000, header channel_header:"\010\001\032\006\010\375\312\277\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN\ntV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE\n+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q\nXZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd\n-----END CERTIFICATE-----\n\022\030\365b,\257\227\022\240f\314\316\352\017\301\245\365\335)\344\217\0214\022\362\336" -peer0.org1.example.com | [3e9 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer0.org2.example.com | [308 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [3ea 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer1.org1.example.com | [40c 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [1c9 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [365 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [40d 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org2.example.com | [309 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer0.org1.example.com | [3eb 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [40e 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | [366 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [30a 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e96a3df1]Inside sendExecuteMessage. Message INIT -orderer.example.com | [1ca 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [3ec 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer0.org2.example.com | [30b 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [367 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [3e2 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421acc9a0 env 0xc421955500 txn 0 -orderer.example.com | [1cb 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [3ed 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer0.org2.example.com | [30c 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e96a3df1]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [40f 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [1cc 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [368 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [30d 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e96a3df1]Move state message INIT -peer1.org2.example.com | [369 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [410 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org2.example.com | [36a 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [30e 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e96a3df1]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [1cd 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [411 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [3ee 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:2 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer0.org2.example.com | [30f 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [36b 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [1ce 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org1.example.com | [412 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [3ef 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org2.example.com | [310 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e96a3df1]sending state message INIT -orderer.example.com | [1cf 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [3f0 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [36c 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [413 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [311 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e96a3df1]Received message INIT from shim -orderer.example.com | [1d0 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org1.example.com | [3f1 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [36d 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [414 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [312 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e96a3df1]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [313 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [1d1 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org1.example.com | [415 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [36e 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [3f2 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [314 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e96a3df1]Received INIT, initializing chaincode -orderer.example.com | [1d2 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [3f3 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [36f 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [1d3 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [416 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org1.example.com | [3f4 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [370 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [1d4 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org2.example.com | [315 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e96a3df1]Init get response status: 200 -peer1.org2.example.com | [371 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [3f5 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org1.example.com | [417 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | [1d5 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org2.example.com | [316 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e96a3df1]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [372 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [3f6 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [418 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org2.example.com | [317 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e96a3df1]Move state message COMPLETED -peer0.org1.example.com | [3f7 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [373 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [318 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e96a3df1]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [3f8 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [1d6 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [374 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [319 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e96a3df1]send state message COMPLETED -peer1.org1.example.com | [419 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [3f9 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [1d7 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [375 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [3fa 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [41a 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [1d8 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [31a 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e96a3df1]Received message COMPLETED from shim -peer0.org2.example.com | [31b 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e96a3df1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [31c 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e96a3df1-a05b-46ff-be4d-4046a62fe868]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [31d 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e96a3df1-a05b-46ff-be4d-4046a62fe868, channelID:businesschannel -peer0.org2.example.com | [31e 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [31f 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer0.org2.example.com | [320 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [e96a3df1-a05b-46ff-be4d-4046a62fe868] -peer0.org2.example.com | [321 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [322 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [f70f7820-b67c-467c-af35-d0642d4d2f91] -peer0.org2.example.com | [323 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=f70f7820-b67c-467c-af35-d0642d4d2f91,syscc=true,proposal=0x0,canname=qscc:1.1.0 -peer1.org2.example.com | [376 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -peer0.org1.example.com | [3fb 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org1.example.com | [41b 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [1d9 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [324 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 -peer1.org2.example.com | [377 12-12 14:19:46.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [3fc 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org1.example.com | [41c 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [1da 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [378 12-12 14:19:46.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [325 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [3fd 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [41d 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org2.example.com | [379 12-12 14:19:46.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [3fe 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [41e 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [1db 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [326 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -peer0.org1.example.com | [3ff 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [37a 12-12 14:19:46.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [1dc 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [327 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f70f7820]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [37b 12-12 14:19:46.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [41f 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [400 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [328 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [37c 12-12 14:19:46.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [1dd 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [1de 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [420 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [401 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org2.example.com | [37d 12-12 14:19:46.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [329 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f70f7820]sendExecuteMsg trigger event INIT -orderer.example.com | [1df 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [37e 12-12 14:19:46.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [421 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [32a 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f70f7820]Move state message INIT -peer0.org1.example.com | [402 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [1e0 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [37f 12-12 14:19:46.86 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] -peer1.org1.example.com | [422 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [423 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [32b 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f70f7820]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [380 12-12 14:19:46.87 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] -peer1.org2.example.com | [381 12-12 14:19:46.87 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org1.example.com | [403 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [404 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [405 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [406 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org2.example.com | [382 12-12 14:19:46.87 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [1e1 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [32c 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [424 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [407 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [383 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org1.example.com | [425 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [32d 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f70f7820]sending state message INIT -peer0.org1.example.com | [408 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [1e2 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -orderer.example.com | [1e3 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org2.example.com | [32e 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f70f7820]Received message INIT from shim -orderer.example.com | [1e4 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org1.example.com | [426 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [409 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [40a 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [40b 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [384 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [385 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [32f 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f70f7820]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [330 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [1e5 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org1.example.com | [427 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [40c 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org2.example.com | [331 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [f70f7820]Received INIT, initializing chaincode -orderer.example.com | [1e6 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org2.example.com | [386 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [428 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [332 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -orderer.example.com | [1e7 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org1.example.com | [40d 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [429 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [1e8 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org2.example.com | [333 12-12 14:19:40.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f70f7820]Init get response status: 200 -peer1.org2.example.com | [387 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [42a 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [1e9 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [40e 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [334 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f70f7820]Init succeeded. Sending COMPLETED -orderer.example.com | [1ea 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [388 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [42b 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org1.example.com | [40f 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [1eb 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [335 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f70f7820]Move state message COMPLETED -peer0.org2.example.com | [336 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f70f7820]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [1ec 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [42c 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [42d 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [410 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [411 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [42e 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [389 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [1ed 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [337 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f70f7820]send state message COMPLETED -peer1.org2.example.com | [38a 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [42f 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [1ee 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [412 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [338 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f70f7820]Received message COMPLETED from shim -peer1.org2.example.com | [38b 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [430 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [1ef 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org1.example.com | [413 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [339 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f70f7820]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [38c 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [1f0 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [431 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org2.example.com | [38d 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [1f1 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [414 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [33a 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f70f7820-b67c-467c-af35-d0642d4d2f91]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [38e 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [432 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [1f2 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [415 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [33b 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f70f7820-b67c-467c-af35-d0642d4d2f91, channelID:businesschannel -peer1.org1.example.com | [433 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [38f 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [416 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [1f3 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [434 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org2.example.com | [33c 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [390 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [1f4 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org1.example.com | [435 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [417 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [33d 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -orderer.example.com | [1f5 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [391 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [436 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [1f6 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org2.example.com | [33e 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [f70f7820-b67c-467c-af35-d0642d4d2f91] -peer0.org1.example.com | [418 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [437 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | [1f7 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [33f 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled -peer0.org1.example.com | [419 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [392 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [1f8 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [340 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [438 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org2.example.com | [393 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [1f9 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [439 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org2.example.com | [341 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit -orderer.example.com | [1fa 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [41a 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org2.example.com | [394 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [43a 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [] marked as valid by state validator -peer0.org2.example.com | [342 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry -orderer.example.com | [1fb 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Capabilities -peer1.org2.example.com | [395 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [41b 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [43b 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org2.example.com | [396 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [1fc 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Writers -peer0.org2.example.com | [343 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [43c 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org1.example.com | [41c 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [397 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [1fd 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -peer1.org1.example.com | [43d 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org2.example.com | [344 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully -peer0.org1.example.com | [41d 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [1fe 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy ChannelCreationPolicy -peer1.org2.example.com | [398 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [43e 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage -peer0.org2.example.com | [345 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit -peer0.org1.example.com | [41e 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [1ff 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] -peer1.org2.example.com | [399 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [43f 12-12 14:19:46.57 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [1] -orderer.example.com | [200 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -peer1.org1.example.com | [440 12-12 14:19:46.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xaa, 0x33, 0x62, 0xe7, 0x6e, 0x3e, 0x2a, 0x1d, 0x13, 0xf, 0x7d, 0x40, 0x89, 0x46, 0x8f, 0xc6, 0x81, 0xca, 0x6b, 0x47, 0xa0, 0xe5, 0x13, 0x29, 0xc3, 0x28, 0x2d, 0x98, 0x7c, 0x46, 0xf1, 0x84} txOffsets= -peer1.org2.example.com | [39a 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [346 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9f20cad8]Transaction completed. Sending COMPLETED -orderer.example.com | [201 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -peer0.org1.example.com | [41f 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=12093 -peer1.org2.example.com | [39b 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [39c 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [202 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -peer0.org2.example.com | [347 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9f20cad8]Move state message COMPLETED -peer0.org1.example.com | [420 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | ] -peer0.org2.example.com | [348 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9f20cad8]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [39d 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [203 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -peer1.org1.example.com | [441 12-12 14:19:46.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12093] for tx ID: [] to index -peer0.org1.example.com | [421 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [39e 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [349 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9f20cad8]send state message COMPLETED -peer1.org1.example.com | [442 12-12 14:19:46.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12093] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [422 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [204 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -peer1.org2.example.com | [39f 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [34a 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9f20cad8]Received message COMPLETED from shim -peer1.org1.example.com | [443 12-12 14:19:46.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26079], isChainEmpty=[false], lastBlockNumber=[1] -orderer.example.com | [205 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -peer0.org1.example.com | [423 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [444 12-12 14:19:46.57 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 1 -peer0.org1.example.com | [424 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [3a0 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [34b 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9f20cad8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [206 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -peer1.org1.example.com | [445 12-12 14:19:46.57 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 1 -peer0.org1.example.com | [425 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org2.example.com | [3a1 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [34c 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9f20cad8457838224a8954394e4cb43e3c5d858d5551f7c5a6be2aacb4c9e7c5]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [446 12-12 14:19:46.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) -orderer.example.com | [207 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -peer1.org2.example.com | [3a2 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [34d 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9f20cad8457838224a8954394e4cb43e3c5d858d5551f7c5a6be2aacb4c9e7c5, channelID: -peer1.org1.example.com | [447 12-12 14:19:46.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database -peer0.org1.example.com | [426 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [3a3 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [208 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy == -peer1.org1.example.com | [448 12-12 14:19:46.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [427 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org2.example.com | [34e 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [3a4 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org1.example.com | [449 12-12 14:19:46.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -orderer.example.com | [209 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [428 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [34f 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org1.example.com | [44a 12-12 14:19:46.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer1.org2.example.com | [3a5 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [429 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org2.example.com | [350 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org1.example.com | [44b 12-12 14:19:46.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [3a6 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [42a 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [20a 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -peer1.org1.example.com | [44c 12-12 14:19:46.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database -peer0.org2.example.com | [351 12-12 14:19:40.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:34866) -peer1.org2.example.com | [3a7 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [20b 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org1.example.com | [44d 12-12 14:19:46.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -peer0.org1.example.com | [42b 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [352 12-12 14:19:46.65 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 | [3a8 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [44e 12-12 14:19:46.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org1.example.com | [42c 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [20c 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [44f 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -peer0.org2.example.com | [353 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -peer1.org2.example.com | [3a9 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org1.example.com | [42d 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org1.example.com | [450 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org2.example.com | [354 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [42e 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org2.example.com | [3aa 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [451 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [355 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [42f 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org1.example.com | [452 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [3ab 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [356 12-12 14:19:46.66 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.org1.example.com | [430 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org1.example.com | [453 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -peer1.org2.example.com | [3ac 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org2.example.com | [357 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -peer0.org1.example.com | [431 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org1.example.com | [454 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org2.example.com | [358 12-12 14:19:46.68 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] -peer0.org1.example.com | [432 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [3ad 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [455 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [35a 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org2.example.com | [3ae 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [433 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [35b 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [456 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [434 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [35c 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4219f3220 env 0xc421aaa120 txn 0 -peer1.org1.example.com | [457 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [435 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -peer1.org2.example.com | [3af 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [35d 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421aaa120 -peer0.org1.example.com | [436 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -peer1.org2.example.com | [3b0 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [458 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [35e 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\375\312\277\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN\ntV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE\n+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q\nXZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd\n-----END CERTIFICATE-----\n\022\030\365b,\257\227\022\240f\314\316\352\017\301\245\365\335)\344\217\0214\022\362\336" -peer0.org1.example.com | [437 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org1.example.com | [459 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [3b1 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -peer0.org1.example.com | [438 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [] marked as valid by state validator -peer0.org2.example.com | [35f 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org1.example.com | [439 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org1.example.com | [45a 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -peer0.org2.example.com | [360 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [43a 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org1.example.com | [45b 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42262f620 env 0xc421b0d440 txn 0 -peer1.org2.example.com | [3b2 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -peer0.org2.example.com | [361 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP d0f63d3eb6e4bcf73d7a1a7143e3dc9880a9a26b8aeb2aa8d323b803c43c142a} -peer0.org1.example.com | [43b 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org1.example.com | [45c 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421b0d440 -peer1.org2.example.com | [3b3 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [362 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [43c 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage -orderer.example.com | OwJpoynNCyKsWozuVw== -peer1.org1.example.com | [45d 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\377\312\277\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN\ntV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE\n+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q\nXZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd\n-----END CERTIFICATE-----\n\022\030\n\232\226\276I3\002W\261\367\372\221\321X\323Z\020\273\320\213\000\330A\353" -peer1.org2.example.com | [3b4 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org2.example.com | [363 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [43d 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [1] -peer1.org2.example.com | [3b5 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [364 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422317000, header channel_header:"\010\001\032\006\010\375\312\277\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN\ntV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE\n+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q\nXZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd\n-----END CERTIFICATE-----\n\022\030\365b,\257\227\022\240f\314\316\352\017\301\245\365\335)\344\217\0214\022\362\336" -peer0.org1.example.com | [43e 12-12 14:19:46.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xaa, 0x33, 0x62, 0xe7, 0x6e, 0x3e, 0x2a, 0x1d, 0x13, 0xf, 0x7d, 0x40, 0x89, 0x46, 0x8f, 0xc6, 0x81, 0xca, 0x6b, 0x47, 0xa0, 0xe5, 0x13, 0x29, 0xc3, 0x28, 0x2d, 0x98, 0x7c, 0x46, 0xf1, 0x84} txOffsets= -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [365 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [3b6 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [45e 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org1.example.com | txId= locPointer=offset=70, bytesLength=12093 -orderer.example.com | [20d 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e550 gate 1513088379329699700 evaluation starts -orderer.example.com | [20e 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e550 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [20f 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e550 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [210 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | [211 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e550 principal matched by identity 0 -orderer.example.com | [212 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 c6 f2 4b 6b 1b ea 52 78 7f bb d0 74 0a 59 01 19 |..Kk..Rx...t.Y..| -orderer.example.com | 00000010 15 1d 23 c0 05 d6 7e 53 2f 24 e1 27 01 fa 7f 91 |..#...~S/$.'....| -peer0.org2.example.com | [366 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [367 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [368 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [369 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | ] -peer0.org1.example.com | [43f 12-12 14:19:46.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12093] for tx ID: [] to index -peer0.org1.example.com | [440 12-12 14:19:46.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12093] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [441 12-12 14:19:46.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26079], isChainEmpty=[false], lastBlockNumber=[1] -peer0.org1.example.com | [442 12-12 14:19:46.47 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 1 -peer0.org1.example.com | [443 12-12 14:19:46.47 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 1 -orderer.example.com | [213 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8d c5 c4 b5 83 d5 c2 a1 5a 6b 19 |0E.!.........Zk.| -peer1.org2.example.com | [3b7 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [45f 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [36a 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [444 12-12 14:19:46.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) -orderer.example.com | 00000010 66 c1 b3 39 13 60 ef 56 00 ca 1e 70 24 c2 47 d0 |f..9.`.V...p$.G.| -peer1.org2.example.com | [3b8 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org2.example.com | [36b 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [460 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP d0f63d3eb6e4bcf73d7a1a7143e3dc9880a9a26b8aeb2aa8d323b803c43c142a} -peer1.org2.example.com | [3b9 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [445 12-12 14:19:46.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database -peer0.org2.example.com | [36c 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 00000020 a7 27 ef d6 d7 02 20 12 0e 17 ac 06 59 31 b2 6e |.'.... .....Y1.n| -peer1.org2.example.com | [3ba 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [446 12-12 14:19:46.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [461 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [36d 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [3bb 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [447 12-12 14:19:46.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [462 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | 00000030 98 c3 25 6e 9f 68 b5 03 28 25 0a cb 82 05 ab 9d |..%n.h..(%......| -peer1.org2.example.com | [3bc 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [36e 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [448 12-12 14:19:46.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer1.org1.example.com | [463 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42285f000, header channel_header:"\010\001\032\006\010\377\312\277\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN\ntV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE\n+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q\nXZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd\n-----END CERTIFICATE-----\n\022\030\n\232\226\276I3\002W\261\367\372\221\321X\323Z\020\273\320\213\000\330A\353" -orderer.example.com | 00000040 f1 38 8d 00 72 62 b2 |.8..rb.| -peer1.org2.example.com | [3bd 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [214 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e550 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [449 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [464 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [3be 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [36f 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [215 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e550 gate 1513088379329699700 evaluation succeeds -peer0.org1.example.com | [44a 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database -peer1.org2.example.com | [3bf 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [465 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [370 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [44b 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -orderer.example.com | [216 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [3c0 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [466 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [44c 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer1.org2.example.com | [3c1 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [371 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer1.org1.example.com | [467 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [217 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [44d 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -peer1.org2.example.com | [3c2 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [372 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [468 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [44e 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -orderer.example.com | [218 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/ChannelCreationPolicy -peer1.org2.example.com | [3c3 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org2.example.com | [373 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [44f 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org1.example.com | [469 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [3c4 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [219 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy -peer0.org1.example.com | [450 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [3c5 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [451 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [374 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [452 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [3c6 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [21a 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [46a 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [453 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [3c7 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org1.example.com | [454 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [46b 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [375 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer1.org2.example.com | [3c8 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [455 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [21b 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3c9 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [456 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [3ca 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [46c 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [21c 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [457 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [3cb 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org2.example.com | [376 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [458 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org1.example.com | [46d 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [21d 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [3cc 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [377 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -peer0.org2.example.com | [378 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [379 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [459 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org1.example.com | [45a 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421fe3960 env 0xc421d3c5a0 txn 0 -peer1.org2.example.com | [3cd 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org2.example.com | [3ce 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [3cf 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org2.example.com | [3d0 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [46e 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [45b 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421d3c5a0 -orderer.example.com | [21e 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [37a 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [45c 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\377\312\277\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN\ntV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE\n+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q\nXZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd\n-----END CERTIFICATE-----\n\022\030\n\232\226\276I3\002W\261\367\372\221\321X\323Z\020\273\320\213\000\330A\353" -orderer.example.com | [21f 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [46f 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [3d1 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [45d 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org2.example.com | [3d2 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org1.example.com | [470 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [220 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org2.example.com | [37b 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [37c 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [37d 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org1.example.com | [45e 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [221 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [3d3 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org2.example.com | [37e 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [45f 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP d0f63d3eb6e4bcf73d7a1a7143e3dc9880a9a26b8aeb2aa8d323b803c43c142a} -peer1.org1.example.com | [471 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [222 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [460 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [472 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [3d4 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org2.example.com | [37f 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [461 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [473 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [223 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [380 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [462 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421e0d000, header channel_header:"\010\001\032\006\010\377\312\277\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN\ntV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE\n+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q\nXZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd\n-----END CERTIFICATE-----\n\022\030\n\232\226\276I3\002W\261\367\372\221\321X\323Z\020\273\320\213\000\330A\353" -peer1.org2.example.com | [3d5 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org2.example.com | [3d6 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer1.org1.example.com | [474 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [381 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [463 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [3d7 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [224 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [475 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins -peer0.org1.example.com | [464 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [382 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org2.example.com | [3d8 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org1.example.com | [465 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [225 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [226 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [227 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [476 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer1.org1.example.com | [477 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [478 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [466 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [383 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer0.org2.example.com | [384 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org1.example.com | [467 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [468 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [479 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [47a 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org1.example.com | [47b 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [47c 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [228 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [229 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [22a 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [22b 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [469 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [46a 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [46b 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [47d 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [47e 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org1.example.com | [47f 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org2.example.com | [3d9 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -peer0.org1.example.com | [46c 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [22c 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [22d 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org2.example.com | [385 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [3da 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org1.example.com | [46d 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [480 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | [22e 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [3db 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org1.example.com | [46e 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [386 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3dc 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org1.example.com | [481 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [46f 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [22f 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [387 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3dd 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org1.example.com | [470 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [482 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [230 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [388 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [3de 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org1.example.com | [471 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [483 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [359 12-12 14:19:46.68 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] -peer0.org2.example.com | [38a 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] -peer1.org1.example.com | [484 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3df 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer0.org2.example.com | [38b 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] -peer0.org1.example.com | [472 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [231 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [232 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [485 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [389 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3e0 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4224f87e0 env 0xc4224d55f0 txn 0 -peer1.org2.example.com | [3e1 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org1.example.com | [486 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [473 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [38c 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3e2 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org2.example.com | [3e3 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org1.example.com | [487 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [38d 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | [3e4 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] -peer1.org2.example.com | [3e5 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [488 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [474 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins -peer0.org2.example.com | [38e 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [38f 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [3e6 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] -peer0.org2.example.com | [390 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [489 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3e7 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org1.example.com | [475 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer0.org1.example.com | [476 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [391 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [392 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [393 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org2.example.com | [394 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org2.example.com | [395 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [48a 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | [3e8 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -orderer.example.com | [233 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [477 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [396 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [397 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [398 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [399 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [48b 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [3e9 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer1.org2.example.com | [3ea 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer1.org2.example.com | [3eb 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [3ec 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer1.org2.example.com | [3ed 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer1.org2.example.com | [3ee 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:2 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer0.org2.example.com | [39a 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [48c 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [48d 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [48e 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [48f 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [490 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org1.example.com | [491 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [492 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [493 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org2.example.com | [3ef 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | [3f0 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [3f1 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [3f2 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [3f3 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [3f4 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [39b 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [494 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [495 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [234 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [3f5 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org2.example.com | [3f6 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [3f7 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [496 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [497 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [498 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [499 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [49a 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org1.example.com | [49b 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [39c 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org2.example.com | [3f8 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [478 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [49c 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [39d 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [3f9 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [235 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [479 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org1.example.com | [49d 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [39e 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [3fa 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [236 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [49e 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [39f 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [3fb 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [3fc 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [237 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [49f 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [47a 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [3fd 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [238 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [3a0 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [4a0 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer0.org1.example.com | [47b 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3fe 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [239 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [3a1 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [4a1 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [3ff 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [23a 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [3a2 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [4a2 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [400 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [47c 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [23b 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [4a3 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org2.example.com | [3a3 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org2.example.com | [401 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [47d 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | [23c 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [4a4 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [3a4 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [402 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [23d 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [47e 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org1.example.com | [4a5 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [3a5 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [403 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [23e 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org1.example.com | [47f 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org1.example.com | [4a6 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [3a6 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [404 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [23f 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -peer0.org1.example.com | [480 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [4a7 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org2.example.com | [405 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org2.example.com | [406 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [407 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [3a7 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [3a8 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [3a9 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org2.example.com | [3aa 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [3ab 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [3ac 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org2.example.com | [3ad 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [4a8 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | [408 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [409 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [40a 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [40b 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org2.example.com | [40c 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [3ae 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [4a9 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [481 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [240 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [40d 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [40e 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [40f 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [410 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [411 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [4aa 12-12 14:19:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org1.example.com | [4ab 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [4ac 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [4ad 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [4ae 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [4af 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [4b0 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org1.example.com | [4b1 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org1.example.com | [4b2 12-12 14:19:46.60 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org1.example.com | [4b3 12-12 14:19:46.60 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [4b4 12-12 14:19:46.60 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org1.example.com | [4b5 12-12 14:19:46.60 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [4b6 12-12 14:19:46.60 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [4b7 12-12 14:19:46.60 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [4b8 12-12 14:19:46.60 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [4b9 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [4ba 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [4bb 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [4bc 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer1.org1.example.com | [4bd 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [4be 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [4bf 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [3af 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [412 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -orderer.example.com | ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -orderer.example.com | Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -orderer.example.com | 0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [241 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [4c0 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [4c1 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [3b0 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [413 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [414 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [415 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [4c2 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org2.example.com | [3b1 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [482 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org2.example.com | [416 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer1.org1.example.com | [4c3 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [483 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -peer1.org1.example.com | [4c4 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [417 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [3b2 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org2.example.com | [3b3 12-12 14:19:46.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [3b4 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [4c5 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [4c6 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org1.example.com | [484 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [418 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [3b5 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [242 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [3b6 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [419 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [4c7 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [485 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | [4c8 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [3b7 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [486 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [487 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [488 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [489 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | [41a 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org2.example.com | [41b 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [3b8 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [4c9 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [41c 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [3b9 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [4ca 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org1.example.com | [48a 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [48b 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [3ba 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [4cb 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org2.example.com | [41d 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [41e 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org2.example.com | [41f 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [420 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org2.example.com | [3bb 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [4cc 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org1.example.com | [4cd 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org1.example.com | [4ce 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org1.example.com | [4cf 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [4d0 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [4d1 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org1.example.com | [4d2 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer1.org1.example.com | [4d3 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org1.example.com | [4d4 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org2.example.com | [3bc 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [3bd 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [3be 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [3bf 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [3c0 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [421 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [422 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [423 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [424 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org2.example.com | [425 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org1.example.com | [4d5 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer1.org1.example.com | [4d6 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org1.example.com | [4d7 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org1.example.com | [4d8 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -peer1.org1.example.com | [4d9 12-12 14:19:46.61 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org1.example.com | [4da 12-12 14:19:46.63 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org1.example.com | [4db 12-12 14:19:46.63 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org1.example.com | [4dc 12-12 14:19:46.63 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org1.example.com | [4dd 12-12 14:19:46.63 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org1.example.com | [4de 12-12 14:19:46.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer0.org2.example.com | [3c1 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [4df 12-12 14:19:46.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42262f620 env 0xc421b0d440 txn 0 -peer1.org1.example.com | [4e0 12-12 14:19:46.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org2.example.com | [426 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org2.example.com | [427 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [428 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [429 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org2.example.com | [3c2 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [42a 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [4e1 12-12 14:19:46.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org1.example.com | [48c 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [243 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [244 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [42b 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [4e2 12-12 14:19:46.65 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org2.example.com | [3c3 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [245 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [42c 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [4e3 12-12 14:19:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] -peer0.org1.example.com | [48d 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [246 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [3c4 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [4e4 12-12 14:19:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [42d 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [3c5 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [3c6 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [3c7 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org1.example.com | [4e5 12-12 14:19:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] -peer1.org1.example.com | [4e6 12-12 14:19:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org1.example.com | [4e7 12-12 14:19:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer0.org2.example.com | [3c8 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [3c9 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org2.example.com | [3ca 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [3cb 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [3cc 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org2.example.com | [3cd 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org2.example.com | [3ce 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [3cf 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org2.example.com | [42e 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org1.example.com | [4e8 12-12 14:19:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer0.org2.example.com | [3d0 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [48e 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [42f 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [3d1 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org2.example.com | [430 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org1.example.com | [4e9 12-12 14:19:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -orderer.example.com | [247 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [48f 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org2.example.com | [3d2 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [431 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org1.example.com | [4ea 12-12 14:19:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [4eb 12-12 14:19:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer0.org2.example.com | [3d3 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [248 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [432 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [490 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [4ec 12-12 14:19:46.65 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer0.org2.example.com | [3d4 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [249 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [3d5 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [24a 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [24b 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [24c 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org1.example.com | [4ed 12-12 14:19:46.65 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer0.org2.example.com | [3d6 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer1.org2.example.com | [433 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [4ee 12-12 14:19:46.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org1.example.com | [4ef 12-12 14:19:46.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [4f0 12-12 14:19:46.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [4f1 12-12 14:19:46.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [4f2 12-12 14:19:46.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [4f3 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [4f4 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org1.example.com | [4f5 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [4f6 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [4f7 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [4f8 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [4f9 12-12 14:19:46.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [4fa 12-12 14:19:46.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [4fb 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [4fc 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [4fd 12-12 14:19:46.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [4fe 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org2.example.com | [3d7 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org2.example.com | [434 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [24d 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org1.example.com | [491 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [4ff 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [435 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org2.example.com | [3d8 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [24e 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [24f 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [436 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -orderer.example.com | MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [3d9 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -peer1.org1.example.com | [500 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [492 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org2.example.com | [437 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org2.example.com | [438 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [] marked as valid by state validator -peer0.org2.example.com | [3da 12-12 14:19:46.71 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org1.example.com | [501 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [439 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org2.example.com | [43a 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [3db 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org1.example.com | [502 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [493 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [43b 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org2.example.com | [43c 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage -peer1.org2.example.com | [43d 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [1] -peer1.org2.example.com | [43e 12-12 14:19:46.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xaa, 0x33, 0x62, 0xe7, 0x6e, 0x3e, 0x2a, 0x1d, 0x13, 0xf, 0x7d, 0x40, 0x89, 0x46, 0x8f, 0xc6, 0x81, 0xca, 0x6b, 0x47, 0xa0, 0xe5, 0x13, 0x29, 0xc3, 0x28, 0x2d, 0x98, 0x7c, 0x46, 0xf1, 0x84} txOffsets= -peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=12093 -peer1.org2.example.com | ] -peer1.org2.example.com | [43f 12-12 14:19:46.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12093] for tx ID: [] to index -peer1.org2.example.com | [440 12-12 14:19:46.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12093] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org2.example.com | [441 12-12 14:19:46.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26079], isChainEmpty=[false], lastBlockNumber=[1] -peer1.org2.example.com | [442 12-12 14:19:46.94 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 1 -peer1.org2.example.com | [443 12-12 14:19:46.94 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 1 -peer1.org2.example.com | [444 12-12 14:19:46.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) -peer0.org2.example.com | [3dc 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org2.example.com | [3dd 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org2.example.com | [3de 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org2.example.com | [3df 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer0.org2.example.com | [3e0 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4219f3220 env 0xc421aaa120 txn 0 -peer0.org2.example.com | [3e1 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org2.example.com | [3e2 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org2.example.com | [3e3 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org2.example.com | [3e4 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] -peer0.org2.example.com | [3e5 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [3e6 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] -peer1.org1.example.com | [503 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [504 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org1.example.com | [505 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [506 12-12 14:19:46.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [3e7 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org2.example.com | [445 12-12 14:19:46.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database -peer1.org1.example.com | [507 12-12 14:19:46.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [494 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [3e8 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer0.org2.example.com | [3e9 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer0.org2.example.com | [3ea 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer0.org2.example.com | [3eb 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [3ec 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer0.org2.example.com | [3ed 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer1.org2.example.com | [446 12-12 14:19:46.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [508 12-12 14:19:46.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer1.org2.example.com | [447 12-12 14:19:46.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [509 12-12 14:19:46.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [3ee 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:2 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer0.org1.example.com | [495 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | [50a 12-12 14:19:46.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer1.org2.example.com | [448 12-12 14:19:46.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer0.org2.example.com | [3ef 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org1.example.com | [496 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer1.org1.example.com | [50b 12-12 14:19:46.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [449 12-12 14:19:46.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [3f0 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [497 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer1.org1.example.com | [50c 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [44a 12-12 14:19:46.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database -peer0.org2.example.com | [3f1 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [498 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -peer1.org1.example.com | [50d 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org2.example.com | [3f2 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [499 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | +8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer1.org2.example.com | [44b 12-12 14:19:46.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -peer1.org1.example.com | [50e 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org2.example.com | [3f3 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [49a 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -orderer.example.com | SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -peer1.org2.example.com | [44c 12-12 14:19:46.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org2.example.com | [3f4 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [49b 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [50f 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [44d 12-12 14:19:46.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -peer0.org2.example.com | [3f5 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -peer1.org1.example.com | [510 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [49c 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [44e 12-12 14:19:46.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org2.example.com | [3f6 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | cNvAXU8LlQ== -peer1.org2.example.com | [44f 12-12 14:19:46.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org1.example.com | [511 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [49d 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [3f7 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [450 12-12 14:19:46.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [512 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [250 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [3f8 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [451 12-12 14:19:46.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [513 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [49e 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [3f9 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [514 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | [452 12-12 14:19:46.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [3fa 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [515 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org2.example.com | [453 12-12 14:19:46.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [49f 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer0.org2.example.com | [3fb 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org1.example.com | [516 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [454 12-12 14:19:46.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [4a0 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | [3fc 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [455 12-12 14:19:46.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [456 12-12 14:19:46.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [457 12-12 14:19:46.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [458 12-12 14:19:46.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org2.example.com | [459 12-12 14:19:46.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org2.example.com | [45a 12-12 14:19:46.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421fa6260 env 0xc421b18c00 txn 0 -peer1.org1.example.com | [517 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org2.example.com | [3fd 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [4a1 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [45b 12-12 14:19:46.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421b18c00 -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | [518 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [3fe 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [3ff 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer1.org1.example.com | [519 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [4a2 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [400 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [45c 12-12 14:19:46.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\377\312\277\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN\ntV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE\n+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q\nXZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd\n-----END CERTIFICATE-----\n\022\030\n\232\226\276I3\002W\261\367\372\221\321X\323Z\020\273\320\213\000\330A\353" -peer1.org1.example.com | [51a 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -peer0.org1.example.com | [4a3 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [4a4 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [4a5 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org2.example.com | [401 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org2.example.com | [402 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [51b 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [45d 12-12 14:19:46.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org2.example.com | [45e 12-12 14:19:46.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [51c 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [45f 12-12 14:19:46.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP d0f63d3eb6e4bcf73d7a1a7143e3dc9880a9a26b8aeb2aa8d323b803c43c142a} -peer0.org2.example.com | [403 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -peer0.org1.example.com | [4a6 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [51d 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [460 12-12 14:19:46.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [4a7 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -peer0.org2.example.com | [404 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [461 12-12 14:19:46.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [4a8 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org1.example.com | [51e 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [405 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -peer1.org1.example.com | [51f 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer0.org2.example.com | [406 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org2.example.com | [462 12-12 14:19:46.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421bb0000, header channel_header:"\010\001\032\006\010\377\312\277\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN\ntV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE\n+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q\nXZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd\n-----END CERTIFICATE-----\n\022\030\n\232\226\276I3\002W\261\367\372\221\321X\323Z\020\273\320\213\000\330A\353" -peer1.org1.example.com | [520 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [463 12-12 14:19:46.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [464 12-12 14:19:46.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [465 12-12 14:19:46.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [466 12-12 14:19:46.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [467 12-12 14:19:46.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [468 12-12 14:19:46.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [469 12-12 14:19:46.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [521 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [407 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -orderer.example.com | ZM8rwLlgV6XUeTLW -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [251 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -peer1.org2.example.com | [46a 12-12 14:19:46.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [522 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [523 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [4a9 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -orderer.example.com | ZM8rwLlgV6XUeTLW -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [252 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [253 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [254 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [46b 12-12 14:19:46.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [46c 12-12 14:19:46.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [46d 12-12 14:19:46.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [46e 12-12 14:19:46.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [46f 12-12 14:19:46.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer1.org2.example.com | [470 12-12 14:19:46.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [471 12-12 14:19:46.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [472 12-12 14:19:46.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [408 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [409 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [40a 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [40b 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [524 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [473 12-12 14:19:46.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer0.org1.example.com | [4aa 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [255 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [474 12-12 14:19:46.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [525 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org2.example.com | [40c 12-12 14:19:46.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [256 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [40d 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [475 12-12 14:19:46.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins -peer1.org1.example.com | [526 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [527 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [528 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [257 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -peer1.org2.example.com | [476 12-12 14:19:46.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [40e 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org1.example.com | [4ab 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [529 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org1.example.com | [52a 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | [52b 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [52c 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [477 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [40f 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [52d 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org1.example.com | [52e 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org1.example.com | [52f 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org1.example.com | [530 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org1.example.com | [531 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org2.example.com | [478 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [4ac 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [258 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [532 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [410 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [533 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org1.example.com | [534 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [535 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org1.example.com | [536 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org1.example.com | [537 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org1.example.com | [538 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator -peer1.org1.example.com | [539 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org1.example.com | [53a 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org1.example.com | [53b 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org1.example.com | [53c 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage -peer1.org1.example.com | [53d 12-12 14:19:46.79 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [2] -peer1.org1.example.com | [53e 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xa9, 0x25, 0x7e, 0xa0, 0x6a, 0x7a, 0x2b, 0xa5, 0xd0, 0x2, 0x6, 0xdd, 0xd6, 0x21, 0x90, 0x41, 0x28, 0x97, 0x6b, 0x7a, 0xfa, 0x28, 0x3b, 0x30, 0x5, 0x8b, 0x31, 0x53, 0xa1, 0xe1, 0x0, 0x3c} txOffsets= -peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=12143 -peer1.org1.example.com | ] -peer1.org1.example.com | [53f 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26149, bytesLength=12143] for tx ID: [] to index -peer1.org1.example.com | [540 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26149, bytesLength=12143] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org1.example.com | [541 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40087], isChainEmpty=[false], lastBlockNumber=[2] -peer1.org1.example.com | [542 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 2 -peer1.org1.example.com | [543 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 2 -peer1.org1.example.com | [544 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [2] with 1 transaction(s) -peer1.org1.example.com | [545 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to state database -peer1.org1.example.com | [546 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [547 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [548 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer1.org1.example.com | [549 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [54a 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to history database -peer1.org1.example.com | [54b 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -peer1.org1.example.com | [54c 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer1.org1.example.com | [54d 12-12 14:19:46.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -peer1.org1.example.com | [54e 12-12 14:19:46.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [54f 12-12 14:19:46.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org1.example.com | [550 12-12 14:19:46.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [551 12-12 14:19:46.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [552 12-12 14:19:46.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [553 12-12 14:19:46.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [554 12-12 14:19:46.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [555 12-12 14:19:46.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [556 12-12 14:19:46.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [557 12-12 14:19:46.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [558 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:52072 -peer1.org1.example.com | [559 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4201638c0 -peer1.org1.example.com | [55a 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [479 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org1.example.com | [4ad 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [4ae 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org1.example.com | [4af 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [4b0 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org1.example.com | [4b1 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [4b2 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [4b3 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [4b4 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [55b 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [55c 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -peer1.org2.example.com | [47a 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [47b 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [411 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [55d 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [4b5 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [259 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org2.example.com | [412 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [47c 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [55e 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [4b6 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [25a 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org2.example.com | [413 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [47d 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org1.example.com | [55f 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4201479f0, header 0xc4201638f0 -peer0.org1.example.com | [4b7 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [4b8 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [414 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org2.example.com | [47e 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org1.example.com | [560 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -orderer.example.com | [25b 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -peer0.org1.example.com | [4b9 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [47f 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org2.example.com | [415 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org1.example.com | [561 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: e2c25d52745a68ce8854963d7a9f03b3610a4db8767f2a8a7b3396658b7546ce -orderer.example.com | [25c 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [4ba 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer1.org2.example.com | [480 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [416 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [4bb 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [481 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [562 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: e2c25d52745a68ce8854963d7a9f03b3610a4db8767f2a8a7b3396658b7546ce channel id: -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [4bc 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [563 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled -peer0.org2.example.com | [417 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [482 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [4bd 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [418 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [564 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: e2c25d52745a68ce8854963d7a9f03b3610a4db8767f2a8a7b3396658b7546ce channel id: version: 1.1.0 -peer1.org2.example.com | [483 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [4be 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [419 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [565 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=e2c25d52745a68ce8854963d7a9f03b3610a4db8767f2a8a7b3396658b7546ce,syscc=true,proposal=0xc4201479f0,canname=lscc:1.1.0 -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -peer1.org2.example.com | [484 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [4bf 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [41a 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [566 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer1.org2.example.com | [485 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [4c0 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org2.example.com | [41b 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer1.org1.example.com | [567 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [486 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [4c1 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [41c 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [4c2 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [568 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org2.example.com | [41d 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [569 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e2c25d52]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [487 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [4c3 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [41e 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -peer1.org2.example.com | [488 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [56a 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [4c4 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org2.example.com | [41f 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [489 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org1.example.com | [56b 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [4c5 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org2.example.com | [420 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer1.org2.example.com | [48a 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [56c 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e2c25d52]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [4c6 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [421 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [48b 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [4c7 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [422 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [56d 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e2c25d52]Move state message TRANSACTION -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -peer0.org1.example.com | [4c8 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org2.example.com | [48c 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [423 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -peer0.org1.example.com | [4c9 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org1.example.com | [56e 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e2c25d52]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [424 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [48d 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -peer0.org1.example.com | [4ca 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org1.example.com | [56f 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [425 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | xEFWkMtGbgY= -peer1.org2.example.com | [48e 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [4cb 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org1.example.com | [570 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e2c25d52]sending state message TRANSACTION -peer0.org2.example.com | [426 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [48f 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [4cc 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [571 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e2c25d52]Received message TRANSACTION from shim -peer0.org1.example.com | [4cd 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [490 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [4ce 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [427 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [572 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e2c25d52]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [428 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [25d 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [4cf 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [491 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [4d0 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org2.example.com | [429 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org1.example.com | [4d1 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org2.example.com | [492 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [4d2 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org2.example.com | [42a 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [493 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [573 12-12 14:19:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e2c25d52]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [4d3 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [494 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [4d4 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org1.example.com | [574 12-12 14:19:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e2c25d52]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [42b 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [4d5 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | [575 12-12 14:19:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e2c25d52]Move state message COMPLETED -peer1.org2.example.com | [495 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [4d6 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -peer1.org1.example.com | [576 12-12 14:19:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e2c25d52]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [42c 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -peer0.org1.example.com | [4d7 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org2.example.com | [42d 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org2.example.com | [496 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [577 12-12 14:19:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e2c25d52]send state message COMPLETED -peer0.org1.example.com | [4d8 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org2.example.com | [42e 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | [497 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [4d9 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org2.example.com | [42f 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org1.example.com | [578 12-12 14:19:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e2c25d52]Received message COMPLETED from shim -peer0.org1.example.com | [4da 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org2.example.com | [498 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [4db 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org1.example.com | [579 12-12 14:19:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e2c25d52]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [430 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org2.example.com | [499 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -peer0.org1.example.com | [4dc 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer1.org1.example.com | [57a 12-12 14:19:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e2c25d52745a68ce8854963d7a9f03b3610a4db8767f2a8a7b3396658b7546ce]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [431 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [4dd 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421fe3960 env 0xc421d3c5a0 txn 0 -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -peer1.org2.example.com | [49a 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [57b 12-12 14:19:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e2c25d52745a68ce8854963d7a9f03b3610a4db8767f2a8a7b3396658b7546ce, channelID: -peer0.org1.example.com | [4de 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org2.example.com | [432 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -peer1.org2.example.com | [49b 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [4df 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org1.example.com | [57c 12-12 14:19:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -peer1.org2.example.com | [49c 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [4e0 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org1.example.com | [57d 12-12 14:19:48.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [433 12-12 14:19:46.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -peer1.org2.example.com | [49d 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [434 12-12 14:19:46.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [4e1 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] -peer1.org1.example.com | [57e 12-12 14:19:48.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [49e 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | OwJpoynNCyKsWozuVw== -peer0.org2.example.com | [435 12-12 14:19:46.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [4e2 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [57f 12-12 14:19:48.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:52072) -peer1.org2.example.com | [49f 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer0.org2.example.com | [436 12-12 14:19:46.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [4e3 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] -peer0.org2.example.com | [437 12-12 14:19:46.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org2.example.com | [4a0 12-12 14:19:46.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org1.example.com | [580 12-12 14:19:48.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer �Op��=a�C���i��Ǧ&�s����.�p�>� message sent from ���-�w}�T�q�Lb��)L�xy�=�9� -peer0.org2.example.com | [438 12-12 14:19:46.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [] marked as valid by state validator -orderer.example.com | [25e 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [4e4 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org2.example.com | [439 12-12 14:19:46.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org1.example.com | [581 12-12 14:19:48.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:EMPTY alive_msg:\377" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes isn't valid -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [43a 12-12 14:19:46.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org1.example.com | [4e5 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer0.org2.example.com | [43b 12-12 14:19:46.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org1.example.com | [582 12-12 14:19:48.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:EMPTY alive_msg:\377" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes isn't valid -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [4a1 12-12 14:19:46.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [43c 12-12 14:19:46.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage -peer1.org1.example.com | [583 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] -peer0.org1.example.com | [4e6 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | [43d 12-12 14:19:46.75 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [1] -peer1.org2.example.com | [4a2 12-12 14:19:46.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [584 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -peer0.org2.example.com | [43e 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xaa, 0x33, 0x62, 0xe7, 0x6e, 0x3e, 0x2a, 0x1d, 0x13, 0xf, 0x7d, 0x40, 0x89, 0x46, 0x8f, 0xc6, 0x81, 0xca, 0x6b, 0x47, 0xa0, 0xe5, 0x13, 0x29, 0xc3, 0x28, 0x2d, 0x98, 0x7c, 0x46, 0xf1, 0x84} txOffsets= -peer0.org1.example.com | [4e7 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer1.org2.example.com | [4a3 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=12093 -peer0.org2.example.com | ] -peer0.org1.example.com | [4e8 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [585 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | [4a4 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [43f 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12093] for tx ID: [] to index -peer0.org1.example.com | [4e9 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer1.org1.example.com | [586 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -peer1.org2.example.com | [4a5 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org2.example.com | [440 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12093] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org1.example.com | [587 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422c62e40 env 0xc422c46990 txn 0 -peer1.org1.example.com | [588 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422c46990 -peer0.org1.example.com | [4ea 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer0.org2.example.com | [441 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26079], isChainEmpty=[false], lastBlockNumber=[1] -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -peer1.org2.example.com | [4a6 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [589 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\205\313\277\321\005\020\354\360\344\313\001\"\017businesschannel*@d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv\npydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS\nq+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c\ngHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf\nOwJpoynNCyKsWozuVw==\n-----END CERTIFICATE-----\n\022\0304\343~\010i\016\025q\305'%p7\350\210Xg\357(,\214\004]J" -peer0.org2.example.com | [442 12-12 14:19:46.76 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 1 -peer0.org1.example.com | [4eb 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -peer1.org1.example.com | [58a 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [4a7 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [443 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 1 -peer0.org1.example.com | [4ec 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -peer1.org2.example.com | [4a8 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org2.example.com | [444 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) -peer1.org2.example.com | [4a9 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [4ed 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [445 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database -peer1.org1.example.com | [58b 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -peer0.org1.example.com | [4ee 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [4aa 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [58c 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -peer0.org2.example.com | [446 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [4ef 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [4f0 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [4f1 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -peer0.org1.example.com | [4f2 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org2.example.com | [4ab 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [58d 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [4f3 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | OwJpoynNCyKsWozuVw== -peer0.org2.example.com | [447 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [58e 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [4f4 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [448 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer1.org2.example.com | [4ac 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [4f5 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [58f 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421901500, header channel_header:"\010\003\032\014\010\205\313\277\321\005\020\354\360\344\313\001\"\017businesschannel*@d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv\npydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS\nq+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c\ngHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf\nOwJpoynNCyKsWozuVw==\n-----END CERTIFICATE-----\n\022\0304\343~\010i\016\025q\305'%p7\350\210Xg\357(,\214\004]J" -orderer.example.com | [25f 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org2.example.com | [449 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [4ad 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [4f6 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [260 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -peer1.org1.example.com | [590 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org2.example.com | [44a 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database -peer0.org1.example.com | [4f7 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [591 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [44b 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -peer0.org1.example.com | [4f8 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [4ae 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org2.example.com | [44c 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -orderer.example.com | [261 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer1.org1.example.com | [592 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [4f9 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [44d 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -peer1.org2.example.com | [4af 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [4fa 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [44e 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -orderer.example.com | [262 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -peer0.org2.example.com | [44f 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org1.example.com | [593 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [4b0 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org2.example.com | [450 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [451 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [4fb 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [263 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -peer1.org2.example.com | [4b1 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org1.example.com | [594 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] -peer0.org2.example.com | [452 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [4fc 12-12 14:19:46.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [264 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -peer0.org2.example.com | [453 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [4fd 12-12 14:19:46.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [595 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [4b2 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [454 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [265 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -peer0.org1.example.com | [4fe 12-12 14:19:46.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [455 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [4b3 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [596 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422c46990 envbytes 0xc421ac0380 -orderer.example.com | [266 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -peer0.org1.example.com | [4ff 12-12 14:19:46.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [456 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [597 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc421ac0380 -peer1.org2.example.com | [4b4 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org2.example.com | [457 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [267 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -peer0.org1.example.com | [500 12-12 14:19:46.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [598 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [458 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org2.example.com | [4b5 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [268 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -peer0.org1.example.com | [501 12-12 14:19:46.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [459 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [599 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] -peer1.org2.example.com | [4b6 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | [502 12-12 14:19:46.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer0.org2.example.com | [45a 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4222feb00 env 0xc4223e8de0 txn 0 -peer1.org1.example.com | [59a 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=71dc40d3-0824-407a-a025-97651fa09108,syscc=true,proposal=0x0,canname=vscc:1.1.0 -orderer.example.com | [269 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -peer1.org2.example.com | [4b7 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [45b 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4223e8de0 -peer1.org1.example.com | [59b 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d chaindID businesschannel -peer0.org1.example.com | [503 12-12 14:19:46.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [26a 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -peer1.org2.example.com | [4b8 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [45c 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\377\312\277\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN\ntV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE\n+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q\nXZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd\n-----END CERTIFICATE-----\n\022\030\n\232\226\276I3\002W\261\367\372\221\321X\323Z\020\273\320\213\000\330A\353" -peer1.org1.example.com | [59c 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer0.org1.example.com | [504 12-12 14:19:46.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [4b9 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [45d 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org1.example.com | [59d 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [26b 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -peer0.org2.example.com | [45e 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [59e 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer0.org1.example.com | [505 12-12 14:19:46.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [4ba 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [26c 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -peer0.org2.example.com | [45f 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP d0f63d3eb6e4bcf73d7a1a7143e3dc9880a9a26b8aeb2aa8d323b803c43c142a} -peer1.org1.example.com | [59f 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [71dc40d3]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [4bb 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [506 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [460 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [26d 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -peer1.org2.example.com | [4bc 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [461 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [5a0 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [507 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [26e 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -peer0.org2.example.com | [462 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421ab6000, header channel_header:"\010\001\032\006\010\377\312\277\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN\ntV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE\n+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q\nXZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd\n-----END CERTIFICATE-----\n\022\030\n\232\226\276I3\002W\261\367\372\221\321X\323Z\020\273\320\213\000\330A\353" -peer0.org1.example.com | [508 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org2.example.com | [4bd 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [5a1 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [71dc40d3]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [26f 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -peer0.org2.example.com | [463 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [509 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [270 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -peer1.org1.example.com | [5a2 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [71dc40d3]Move state message TRANSACTION -orderer.example.com | [271 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -peer0.org1.example.com | [50a 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [4be 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [464 12-12 14:19:46.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [5a3 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [71dc40d3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [272 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -peer0.org2.example.com | [465 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [4bf 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [273 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -peer1.org1.example.com | [5a4 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [466 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [4c0 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [274 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -peer0.org1.example.com | [50b 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org1.example.com | [5a5 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [71dc40d3]sending state message TRANSACTION -peer1.org2.example.com | [4c1 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [275 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [4c2 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [5a6 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71dc40d3]Received message TRANSACTION from shim -peer0.org2.example.com | [467 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [50c 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -orderer.example.com | [276 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org1.example.com | [5a7 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [71dc40d3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [468 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [277 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [5a8 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [71dc40d3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [469 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [278 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [4c3 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [5a9 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [50d 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [279 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [4c4 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org1.example.com | [5aa 12-12 14:19:59.00 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 | [46a 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [27a 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [4c5 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | [5ab 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer0.org1.example.com | [50e 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [27b 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [4c6 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [5ac 12-12 14:19:59.00 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [46b 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [27c 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [4c7 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [5ad 12-12 14:19:59.00 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [27d 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org2.example.com | [4c8 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org1.example.com | [5ae 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -orderer.example.com | [27e 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [4c9 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [46c 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [510 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [5af 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [56c34ce3-b564-4fac-bb5b-00b6e71a8b3b] -orderer.example.com | [27f 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org2.example.com | [4ca 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org1.example.com | [5b0 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [4cb 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [46d 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [5b1 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [56c34ce3-b564-4fac-bb5b-00b6e71a8b3b] -peer1.org2.example.com | [4cc 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org1.example.com | [511 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | [280 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org1.example.com | [5b2 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer0.org2.example.com | [46e 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [4cd 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [5b3 12-12 14:19:59.00 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)(0x990b90), deserializer:(*msp.mspManagerImpl)(0xc4229b5040)} -peer0.org2.example.com | [46f 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer0.org1.example.com | [512 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org2.example.com | [4ce 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org1.example.com | [5b4 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org2.example.com | [470 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [513 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | [281 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [4cf 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [5b5 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71dc40d3]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [471 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [4d0 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org1.example.com | [514 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [282 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [5b6 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71dc40d3]Move state message COMPLETED -peer1.org2.example.com | [4d1 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org1.example.com | [515 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org1.example.com | [5b7 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [71dc40d3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [4d2 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org1.example.com | [516 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [283 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [5b8 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71dc40d3]send state message COMPLETED -peer1.org2.example.com | [4d3 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org2.example.com | [472 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [517 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [5b9 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [71dc40d3]Received message COMPLETED from shim -peer1.org2.example.com | [4d4 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [284 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [518 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [5ba 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [71dc40d3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [4d5 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org2.example.com | [473 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [5bb 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [71dc40d3-0824-407a-a025-97651fa09108]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [4d6 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -orderer.example.com | [285 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [474 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins -peer0.org1.example.com | [519 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [4d7 12-12 14:19:47.00 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -orderer.example.com | [286 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [5bc 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:71dc40d3-0824-407a-a025-97651fa09108, channelID:businesschannel -peer0.org2.example.com | [475 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer1.org2.example.com | [4d8 12-12 14:19:47.02 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org1.example.com | [5bd 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [51a 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [4d9 12-12 14:19:47.02 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -orderer.example.com | [287 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [51b 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [476 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [4da 12-12 14:19:47.02 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -orderer.example.com | [288 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [5be 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] -peer0.org1.example.com | [51c 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [477 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [4db 12-12 14:19:47.02 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -orderer.example.com | [289 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [51d 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer1.org1.example.com | [5bf 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc421ac0380 -peer0.org2.example.com | [478 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [4dc 12-12 14:19:47.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer1.org1.example.com | [5c0 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422c46990 envbytes 0xc421ac0380 -orderer.example.com | [28a 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [51e 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [4dd 12-12 14:19:47.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421fa6260 env 0xc421b18c00 txn 0 -peer0.org2.example.com | [479 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [5c1 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422c62e40 env 0xc422c46990 txn 0 -orderer.example.com | [28b 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [47a 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [47b 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [47c 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org2.example.com | [47d 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org2.example.com | [4de 12-12 14:19:47.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org1.example.com | [5c2 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org1.example.com | [51f 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [28c 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [4df 12-12 14:19:47.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org1.example.com | [5c3 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org2.example.com | [47e 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | [28d 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [4e0 12-12 14:19:47.03 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org2.example.com | [47f 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org1.example.com | [5c4 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] -peer0.org1.example.com | [520 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [5c5 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [5c6 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [3] -peer1.org1.example.com | [5c7 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org1.example.com | [521 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [5c8 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -peer0.org2.example.com | [480 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [28e 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [522 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [4e1 12-12 14:19:47.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] -peer1.org1.example.com | [5c9 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | [481 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [523 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [28f 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [4e2 12-12 14:19:47.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [5ca 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) -peer0.org2.example.com | [482 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [4e3 12-12 14:19:47.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] -peer0.org1.example.com | [524 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [483 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [484 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [485 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [5cb 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] marked as valid by state validator -peer0.org1.example.com | [525 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [4e4 12-12 14:19:47.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -orderer.example.com | [290 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org2.example.com | [486 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [5cc 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org1.example.com | [526 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [4e5 12-12 14:19:47.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -orderer.example.com | [291 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [487 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [292 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [4e6 12-12 14:19:47.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer1.org1.example.com | [5cd 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org1.example.com | [527 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org2.example.com | [488 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [293 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [5ce 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org1.example.com | [528 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [4e7 12-12 14:19:47.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -orderer.example.com | [294 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [489 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org1.example.com | [5cf 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage -orderer.example.com | [295 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org1.example.com | [529 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [5d0 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [3] -peer0.org2.example.com | [48a 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [4e8 12-12 14:19:47.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [52a 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [296 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [4e9 12-12 14:19:47.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer0.org1.example.com | [52b 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [48b 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [4ea 12-12 14:19:47.04 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer1.org1.example.com | [5d1 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x34, 0x2, 0x99, 0xb0, 0xd2, 0xb, 0x90, 0x75, 0x7, 0xf4, 0x2a, 0xad, 0x5e, 0xc7, 0xb9, 0xc7, 0x6c, 0xe1, 0x51, 0x1a, 0xa2, 0xad, 0x31, 0x80, 0x80, 0x54, 0x30, 0x62, 0x36, 0xf4, 0xaf, 0xeb} txOffsets= -orderer.example.com | [297 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org1.example.com | [52c 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org2.example.com | [48c 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | txId=d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d locPointer=offset=70, bytesLength=3454 -peer1.org2.example.com | [4eb 12-12 14:19:47.04 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -orderer.example.com | [298 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org1.example.com | [52d 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [48d 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | ] -peer1.org2.example.com | [4ec 12-12 14:19:47.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org1.example.com | [52e 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [299 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [48e 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [4ed 12-12 14:19:47.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [29a 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [4ee 12-12 14:19:47.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [5d2 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40157, bytesLength=3454] for tx ID: [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] to index -orderer.example.com | [29b 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org2.example.com | [4ef 12-12 14:19:47.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [48f 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org1.example.com | [5d3 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40157, bytesLength=3454] for tx number:[0] ID: [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] to blockNumTranNum index -peer0.org1.example.com | [52f 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [29c 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:36748 -peer1.org2.example.com | [4f0 12-12 14:19:47.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [490 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [530 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [29d 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org1.example.com | [5d4 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45405], isChainEmpty=[false], lastBlockNumber=[3] -peer1.org2.example.com | [4f1 12-12 14:19:47.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [531 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [29e 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [5d5 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 3 -peer1.org2.example.com | [4f2 12-12 14:19:47.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org1.example.com | [532 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org2.example.com | [491 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [29f 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [4f3 12-12 14:19:47.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [533 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org1.example.com | [5d6 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 3 -peer0.org2.example.com | [492 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [2a0 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [5d7 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [3] with 1 transaction(s) -peer0.org1.example.com | [534 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org2.example.com | [4f4 12-12 14:19:47.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [535 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org2.example.com | [493 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [4f5 12-12 14:19:47.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [2a1 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [536 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator -peer1.org1.example.com | [5d8 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database -peer1.org2.example.com | [4f6 12-12 14:19:47.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [494 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [537 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org2.example.com | [4f7 12-12 14:19:47.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [2a2 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [495 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [538 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org1.example.com | [5d9 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [4f8 12-12 14:19:47.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer0.org2.example.com | [496 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [539 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org2.example.com | [4f9 12-12 14:19:47.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org1.example.com | [5da 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [53a 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage -peer1.org2.example.com | [4fa 12-12 14:19:47.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [2a3 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org2.example.com | [497 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [53b 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [2] -peer1.org2.example.com | [4fb 12-12 14:19:47.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [2a4 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [53c 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xa9, 0x25, 0x7e, 0xa0, 0x6a, 0x7a, 0x2b, 0xa5, 0xd0, 0x2, 0x6, 0xdd, 0xd6, 0x21, 0x90, 0x41, 0x28, 0x97, 0x6b, 0x7a, 0xfa, 0x28, 0x3b, 0x30, 0x5, 0x8b, 0x31, 0x53, 0xa1, 0xe1, 0x0, 0x3c} txOffsets= -orderer.example.com | [2a5 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [4fc 12-12 14:19:47.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [498 12-12 14:19:46.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [5db 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccmycc] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] -peer0.org1.example.com | txId= locPointer=offset=70, bytesLength=12143 -orderer.example.com | [2a6 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org2.example.com | [4fd 12-12 14:19:47.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [5dc 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer0.org2.example.com | [499 12-12 14:19:46.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org1.example.com | ] -peer1.org2.example.com | [4fe 12-12 14:19:47.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org1.example.com | [5dd 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -orderer.example.com | [2a7 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [53d 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26149, bytesLength=12143] for tx ID: [] to index -peer1.org2.example.com | [4ff 12-12 14:19:47.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [49a 12-12 14:19:46.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [5de 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [53e 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26149, bytesLength=12143] for tx number:[0] ID: [] to blockNumTranNum index -orderer.example.com | [2a8 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [500 12-12 14:19:47.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org1.example.com | [5df 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database -peer0.org1.example.com | [53f 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40087], isChainEmpty=[false], lastBlockNumber=[2] -peer0.org2.example.com | [49b 12-12 14:19:46.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [501 12-12 14:19:47.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [540 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 2 -orderer.example.com | [2a9 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [5e0 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -peer0.org2.example.com | [49c 12-12 14:19:46.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [541 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 2 -orderer.example.com | [2aa 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [502 12-12 14:19:47.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [49d 12-12 14:19:46.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [5e1 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -peer1.org2.example.com | [503 12-12 14:19:47.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [542 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [2] with 1 transaction(s) -peer0.org2.example.com | [49e 12-12 14:19:46.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [5e2 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [504 12-12 14:19:47.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [2ab 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [543 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to state database -peer0.org2.example.com | [49f 12-12 14:19:46.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -orderer.example.com | [2ac 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [5e3 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d -peer1.org2.example.com | [505 12-12 14:19:47.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [544 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -orderer.example.com | [2ad 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org2.example.com | [4a0 12-12 14:19:46.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org1.example.com | [5e4 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [506 12-12 14:19:47.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [545 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -orderer.example.com | [2ae 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org2.example.com | [4a1 12-12 14:19:46.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [5e5 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [546 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer0.org2.example.com | [4a2 12-12 14:19:46.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [2af 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -peer1.org1.example.com | [5e6 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [507 12-12 14:19:47.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [547 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [4a3 12-12 14:19:46.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [508 12-12 14:19:47.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [5e7 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [2b0 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [4a4 12-12 14:19:46.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [509 12-12 14:19:47.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [548 12-12 14:19:46.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to history database -peer1.org1.example.com | [5e8 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [4a5 12-12 14:19:46.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -peer1.org2.example.com | [50a 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [5e9 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [549 12-12 14:19:46.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -peer0.org2.example.com | [4a6 12-12 14:19:46.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [5ea 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [54a 12-12 14:19:46.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer1.org2.example.com | [50b 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org2.example.com | [4a7 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [5eb 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [50c 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [54b 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -peer0.org2.example.com | [4a8 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org1.example.com | [54c 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [5ec 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [50d 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org2.example.com | [4a9 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org1.example.com | [5ed 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] -peer0.org2.example.com | [4aa 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [50e 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -peer1.org1.example.com | [5ee 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] -peer0.org1.example.com | [54d 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [50f 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org2.example.com | [4ab 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -peer0.org1.example.com | [54e 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [510 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [4ac 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [5ef 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org1.example.com | [54f 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -peer1.org2.example.com | [511 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [4ad 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [5f0 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [5f1 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4232708a0 env 0xc42327e390 txn 0 -peer1.org1.example.com | [5f2 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42327e390 -peer1.org2.example.com | [512 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -peer1.org2.example.com | [513 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [4ae 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [550 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [4af 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -peer1.org1.example.com | [5f3 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\215\313\277\321\005\020\254\341\337\036\"\017businesschannel*@21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea:\010\022\006\022\004lscc" signature_header:"\n\236\006\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk\nEEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT\n6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB\n9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf\nZM8rwLlgV6XUeTLW\n-----END CERTIFICATE-----\n\022\030gg\245 ,^sl\007N\340**\"Z YL^\277m\034&\326" -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -peer0.org2.example.com | [4b0 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [514 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [551 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | 0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= -peer1.org1.example.com | [5f4 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [4b1 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [5f5 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [552 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [2b1 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [4b2 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org2.example.com | [515 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org2.example.com | [4b3 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [5f6 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP cec57e02e224c3efa1075c97d8c3172cd78fec768b3b75afcf280ac60a493411} -peer0.org1.example.com | [553 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [516 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -peer0.org2.example.com | [4b4 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [5f7 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [554 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [517 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [4b5 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [5f8 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org2.example.com | [518 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | [555 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -peer1.org1.example.com | [5f9 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42328c000, header channel_header:"\010\003\032\013\010\215\313\277\321\005\020\254\341\337\036\"\017businesschannel*@21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea:\010\022\006\022\004lscc" signature_header:"\n\236\006\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk\nEEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT\n6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB\n9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf\nZM8rwLlgV6XUeTLW\n-----END CERTIFICATE-----\n\022\030gg\245 ,^sl\007N\340**\"Z YL^\277m\034&\326" -peer0.org2.example.com | [4b6 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [556 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36682 -peer1.org2.example.com | [519 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [4b7 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [5fa 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [557 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422e96360 -peer0.org2.example.com | [4b8 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [51a 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [5fb 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [558 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [51b 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org1.example.com | [559 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [5fc 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [4b9 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -peer1.org2.example.com | [51c 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [5fd 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [4ba 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [55a 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -peer0.org1.example.com | [55b 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [4bb 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [51d 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer0.org1.example.com | [55c 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org2.example.com | [4bc 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [51e 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [5fe 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] -peer0.org1.example.com | [55d 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422dff810, header 0xc422e963c0 -peer0.org2.example.com | [4bd 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -peer1.org1.example.com | [5ff 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [55e 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org2.example.com | [4be 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [600 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc42327e390 envbytes 0xc423278880 -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -peer1.org2.example.com | [51f 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [55f 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 4c52e93f5219baf92f0161e14b9d33cc3e044d9232c45ded74a44082e60063e3 -peer0.org2.example.com | [4bf 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [601 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc423278880 -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -peer1.org2.example.com | [520 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [560 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 4c52e93f5219baf92f0161e14b9d33cc3e044d9232c45ded74a44082e60063e3 channel id: -peer1.org1.example.com | [602 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [4c0 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [521 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [603 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] -peer0.org1.example.com | [561 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled -orderer.example.com | [2b2 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:36748: rpc error: code = Canceled desc = context canceled -peer1.org1.example.com | [604 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=07df8adb-f14c-4f3a-9f16-ff9bedffa6e3,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org2.example.com | [4c1 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [605 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea chaindID businesschannel -peer1.org2.example.com | [522 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [562 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 4c52e93f5219baf92f0161e14b9d33cc3e044d9232c45ded74a44082e60063e3 channel id: version: 1.1.0 -peer0.org2.example.com | [4c2 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [2b3 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -peer1.org1.example.com | [606 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer1.org2.example.com | [523 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [2b4 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [4c3 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [563 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=4c52e93f5219baf92f0161e14b9d33cc3e044d9232c45ded74a44082e60063e3,syscc=true,proposal=0xc422dff810,canname=lscc:1.1.0 -peer0.org2.example.com | [4c4 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org2.example.com | [524 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [607 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [4c5 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [564 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -peer1.org2.example.com | [525 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [4c6 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [608 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [526 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [565 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [4c7 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [609 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [07df8adb]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [566 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org2.example.com | [4c8 12-12 14:19:46.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org2.example.com | [527 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org1.example.com | [60a 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [567 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4c52e93f]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [4c9 12-12 14:19:46.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -peer1.org1.example.com | [60b 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [07df8adb]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [568 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [4ca 12-12 14:19:46.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [528 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | [60c 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [07df8adb]Move state message TRANSACTION -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org2.example.com | [4cb 12-12 14:19:46.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org1.example.com | [569 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [529 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [4cc 12-12 14:19:46.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org1.example.com | [60d 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [07df8adb]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org1.example.com | [56a 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4c52e93f]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [4cd 12-12 14:19:46.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [60e 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [52a 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [56b 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4c52e93f]Move state message TRANSACTION -peer0.org2.example.com | [4ce 12-12 14:19:46.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -peer0.org1.example.com | [56c 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4c52e93f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [4cf 12-12 14:19:46.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org1.example.com | [60f 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [07df8adb]sending state message TRANSACTION -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org2.example.com | [4d0 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer1.org2.example.com | [52b 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org1.example.com | [56d 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [4d1 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org1.example.com | [610 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [07df8adb]Received message TRANSACTION from shim -peer1.org2.example.com | [52c 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -peer0.org1.example.com | [56e 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4c52e93f]sending state message TRANSACTION -peer0.org2.example.com | [4d2 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org1.example.com | [611 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [07df8adb]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -peer1.org2.example.com | [52d 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org1.example.com | [56f 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4c52e93f]Received message TRANSACTION from shim -peer0.org2.example.com | [4d3 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -peer1.org2.example.com | [52e 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org1.example.com | [612 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [07df8adb]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [570 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4c52e93f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [4d4 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org2.example.com | [52f 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org1.example.com | [613 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org2.example.com | [4d5 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [571 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4c52e93f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [4d6 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -orderer.example.com | [2b5 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU Rejecting deliver for 172.18.0.7:36746 because channel businesschannel not found -peer1.org1.example.com | [614 12-12 14:20:05.48 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 | [4d7 12-12 14:19:46.87 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org2.example.com | [530 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [572 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4c52e93f]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [531 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [615 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer0.org2.example.com | [4d8 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -orderer.example.com | [2b6 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -peer0.org1.example.com | [573 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4c52e93f]Move state message COMPLETED -peer1.org2.example.com | [532 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [4d9 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org1.example.com | [574 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4c52e93f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [533 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org1.example.com | [616 12-12 14:20:05.48 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [2b7 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org2.example.com | [4da 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org2.example.com | [534 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -orderer.example.com | [2b8 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [535 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org1.example.com | [617 12-12 14:20:05.48 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [4db 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -orderer.example.com | [2b9 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [536 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator -peer0.org2.example.com | [4dc 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer0.org1.example.com | [575 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4c52e93f]send state message COMPLETED -peer1.org1.example.com | [618 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org2.example.com | [537 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -orderer.example.com | [2ba 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [4dd 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4222feb00 env 0xc4223e8de0 txn 0 -peer0.org1.example.com | [576 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4c52e93f]Received message COMPLETED from shim -peer1.org2.example.com | [538 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org1.example.com | [619 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [32139382-abda-463a-9980-63fd77b0cc1f] -peer0.org2.example.com | [4de 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org1.example.com | [61a 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [539 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org1.example.com | [577 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4c52e93f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [2bb 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [4df 12-12 14:19:46.88 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org1.example.com | [61b 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [32139382-abda-463a-9980-63fd77b0cc1f] -peer1.org2.example.com | [53a 12-12 14:19:47.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage -peer0.org1.example.com | [578 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4c52e93f5219baf92f0161e14b9d33cc3e044d9232c45ded74a44082e60063e3]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [4e0 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -orderer.example.com | [2bc 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [61c 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer1.org2.example.com | [53b 12-12 14:19:47.07 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [2] -orderer.example.com | [2bd 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org1.example.com | [579 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:4c52e93f5219baf92f0161e14b9d33cc3e044d9232c45ded74a44082e60063e3, channelID: -peer1.org2.example.com | [53c 12-12 14:19:47.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xa9, 0x25, 0x7e, 0xa0, 0x6a, 0x7a, 0x2b, 0xa5, 0xd0, 0x2, 0x6, 0xdd, 0xd6, 0x21, 0x90, 0x41, 0x28, 0x97, 0x6b, 0x7a, 0xfa, 0x28, 0x3b, 0x30, 0x5, 0x8b, 0x31, 0x53, 0xa1, 0xe1, 0x0, 0x3c} txOffsets= -peer1.org1.example.com | [61d 12-12 14:20:05.48 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)(0x990b90), deserializer:(*msp.mspManagerImpl)(0xc4229b5040)} -peer0.org2.example.com | [4e1 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] -peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=12143 -peer1.org1.example.com | [61e 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated -peer0.org1.example.com | [57a 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | ] -peer1.org1.example.com | [61f 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [07df8adb]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [4e2 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [57b 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | [2be 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [53d 12-12 14:19:47.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26149, bytesLength=12143] for tx ID: [] to index -peer1.org1.example.com | [620 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [07df8adb]Move state message COMPLETED -peer1.org2.example.com | [53e 12-12 14:19:47.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26149, bytesLength=12143] for tx number:[0] ID: [] to blockNumTranNum index -orderer.example.com | [2bf 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [57c 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org1.example.com | [621 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [07df8adb]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [53f 12-12 14:19:47.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40087], isChainEmpty=[false], lastBlockNumber=[2] -peer0.org2.example.com | [4e3 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] -peer1.org1.example.com | [622 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [07df8adb]send state message COMPLETED -peer1.org2.example.com | [540 12-12 14:19:47.07 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 2 -orderer.example.com | [2c0 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org1.example.com | [57d 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36682) -peer1.org1.example.com | [623 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [07df8adb]Received message COMPLETED from shim -peer1.org2.example.com | [541 12-12 14:19:47.07 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 2 -peer0.org2.example.com | [4e4 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org1.example.com | [624 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [07df8adb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [57e 12-12 14:19:48.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> WARN Failed reading messge from 172.18.0.5:58452, reason: Timed out waiting for connection message from 172.18.0.5:58452 -orderer.example.com | [2c1 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -peer1.org1.example.com | [625 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [07df8adb-f14c-4f3a-9f16-ff9bedffa6e3]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [542 12-12 14:19:47.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [2] with 1 transaction(s) -peer0.org2.example.com | [4e5 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer0.org1.example.com | [57f 12-12 14:19:48.76 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.5:58452 -peer1.org1.example.com | [626 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:07df8adb-f14c-4f3a-9f16-ff9bedffa6e3, channelID:businesschannel -orderer.example.com | [2c2 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36746 -peer0.org2.example.com | [4e6 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer1.org1.example.com | [627 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [2c4 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36746 -peer1.org2.example.com | [543 12-12 14:19:47.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to state database -peer1.org1.example.com | [628 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea, error Chaincode mycc is already instantiated -peer0.org2.example.com | [4e7 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer0.org1.example.com | [580 12-12 14:19:49.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36730 -peer1.org1.example.com | [629 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] -peer0.org2.example.com | [4e8 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [2c3 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [544 12-12 14:19:47.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [581 12-12 14:19:49.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4230f5e90 -peer1.org1.example.com | [62a 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc423278880 -orderer.example.com | MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -peer1.org2.example.com | [545 12-12 14:19:47.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [582 12-12 14:19:49.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [4e9 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer1.org1.example.com | [62b 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc42327e390 envbytes 0xc423278880 -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [62c 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea returned error Chaincode mycc is already instantiated -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [583 12-12 14:19:49.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [546 12-12 14:19:47.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer1.org1.example.com | [62d 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4232708a0 env 0xc42327e390 txn 0 -peer0.org2.example.com | [4ea 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer0.org1.example.com | [584 12-12 14:19:49.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -peer1.org1.example.com | [62e 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer1.org1.example.com | [62f 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org2.example.com | [547 12-12 14:19:47.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [4eb 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer0.org1.example.com | [585 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | [630 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] -peer0.org2.example.com | [4ec 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer0.org1.example.com | [586 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [548 12-12 14:19:47.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to history database -peer1.org1.example.com | [631 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [4ed 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer1.org1.example.com | [632 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] -peer1.org2.example.com | [549 12-12 14:19:47.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -peer0.org2.example.com | [4ee 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -peer1.org1.example.com | [633 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org2.example.com | [4ef 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | +8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer1.org1.example.com | [634 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> WARN Channel [businesschannel]: Block [4] Transaction index [0] TxId [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] -peer0.org1.example.com | [587 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4230f7220, header 0xc4230f5ec0 -peer1.org2.example.com | [54a 12-12 14:19:47.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org2.example.com | [4f0 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -peer1.org1.example.com | [635 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org2.example.com | [4f1 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -peer1.org2.example.com | [54b 12-12 14:19:47.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -peer0.org1.example.com | [588 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer1.org1.example.com | [636 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org2.example.com | [4f2 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -peer1.org1.example.com | [637 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org2.example.com | [54c 12-12 14:19:47.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -orderer.example.com | cNvAXU8LlQ== -peer0.org2.example.com | [4f3 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [54d 12-12 14:19:47.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [589 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d -peer1.org1.example.com | [638 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage -peer0.org2.example.com | [4f4 12-12 14:19:46.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [2c5 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [54e 12-12 14:19:47.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [58a 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] -peer0.org2.example.com | [4f5 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -peer1.org1.example.com | [639 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [4] -peer1.org2.example.com | [54f 12-12 14:19:47.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [4f6 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [58b 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [4f7 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [63a 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x39, 0x2e, 0x71, 0x22, 0x2a, 0x60, 0xa4, 0x53, 0x7, 0x31, 0x12, 0xb7, 0x15, 0xa2, 0xa0, 0xb7, 0xc6, 0x75, 0x17, 0x40, 0x71, 0xfa, 0xe4, 0x1f, 0xf9, 0x2a, 0xc1, 0x5a, 0xc1, 0x3b, 0xd1, 0xa6} txOffsets= -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | [550 12-12 14:19:47.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [4f8 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [58c 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] -peer1.org1.example.com | txId=21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea locPointer=offset=70, bytesLength=3442 -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer0.org2.example.com | [4f9 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [58d 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d channel id: businesschannel -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | [551 12-12 14:19:47.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [4fa 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer1.org1.example.com | ] -peer0.org2.example.com | [4fb 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -peer1.org2.example.com | [552 12-12 14:19:47.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [58e 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled -peer0.org2.example.com | [4fc 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org1.example.com | [63b 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45475, bytesLength=3442] for tx ID: [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] to index -peer0.org1.example.com | [58f 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d channel id: businesschannel version: 1.1.0 -peer0.org2.example.com | [4fd 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -peer1.org1.example.com | [63c 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45475, bytesLength=3442] for tx number:[0] ID: [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] to blockNumTranNum index -peer1.org2.example.com | [553 12-12 14:19:47.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -peer0.org2.example.com | [4fe 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [590 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d,syscc=true,proposal=0xc4230f7220,canname=lscc:1.1.0 -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -peer1.org1.example.com | [63d 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50711], isChainEmpty=[false], lastBlockNumber=[4] -peer1.org2.example.com | [554 12-12 14:19:47.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [4ff 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -peer1.org2.example.com | [555 12-12 14:19:47.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [591 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer1.org1.example.com | [63e 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 4 -orderer.example.com | ZM8rwLlgV6XUeTLW -peer0.org2.example.com | [500 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [556 12-12 14:19:48.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg -> WARN StateInfo message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\257q\243d\243\203\331\r\241 \376!\261I\036`;\224\214\tr\177A/~\273M\346\267\020h3" channel_MAC:"$\203\024{R\367\023/\0358\375o\255\342\374f\203\374\224+\245\310\333*'\351m\262QL\014\320" properties: > , Envelope: 109 bytes, Signature: 70 bytes is found invalid: PKIID wasn't found -peer1.org1.example.com | [63f 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 4 -peer0.org1.example.com | [592 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [557 12-12 14:19:48.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\257q\243d\243\203\331\r\241 \376!\261I\036`;\224\214\tr\177A/~\273M\346\267\020h3" channel_MAC:"$\203\024{R\367\023/\0358\375o\255\342\374f\203\374\224+\245\310\333*'\351m\262QL\014\320" properties: > , Envelope: 109 bytes, Signature: 70 bytes isn't valid -peer0.org2.example.com | [501 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [2c6 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [640 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) -peer0.org1.example.com | [593 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer1.org2.example.com | [558 12-12 14:19:48.61 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 -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -peer1.org1.example.com | [641 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database -peer0.org2.example.com | [502 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer1.org2.example.com | [559 12-12 14:19:48.61 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 -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [642 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [594 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d107e07c]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [503 12-12 14:19:46.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | [55a 12-12 14:19:48.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage -> DEBU Don't have StateInfo message of peer 172.18.0.4:7051 [21 78 155 101 248 109 96 73 154 94 110 244 183 25 172 38 21 154 63 11 20 207 76 181 10 231 75 140 226 167 25 192] -peer0.org1.example.com | [595 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [643 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [504 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [55b 12-12 14:19:48.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer �q�d��� � �!�I`;�� rA/~�M��h3 message sent from N�e�m`I�^n���&�? �L� -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer1.org2.example.com | �K���� -peer0.org1.example.com | [596 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [644 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [505 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | [55c 12-12 14:19:48.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer �q�d��� � �!�I`;�� rA/~�M��h3 message sent from ���-�w}�T�q�Lb��)L�xy�=�9� -peer1.org1.example.com | [645 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to history database -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [597 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d107e07c]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -peer1.org2.example.com | [55d 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:42362 -peer1.org1.example.com | [646 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -peer0.org2.example.com | [506 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [598 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Move state message TRANSACTION -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -peer0.org2.example.com | [507 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [55e 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422d35260 -peer1.org1.example.com | [647 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -peer0.org1.example.com | [599 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -peer0.org2.example.com | [508 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org2.example.com | [55f 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [648 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -peer0.org1.example.com | [59a 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [509 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -peer0.org1.example.com | [59b 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]sending state message TRANSACTION -peer1.org2.example.com | [560 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | ZM8rwLlgV6XUeTLW -peer0.org2.example.com | [50a 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [649 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [59c 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d107e07c]Received message TRANSACTION from shim -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [561 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP cec57e02e224c3efa1075c97d8c3172cd78fec768b3b75afcf280ac60a493411} -peer0.org2.example.com | [50b 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org1.example.com | [64a 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea -peer0.org1.example.com | [59d 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d107e07c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [2c7 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36746: rpc error: code = Canceled desc = context canceled -peer1.org2.example.com | [562 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [50c 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -orderer.example.com | [2c8 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -peer0.org1.example.com | [59e 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d107e07c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [64b 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [563 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [50d 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [2c9 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org1.example.com | [59f 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [d107e07c]Sending GET_STATE -peer0.org2.example.com | [50e 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [564 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422c67900, header 0xc422d35290 -orderer.example.com | [2ca 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [5a0 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Received message GET_STATE from shim -peer1.org1.example.com | [64c 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [50f 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [2cb 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [2cc 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [5a1 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [565 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -orderer.example.com | [2cd 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [510 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [64d 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [566 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 56d82f68ba8518c44cb3236a8b3537a9b6714bb932edaafd38a7ddd724272e04 -peer0.org1.example.com | [5a2 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [d107e07c]Received GET_STATE, invoking get state from ledger -orderer.example.com | [2ce 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -peer1.org1.example.com | [64e 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [567 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 56d82f68ba8518c44cb3236a8b3537a9b6714bb932edaafd38a7ddd724272e04 channel id: -peer0.org2.example.com | [511 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | [2cf 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org1.example.com | [5a3 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [512 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org2.example.com | [568 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled -orderer.example.com | [2d0 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org1.example.com | [64f 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [5a4 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d107e07c] getting state for chaincode lscc, key mycc, channel businesschannel -peer1.org2.example.com | [569 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 56d82f68ba8518c44cb3236a8b3537a9b6714bb932edaafd38a7ddd724272e04 channel id: version: 1.1.0 -peer0.org2.example.com | [513 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [5a5 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org1.example.com | [650 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [2d1 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org1.example.com | [5a6 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d107e07c]No state associated with key: -peer0.org1.example.com | mycc. Sending RESPONSE with an empty payload -peer0.org2.example.com | [514 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [651 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [2d2 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -peer1.org2.example.com | [56a 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=56d82f68ba8518c44cb3236a8b3537a9b6714bb932edaafd38a7ddd724272e04,syscc=true,proposal=0xc422c67900,canname=lscc:1.1.0 -peer0.org1.example.com | [5a7 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d107e07c]handleGetState serial send RESPONSE -peer0.org2.example.com | [515 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org2.example.com | [56b 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -orderer.example.com | [2d3 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [652 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [5a8 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d107e07c]Received message RESPONSE from shim -peer1.org2.example.com | [56c 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [5a9 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d107e07c]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [56d 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer1.org1.example.com | [653 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [5aa 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d107e07c]before send -peer0.org2.example.com | [516 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [5ab 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d107e07c]after send -peer1.org2.example.com | [56e 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [56d82f68]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [654 12-12 14:20:10.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:52104 -peer0.org1.example.com | [5ac 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [d107e07c]Received RESPONSE, communicated (state:ready) -peer0.org2.example.com | [517 12-12 14:19:46.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [56f 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [5ad 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [d107e07c]GetState received payload RESPONSE -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [655 12-12 14:20:10.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421955710 -peer1.org2.example.com | [570 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -peer0.org1.example.com | [5ae 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [d107e07c]Sending PUT_STATE -peer0.org2.example.com | [518 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [656 12-12 14:20:10.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [5af 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Received message PUT_STATE from shim -peer0.org2.example.com | [519 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [571 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [56d82f68]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [5b0 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [657 12-12 14:20:10.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [572 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [56d82f68]Move state message TRANSACTION -peer0.org1.example.com | [5b1 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [51a 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [658 12-12 14:20:10.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -peer0.org1.example.com | [5b2 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d107e07c]state is ready -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer1.org2.example.com | [573 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [56d82f68]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [51b 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [5b3 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d107e07c]Completed PUT_STATE. Sending RESPONSE -peer1.org1.example.com | [659 12-12 14:20:10.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org2.example.com | [574 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [5b4 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d107e07c]enterBusyState trigger event RESPONSE -peer0.org2.example.com | [51c 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [65a 12-12 14:20:10.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [5b5 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Move state message RESPONSE -orderer.example.com | BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -peer1.org2.example.com | [575 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [56d82f68]sending state message TRANSACTION -peer0.org2.example.com | [51d 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer1.org1.example.com | [65b 12-12 14:20:10.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42036d770, header 0xc421955740 -peer0.org1.example.com | [5b6 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -orderer.example.com | z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer1.org2.example.com | [576 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [56d82f68]Received message TRANSACTION from shim -peer0.org2.example.com | [51e 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [5b7 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [65c 12-12 14:20:10.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -peer0.org2.example.com | [51f 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [5b8 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]sending state message RESPONSE -peer1.org2.example.com | [577 12-12 14:19:49.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [56d82f68]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [5b9 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d107e07c]Received message RESPONSE from shim -peer1.org1.example.com | [65d 12-12 14:20:10.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: f93b8a8b234c0861a2a63634a0b3f6f4c9d32ad20af95675c0fa62f4b68a057c -peer0.org2.example.com | [520 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -peer0.org1.example.com | [5ba 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d107e07c]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org1.example.com | [65e 12-12 14:20:10.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f93b8a8b234c0861a2a63634a0b3f6f4c9d32ad20af95675c0fa62f4b68a057c] -peer1.org2.example.com | [578 12-12 14:19:49.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [56d82f68]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [521 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [5bb 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d107e07c]before send -peer1.org2.example.com | [579 12-12 14:19:49.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [56d82f68]Transaction completed. Sending COMPLETED -orderer.example.com | OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -peer1.org1.example.com | [65f 12-12 14:20:10.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [522 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [5bc 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d107e07c]after send -peer1.org2.example.com | [57a 12-12 14:19:49.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [56d82f68]Move state message COMPLETED -orderer.example.com | xEFWkMtGbgY= -peer1.org1.example.com | [660 12-12 14:20:10.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [f93b8a8b234c0861a2a63634a0b3f6f4c9d32ad20af95675c0fa62f4b68a057c] -peer0.org2.example.com | [523 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [5bd 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [d107e07c]Received RESPONSE, communicated (state:ready) -peer1.org2.example.com | [57b 12-12 14:19:49.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [56d82f68]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [57c 12-12 14:19:49.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [56d82f68]send state message COMPLETED -peer1.org1.example.com | [661 12-12 14:20:10.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: f93b8a8b234c0861a2a63634a0b3f6f4c9d32ad20af95675c0fa62f4b68a057c channel id: businesschannel -peer0.org1.example.com | [5be 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [d107e07c]Received RESPONSE. Successfully updated state -peer0.org2.example.com | [524 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [2d4 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [57d 12-12 14:19:49.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [56d82f68]Received message COMPLETED from shim -peer0.org1.example.com | [5bf 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d107e07c]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [662 12-12 14:20:10.68 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=f93b8a8b234c0861a2a63634a0b3f6f4c9d32ad20af95675c0fa62f4b68a057c,syscc=true,proposal=0xc42036d770,canname=lscc:1.1.0 -peer0.org2.example.com | [525 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [526 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [5c0 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d107e07c]Move state message COMPLETED -peer1.org2.example.com | [57e 12-12 14:19:49.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [56d82f68]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [663 12-12 14:20:10.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org1.example.com | [5c1 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d107e07c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [527 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org1.example.com | [664 12-12 14:20:10.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [5c2 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d107e07c]send state message COMPLETED -peer1.org2.example.com | [57f 12-12 14:19:49.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [56d82f68ba8518c44cb3236a8b3537a9b6714bb932edaafd38a7ddd724272e04]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [528 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [5c3 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Received message COMPLETED from shim -peer1.org2.example.com | [580 12-12 14:19:49.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:56d82f68ba8518c44cb3236a8b3537a9b6714bb932edaafd38a7ddd724272e04, channelID: -peer1.org1.example.com | [665 12-12 14:20:10.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | [529 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [5c4 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [666 12-12 14:20:10.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f93b8a8b]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [581 12-12 14:19:49.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -peer0.org2.example.com | [52a 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [582 12-12 14:19:49.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [5c5 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d]HandleMessage- COMPLETED. Notify -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | [667 12-12 14:20:10.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [583 12-12 14:19:49.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [5c6 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d, channelID:businesschannel -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -peer0.org2.example.com | [52b 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org1.example.com | [668 12-12 14:20:10.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [5c7 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [584 12-12 14:19:49.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:42362) -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -peer1.org2.example.com | [585 12-12 14:19:51.67 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Entering -peer1.org1.example.com | [669 12-12 14:20:10.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f93b8a8b]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [52c 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org1.example.com | [5c8 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d,syscc=false,proposal=0xc4230f7220,canname=mycc:1.0 -peer0.org2.example.com | [52d 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [586 12-12 14:19:51.67 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Exiting -peer1.org1.example.com | [66a 12-12 14:20:10.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f93b8a8b]Move state message TRANSACTION -peer0.org1.example.com | [5c9 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU launchAndWaitForRegister fetched 1818 bytes from file system -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -peer0.org2.example.com | [52e 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org2.example.com | [587 12-12 14:19:51.67 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel -> DEBU This peer will stop pass blocks from orderer service to other peers -peer0.org1.example.com | [5ca 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched -peer1.org1.example.com | [66b 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f93b8a8b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -peer0.org1.example.com | [5cb 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org2.example.com | [588 12-12 14:19:51.67 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Entering -peer0.org2.example.com | [52f 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org1.example.com | [5cc 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -peer1.org1.example.com | [66c 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [589 12-12 14:19:51.67 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Exiting -peer0.org2.example.com | [530 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [5cd 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=mycc:1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -peer1.org2.example.com | [58a 12-12 14:19:51.67 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try -> WARN Got error: rpc error: code = Unavailable desc = transport is closing ,at 1 attempt. Retrying in 1s -peer0.org2.example.com | [531 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | OwJpoynNCyKsWozuVw== -peer1.org1.example.com | [66d 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f93b8a8b]sending state message TRANSACTION -peer0.org2.example.com | [532 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [5ce 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [58b 12-12 14:19:51.67 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> WARN [businesschannel] Receive error: Client is closing -peer1.org1.example.com | [66e 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f93b8a8b]Received message TRANSACTION from shim -peer0.org2.example.com | [533 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [5cf 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer0.org1.example.com) -orderer.example.com | [2d5 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [58c 12-12 14:19:51.67 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Entering -peer1.org1.example.com | [66f 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f93b8a8b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [534 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org1.example.com | [5d0 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [535 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org1.example.com | [5d1 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org1.example.com | [670 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f93b8a8b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [536 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator -peer1.org2.example.com | [58d 12-12 14:19:51.67 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Exiting -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [671 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f93b8a8b]Sending GET_STATE -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=mycc:1.0 -peer0.org2.example.com | [537 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org2.example.com | [58e 12-12 14:19:52.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer �q�d��� � �!�I`;�� rA/~�M��h3 message sent from ���-�w}�T�q�Lb��)L�xy�=�9� -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | [538 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org1.example.com | [672 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f93b8a8b]Received message GET_STATE from shim -peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org2.example.com | [539 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org2.example.com | [53a 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage -peer1.org1.example.com | [673 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f93b8a8b]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [58f 12-12 14:19:52.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer �q�d��� � �!�I`;�� rA/~�M��h3 message sent from N�e�m`I�^n���&�? �L� -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org2.example.com | [53b 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [2] -peer1.org2.example.com | �K���� -peer1.org1.example.com | [674 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [f93b8a8b]Received GET_STATE, invoking get state from ledger -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | [53c 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xa9, 0x25, 0x7e, 0xa0, 0x6a, 0x7a, 0x2b, 0xa5, 0xd0, 0x2, 0x6, 0xdd, 0xd6, 0x21, 0x90, 0x41, 0x28, 0x97, 0x6b, 0x7a, 0xfa, 0x28, 0x3b, 0x30, 0x5, 0x8b, 0x31, 0x53, 0xa1, 0xe1, 0x0, 0x3c} txOffsets= -peer1.org2.example.com | [590 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=12143 -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -peer1.org1.example.com | [675 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [592 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc420300b60 env 0xc421dbe420 txn 0 -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | ] -peer1.org1.example.com | [676 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f93b8a8b] getting state for chaincode lscc, key mycc, channel businesschannel -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -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 | [53d 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26149, bytesLength=12143] for tx ID: [] to index -peer1.org2.example.com | [593 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421dbe420 -peer1.org1.example.com | [677 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -peer0.org2.example.com | [53e 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26149, bytesLength=12143] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [5d2 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-mycc-1.0) lock -peer1.org2.example.com | [594 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\205\313\277\321\005\020\354\360\344\313\001\"\017businesschannel*@d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv\npydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS\nq+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c\ngHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf\nOwJpoynNCyKsWozuVw==\n-----END CERTIFICATE-----\n\022\0304\343~\010i\016\025q\305'%p7\350\210Xg\357(,\214\004]J" -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -peer0.org2.example.com | [53f 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40087], isChainEmpty=[false], lastBlockNumber=[2] -peer1.org1.example.com | [678 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f93b8a8b]Got state. Sending RESPONSE -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -peer0.org1.example.com | [5d3 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-mycc-1.0) lock -peer0.org2.example.com | [540 12-12 14:19:46.92 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 2 -orderer.example.com | OwJpoynNCyKsWozuVw== -peer0.org1.example.com | [5d4 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-mycc-1.0 -peer1.org1.example.com | [679 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f93b8a8b]handleGetState serial send RESPONSE -peer0.org2.example.com | [541 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 2 -peer1.org2.example.com | [595 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [596 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [2d6 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [5d5 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org1.example.com-mycc-1.0(No such container: dev-peer0.org1.example.com-mycc-1.0) -peer1.org1.example.com | [67a 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f93b8a8b]Received message RESPONSE from shim -peer0.org2.example.com | [542 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [2] with 1 transaction(s) -peer0.org1.example.com | [5d6 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org1.example.com-mycc-1.0 (No such container: dev-peer0.org1.example.com-mycc-1.0) -orderer.example.com | [2d7 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -peer1.org1.example.com | [67b 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f93b8a8b]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org2.example.com | [543 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to state database -peer1.org2.example.com | [591 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [67c 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f93b8a8b]before send -peer0.org2.example.com | [544 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -orderer.example.com | [2d8 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer1.org1.example.com | [67d 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f93b8a8b]after send -peer0.org1.example.com | [5d7 12-12 14:19:49.45 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org1.example.com-mycc-1.0 (No such container: dev-peer0.org1.example.com-mycc-1.0) -peer1.org2.example.com | [597 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -peer0.org2.example.com | [545 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [67f 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f93b8a8b]GetState received payload RESPONSE -peer0.org1.example.com | [5d8 12-12 14:19:49.45 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org1.example.com-mycc-1.0 -orderer.example.com | [2d9 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -peer1.org1.example.com | [680 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f93b8a8b]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [546 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer1.org2.example.com | [598 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [2da 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -peer1.org1.example.com | [67e 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [f93b8a8b]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [5d9 12-12 14:19:49.45 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default -peer0.org2.example.com | [547 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -orderer.example.com | [2db 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -peer1.org2.example.com | [599 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [5da 12-12 14:19:49.45 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 -peer1.org1.example.com | [681 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f93b8a8b]Move state message COMPLETED -peer0.org2.example.com | [548 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to history database -peer1.org2.example.com | [59a 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421b83500, header channel_header:"\010\003\032\014\010\205\313\277\321\005\020\354\360\344\313\001\"\017businesschannel*@d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv\npydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS\nq+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c\ngHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf\nOwJpoynNCyKsWozuVw==\n-----END CERTIFICATE-----\n\022\0304\343~\010i\016\025q\305'%p7\350\210Xg\357(,\214\004]J" -peer0.org1.example.com | [5db 12-12 14:19:49.45 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 | [549 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -orderer.example.com | [2dc 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -peer1.org1.example.com | [682 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f93b8a8b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [59b 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [5dc 12-12 14:19:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -orderer.example.com | [2dd 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -peer0.org2.example.com | [54a 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.4.2 -orderer.example.com | [2de 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -peer1.org2.example.com | [59c 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org1.example.com | [683 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f93b8a8b]send state message COMPLETED -peer0.org2.example.com | [54b 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -peer0.org1.example.com | ADD binpackage.tar /usr/local/bin -peer1.org2.example.com | [59d 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org1.example.com | [684 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f93b8a8b]Received message COMPLETED from shim -orderer.example.com | [2df 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -peer1.org2.example.com | [59e 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ -orderer.example.com | [2e0 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -peer0.org2.example.com | [54c 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [685 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f93b8a8b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [59f 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] -peer0.org2.example.com | [54d 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -peer1.org1.example.com | [686 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f93b8a8b234c0861a2a63634a0b3f6f4c9d32ad20af95675c0fa62f4b68a057c]HandleMessage- COMPLETED. Notify -orderer.example.com | [2e1 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -peer0.org2.example.com | [54e 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [687 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f93b8a8b234c0861a2a63634a0b3f6f4c9d32ad20af95675c0fa62f4b68a057c, channelID:businesschannel -peer0.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -peer1.org2.example.com | [5a0 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | [688 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [5a1 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc421dbe420 envbytes 0xc4218d6880 -peer0.org2.example.com | [54f 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [2e2 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -peer1.org2.example.com | [5a2 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc4218d6880 -peer0.org1.example.com | org.hyperledger.fabric.version="1.1.0" \ -peer1.org1.example.com | [689 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInsantiationPolicy.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer0.org1.example.com | org.hyperledger.fabric.base.version="0.4.2" -orderer.example.com | [2e3 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -peer1.org2.example.com | [5a3 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [550 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.1.0 -peer1.org1.example.com | [68a 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f93b8a8b234c0861a2a63634a0b3f6f4c9d32ad20af95675c0fa62f4b68a057c channel id: businesschannel version: 1.0 -orderer.example.com | [2e4 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -peer1.org2.example.com | [5a4 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] -peer0.org2.example.com | [551 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [68b 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=f93b8a8b234c0861a2a63634a0b3f6f4c9d32ad20af95675c0fa62f4b68a057c,syscc=false,proposal=0xc42036d770,canname=mycc:1.0 -orderer.example.com | [2e5 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -peer0.org1.example.com | [5dd 12-12 14:19:49.46 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' -peer1.org2.example.com | [5a5 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=fc6022ec-c848-4d2c-85ca-7beb5b3eb8be,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org1.example.com | [68c 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=f93b8a8b234c0861a2a63634a0b3f6f4c9d32ad20af95675c0fa62f4b68a057c,syscc=true,proposal=0xc42036d770,canname=lscc:1.1.0 -peer0.org2.example.com | [552 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [5de 12-12 14:19:49.46 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: -peer1.org2.example.com | [5a6 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d chaindID businesschannel -peer1.org1.example.com | [68d 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org2.example.com | [553 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [2e6 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -peer1.org2.example.com | [5a7 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer0.org1.example.com | [5df 12-12 14:19:49.46 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.1.0 -peer1.org1.example.com | [68e 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [554 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [5a8 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [5e0 12-12 14:19:51.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Entering -orderer.example.com | [2e7 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -peer1.org2.example.com | [5a9 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer0.org1.example.com | [5e1 12-12 14:19:51.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Entering -peer0.org2.example.com | [555 12-12 14:19:46.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [68f 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer1.org2.example.com | [5aa 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fc6022ec]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [2e8 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -peer0.org1.example.com | [5e3 12-12 14:19:51.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Exiting -peer1.org1.example.com | [690 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f93b8a8b]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [5ab 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [556 12-12 14:19:48.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:34922 -orderer.example.com | [2e9 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -peer0.org1.example.com | [5e4 12-12 14:19:51.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try -> WARN Got error: rpc error: code = Canceled desc = context canceled ,at 1 attempt. Retrying in 1s -peer1.org2.example.com | [5ac 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fc6022ec]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [691 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [557 12-12 14:19:48.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4229b92c0 -orderer.example.com | [2ea 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -peer1.org2.example.com | [5ad 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fc6022ec]Move state message TRANSACTION -peer1.org1.example.com | [692 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [5ae 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fc6022ec]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [5e5 12-12 14:19:51.36 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> WARN [businesschannel] Receive error: Client is closing -peer0.org2.example.com | [558 12-12 14:19:48.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [693 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f93b8a8b]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [5af 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [559 12-12 14:19:48.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [2eb 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -peer1.org2.example.com | [5b0 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fc6022ec]sending state message TRANSACTION -peer1.org1.example.com | [694 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f93b8a8b]Move state message TRANSACTION -peer0.org1.example.com | [5e6 12-12 14:19:51.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Entering -peer1.org2.example.com | [5b1 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc6022ec]Received message TRANSACTION from shim -orderer.example.com | [2ec 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [695 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f93b8a8b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [5b2 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fc6022ec]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [55a 12-12 14:19:48.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP cec57e02e224c3efa1075c97d8c3172cd78fec768b3b75afcf280ac60a493411} -peer0.org1.example.com | [5e7 12-12 14:19:51.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Exiting -orderer.example.com | [2ed 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org1.example.com | [696 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [5b3 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [fc6022ec]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [55b 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [5b4 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [5e2 12-12 14:19:51.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Exiting -orderer.example.com | [2ee 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [697 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f93b8a8b]sending state message TRANSACTION -peer1.org2.example.com | [5b5 12-12 14:19:58.99 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 | [55c 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [698 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f93b8a8b]Received message TRANSACTION from shim -peer1.org2.example.com | [5b6 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer0.org1.example.com | [5e8 12-12 14:19:51.36 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 | [699 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f93b8a8b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [2ef 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [5b7 12-12 14:19:58.99 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [55d 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4226e4500, header 0xc4229b92f0 -peer0.org1.example.com | [5e9 12-12 14:19:56.29 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 -peer1.org1.example.com | [69a 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f93b8a8b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [5b8 12-12 14:19:58.99 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [69b 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f93b8a8b]Sending GET_STATE -peer0.org2.example.com | [55e 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [5ea 12-12 14:19:56.29 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -orderer.example.com | [2f0 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [5b9 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org1.example.com | [69c 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f93b8a8b]Received message GET_STATE from shim -peer0.org2.example.com | [55f 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 157f34f40a73396b14eca765990ca695bf28ab1d6d35b119f372133ff534ba30 -peer0.org1.example.com | [5eb 12-12 14:19:56.29 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 -orderer.example.com | [2f1 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [69d 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f93b8a8b]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [560 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 157f34f40a73396b14eca765990ca695bf28ab1d6d35b119f372133ff534ba30 channel id: -peer1.org2.example.com | [5ba 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [ade96867-e41c-4fa2-993c-8229a205cf69] -peer1.org1.example.com | [69e 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [f93b8a8b]Received GET_STATE, invoking get state from ledger -orderer.example.com | [2f2 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [561 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled -peer1.org1.example.com | [69f 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [5ec 12-12 14:19:56.38 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 -peer0.org2.example.com | [562 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 157f34f40a73396b14eca765990ca695bf28ab1d6d35b119f372133ff534ba30 channel id: version: 1.1.0 -peer1.org2.example.com | [5bb 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org1.example.com | [6a0 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f93b8a8b] getting state for chaincode lscc, key mycc, channel businesschannel -orderer.example.com | [2f3 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [5ed 12-12 14:19:56.90 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org1.example.com-mycc-1.0 -peer1.org2.example.com | [5bc 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [ade96867-e41c-4fa2-993c-8229a205cf69] -peer0.org2.example.com | [563 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=157f34f40a73396b14eca765990ca695bf28ab1d6d35b119f372133ff534ba30,syscc=true,proposal=0xc4226e4500,canname=lscc:1.1.0 -peer1.org1.example.com | [6a1 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | [2f4 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org1.example.com | [5ee 12-12 14:19:56.90 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-mycc-1.0) -peer1.org2.example.com | [5bd 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer1.org1.example.com | [6a2 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f93b8a8b]Got state. Sending RESPONSE -orderer.example.com | [2f5 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [564 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer1.org1.example.com | [6a3 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f93b8a8b]handleGetState serial send RESPONSE -peer0.org1.example.com | [5ef 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.authenticate)-fm.authenticate -> DEBU Chaincode mycc:1.0 's authentication is authorized -peer0.org2.example.com | [565 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [2f6 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [6a4 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f93b8a8b]Received message RESPONSE from shim -peer0.org1.example.com | [5f0 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [5be 12-12 14:19:58.99 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)(0x990b90), deserializer:(*msp.mspManagerImpl)(0xc42267b8c0)} -peer0.org2.example.com | [566 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -orderer.example.com | [2f7 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org1.example.com | [6a5 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f93b8a8b]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org2.example.com | [567 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [157f34f4]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [5f1 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [5bf 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer1.org1.example.com | [6a6 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f93b8a8b]before send -orderer.example.com | [2f8 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [6a7 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f93b8a8b]after send -peer0.org2.example.com | [568 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [5f2 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -orderer.example.com | [2f9 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [6a9 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f93b8a8b]GetState received payload RESPONSE -peer0.org2.example.com | [569 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [5c0 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc6022ec]Transaction completed. Sending COMPLETED -orderer.example.com | [2fa 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [5f3 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org1.example.com | [6aa 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f93b8a8b]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [56a 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [157f34f4]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [5c1 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc6022ec]Move state message COMPLETED -peer1.org1.example.com | [6a8 12-12 14:20:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [f93b8a8b]Received RESPONSE, communicated (state:ready) -orderer.example.com | [2fb 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [5f4 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 -peer0.org2.example.com | [56b 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [157f34f4]Move state message TRANSACTION -peer1.org2.example.com | [5c2 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fc6022ec]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [6ab 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f93b8a8b]Move state message COMPLETED -peer0.org2.example.com | [56c 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [157f34f4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [2fc 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [5f5 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED -peer1.org1.example.com | [6ac 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f93b8a8b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [5c3 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc6022ec]send state message COMPLETED -peer0.org1.example.com | [5f6 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org2.example.com | [56d 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [6ad 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f93b8a8b]send state message COMPLETED -orderer.example.com | [2fd 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [5f7 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed -peer1.org1.example.com | [6ae 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f93b8a8b]Received message COMPLETED from shim -peer1.org2.example.com | [5c4 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fc6022ec]Received message COMPLETED from shim -peer0.org2.example.com | [56e 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [157f34f4]sending state message TRANSACTION -orderer.example.com | [2fe 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [6af 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f93b8a8b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [5c5 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fc6022ec]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [6b0 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f93b8a8b234c0861a2a63634a0b3f6f4c9d32ad20af95675c0fa62f4b68a057c]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [56f 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [157f34f4]Received message TRANSACTION from shim -peer1.org2.example.com | [5c6 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fc6022ec-c848-4d2c-85ca-7beb5b3eb8be]HandleMessage- COMPLETED. Notify -orderer.example.com | [2ff 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [6b1 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f93b8a8b234c0861a2a63634a0b3f6f4c9d32ad20af95675c0fa62f4b68a057c, channelID:businesschannel -peer0.org1.example.com | [5f8 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | [5c7 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:fc6022ec-c848-4d2c-85ca-7beb5b3eb8be, channelID:businesschannel -orderer.example.com | [300 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [5f9 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [6b2 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [570 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [157f34f4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [5c8 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [301 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [5fa 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [5c9 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] -orderer.example.com | [302 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [5fb 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Move state message READY -peer1.org2.example.com | [5ca 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc4218d6880 -peer1.org1.example.com | [6b3 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched -peer0.org1.example.com | [5fc 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [571 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [157f34f4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [303 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [5cb 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc421dbe420 envbytes 0xc4218d6880 -peer0.org1.example.com | [5fd 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [d107e07c]Entered state ready -peer0.org2.example.com | [572 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [157f34f4]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [6b4 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer0.org2.example.com | [573 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [157f34f4]Move state message COMPLETED -orderer.example.com | [304 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -peer1.org1.example.com | [6b5 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org2.example.com | [5cc 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc420300b60 env 0xc421dbe420 txn 0 -orderer.example.com | [305 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36750 -peer0.org1.example.com | [5fe 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d, channelID:businesschannel -peer0.org2.example.com | [574 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [157f34f4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [6b6 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=mycc:1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -peer1.org2.example.com | [5cd 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org1.example.com | [5ff 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]sending state message READY -peer1.org1.example.com | [6b7 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] -orderer.example.com | [306 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36750 -peer1.org2.example.com | [5ce 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org2.example.com | [575 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [157f34f4]send state message COMPLETED -peer0.org1.example.com | [600 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [576 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [157f34f4]Received message COMPLETED from shim -orderer.example.com | [307 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [6b8 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer1.org1.example.com) -peer0.org1.example.com | [601 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [577 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [157f34f4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [308 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [5cf 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] -peer0.org1.example.com | [602 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [578 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [157f34f40a73396b14eca765990ca695bf28ab1d6d35b119f372133ff534ba30]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [6b9 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer0.org1.example.com | [603 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer1.org2.example.com | [5d0 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | [309 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [579 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:157f34f40a73396b14eca765990ca695bf28ab1d6d35b119f372133ff534ba30, channelID: -peer1.org2.example.com | [5d1 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [3] -peer1.org1.example.com | [6ba 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -orderer.example.com | [30a 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org1.example.com | [604 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [d107e07c]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=mycc:1.0 -peer1.org2.example.com | [5d2 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org2.example.com | [57a 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [30b 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [605 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | [57b 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [5d3 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -orderer.example.com | [30c 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org1.example.com | [606 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [57c 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [5d4 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | [30d 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org1.example.com | [607 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [d107e07c]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [57d 12-12 14:19:48.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:34922) -orderer.example.com | [30e 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org2.example.com | [5d5 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) -peer0.org1.example.com | [608 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Move state message INIT -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | [30f 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org2.example.com | [57e 12-12 14:19:57.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:34934 -peer1.org2.example.com | [5d6 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] marked as valid by state validator -peer0.org1.example.com | [609 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | [5d7 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org1.example.com | [60a 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [310 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org2.example.com | [5d8 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org2.example.com | [57f 12-12 14:19:57.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422d99c80 -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 | [60b 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]sending state message INIT -orderer.example.com | [311 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org2.example.com | [580 12-12 14:19:57.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [5d9 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org1.example.com | [60c 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Received message PUT_STATE from shim -orderer.example.com | [312 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org1.example.com | [6bb 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org1.example.com-mycc-1.0) lock -peer0.org2.example.com | [581 12-12 14:19:57.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [60d 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org1.example.com | [6bc 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org1.example.com-mycc-1.0) lock -peer1.org2.example.com | [5da 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage -peer0.org2.example.com | [582 12-12 14:19:57.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP cec57e02e224c3efa1075c97d8c3172cd78fec768b3b75afcf280ac60a493411} -orderer.example.com | [313 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [60e 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [583 12-12 14:19:57.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [6bd 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer1.org1.example.com-mycc-1.0 -peer1.org2.example.com | [5db 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [3] -peer0.org1.example.com | [60f 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d107e07c]state is ready -peer0.org2.example.com | [584 12-12 14:19:57.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [6be 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer1.org1.example.com-mycc-1.0(No such container: dev-peer1.org1.example.com-mycc-1.0) -orderer.example.com | [314 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [610 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d107e07c]Completed PUT_STATE. Sending RESPONSE -peer1.org2.example.com | [5dc 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x34, 0x2, 0x99, 0xb0, 0xd2, 0xb, 0x90, 0x75, 0x7, 0xf4, 0x2a, 0xad, 0x5e, 0xc7, 0xb9, 0xc7, 0x6c, 0xe1, 0x51, 0x1a, 0xa2, 0xad, 0x31, 0x80, 0x80, 0x54, 0x30, 0x62, 0x36, 0xf4, 0xaf, 0xeb} txOffsets= -peer0.org2.example.com | [585 12-12 14:19:57.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422d90e10, header 0xc422d99cb0 -peer0.org1.example.com | [611 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d107e07c]enterBusyState trigger event RESPONSE -peer1.org1.example.com | [6bf 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer1.org1.example.com-mycc-1.0 (No such container: dev-peer1.org1.example.com-mycc-1.0) -orderer.example.com | [315 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [612 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Move state message RESPONSE -peer1.org2.example.com | txId=d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d locPointer=offset=70, bytesLength=3454 -peer0.org1.example.com | [613 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer0.org2.example.com | [586 12-12 14:19:57.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer1.org1.example.com | [6c0 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org1.example.com-mycc-1.0 (No such container: dev-peer1.org1.example.com-mycc-1.0) -orderer.example.com | [316 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org1.example.com | [614 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | ] -peer1.org1.example.com | [6c1 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org1.example.com-mycc-1.0 -orderer.example.com | [317 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org2.example.com | [587 12-12 14:19:57.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea -peer0.org1.example.com | [615 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]sending state message RESPONSE -peer0.org2.example.com | [588 12-12 14:19:57.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] -orderer.example.com | [318 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -peer0.org1.example.com | [616 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Received message PUT_STATE from shim -peer1.org1.example.com | [6c2 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default -peer1.org2.example.com | [5dd 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40157, bytesLength=3454] for tx ID: [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] to index -peer0.org1.example.com | [617 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org2.example.com | [589 12-12 14:19:57.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [319 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -peer0.org1.example.com | [619 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d107e07c]state is ready -peer1.org2.example.com | [5de 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40157, bytesLength=3454] for tx number:[0] ID: [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] to blockNumTranNum index -peer1.org1.example.com | [6c3 12-12 14:20:10.70 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-mycc-1.0 -orderer.example.com | [31a 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -peer0.org1.example.com | [61a 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d107e07c]Completed PUT_STATE. Sending RESPONSE -peer0.org2.example.com | [58a 12-12 14:19:57.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] -peer0.org1.example.com | [618 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [6c4 12-12 14:20:10.71 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 | [5df 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45405], isChainEmpty=[false], lastBlockNumber=[3] -peer0.org1.example.com | [61b 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d107e07c]enterBusyState trigger event RESPONSE -orderer.example.com | [31b 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -peer0.org2.example.com | [58b 12-12 14:19:57.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea channel id: businesschannel -peer1.org1.example.com | [6c5 12-12 14:20:10.71 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -peer0.org1.example.com | [61c 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Move state message RESPONSE -peer1.org2.example.com | [5e0 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 3 -peer0.org2.example.com | [58c 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled -peer0.org1.example.com | [61d 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org2.example.com | [5e1 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 3 -peer1.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.4.2 -orderer.example.com | [31c 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -peer0.org1.example.com | [61e 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [58d 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea channel id: businesschannel version: 1.1.0 -orderer.example.com | [31d 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -peer1.org2.example.com | [5e2 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [3] with 1 transaction(s) -peer0.org1.example.com | [61f 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]sending state message RESPONSE -peer0.org2.example.com | [58e 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea,syscc=true,proposal=0xc422d90e10,canname=lscc:1.1.0 -peer1.org2.example.com | [5e3 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database -peer1.org1.example.com | ADD binpackage.tar /usr/local/bin -peer0.org2.example.com | [58f 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org1.example.com | [620 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Received message COMPLETED from shim -peer1.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ -peer0.org2.example.com | [590 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [31e 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org2.example.com | [5e4 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [621 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -peer1.org2.example.com | [5e5 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -orderer.example.com | [31f 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org1.example.com | [622 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -peer0.org2.example.com | [591 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer1.org2.example.com | [5e6 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccmycc] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] -orderer.example.com | [320 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org1.example.com | org.hyperledger.fabric.version="1.1.0" \ -peer0.org1.example.com | [623 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d, channelID:businesschannel -peer0.org2.example.com | [592 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [21a29b04]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | org.hyperledger.fabric.base.version="0.4.2" -peer1.org2.example.com | [5e7 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer0.org1.example.com | [624 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Exit -orderer.example.com | [321 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -peer0.org2.example.com | [593 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [594 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.1.0 -peer1.org1.example.com | [6c6 12-12 14:20:10.71 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' -peer1.org2.example.com | [5e8 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer0.org1.example.com | [625 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org1.example.com | [6c7 12-12 14:20:10.71 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: -orderer.example.com | [322 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -peer1.org2.example.com | [5e9 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [595 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [21a29b04]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [6c8 12-12 14:20:10.71 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.1.0 -peer0.org1.example.com | [626 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | [323 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -peer0.org2.example.com | [596 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21a29b04]Move state message TRANSACTION -peer1.org2.example.com | [5ea 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database -peer0.org1.example.com | [627 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] -peer0.org2.example.com | [597 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [21a29b04]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [6c9 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] -peer0.org1.example.com | [628 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [324 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -peer1.org2.example.com | [5eb 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -peer0.org2.example.com | [598 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [6ca 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] -peer0.org2.example.com | [599 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21a29b04]sending state message TRANSACTION -peer0.org1.example.com | [629 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d channel id: businesschannel chaincode id: name:"lscc" -peer1.org2.example.com | [5ec 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -peer1.org1.example.com | [6cb 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -orderer.example.com | [325 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -peer0.org2.example.com | [59a 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [21a29b04]Received message TRANSACTION from shim -peer0.org1.example.com | [62a 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer1.org2.example.com | [5ed 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -orderer.example.com | [326 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org1.example.com | [6cc 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org1.example.com | [62b 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d channel id: businesschannel version: 1.1.0 -peer0.org2.example.com | [59b 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [21a29b04]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [62c 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d,syscc=true,proposal=0xc4230f7220,canname=escc:1.1.0 -peer1.org2.example.com | [5ee 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d -peer1.org1.example.com | [6cd 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4225a02e0 env 0xc421d195f0 txn 0 -orderer.example.com | [327 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate -> DEBU Initializing chain businesschannel at: /var/hyperledger/production/orderer/chain_businesschannel -peer0.org2.example.com | [59c 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [21a29b04]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [328 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.newChain -> DEBU Initialized to block height 18446744073709551615 with hash -peer0.org1.example.com | [62d 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -orderer.example.com | [329 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] WriteConfigBlock.newChain.Append.writeBlock -> DEBU Wrote block 0 -peer1.org2.example.com | [5ef 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -orderer.example.com | [32a 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.readBlock -> DEBU Read block 0 -peer0.org2.example.com | [59d 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [21a29b04]Sending GET_STATE -peer1.org1.example.com | [6ce 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421d195f0 -peer0.org1.example.com | [62e 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [5f0 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [32b 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport.newBlockWriter -> DEBU [channel: businesschannel] Creating block writer for tip of chain (blockNumber=0, lastConfigBlockNum=0, lastConfigSeq=1) -peer0.org1.example.com | [62f 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer0.org2.example.com | [59e 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21a29b04]Received message GET_STATE from shim -orderer.example.com | [32c 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport -> DEBU [channel: businesschannel] Done creating channel support resources -peer1.org1.example.com | [6cf 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\232\313\277\321\005\020\200\347\372\352\001\"\017businesschannel*@772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv\npydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS\nq+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c\ngHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf\nOwJpoynNCyKsWozuVw==\n-----END CERTIFICATE-----\n\022\030d\361\325j\375\325\225\313\300\373I\037\306\310\345\235>\177Y_\360_\301w" -peer0.org2.example.com | [59f 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [21a29b04]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [5f1 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [32d 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain -> INFO Created and starting new chain businesschannel -peer0.org2.example.com | [5a0 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [21a29b04]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [630 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d107e07c]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [32e 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [6d0 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [5f2 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [5a1 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [32f 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [6d1 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [631 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [5f3 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [5a2 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [21a29b04] getting state for chaincode lscc, key mycc, channel businesschannel -orderer.example.com | [330 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [6d2 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -peer1.org2.example.com | [5f4 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [5a3 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | [331 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [632 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [6d3 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [5a4 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [21a29b04]No state associated with key: -orderer.example.com | [332 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...154441142D465432DB7A837CB99BBB94 -peer1.org2.example.com | [5f5 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | mycc. Sending RESPONSE with an empty payload -orderer.example.com | [333 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 676F5E4AE12EA3D776C46A56208469353EFACB6FD840E1192C8B3B729C2B29C0 -peer0.org1.example.com | [633 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d107e07c]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [5f6 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [6d4 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [5a5 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [21a29b04]handleGetState serial send RESPONSE -orderer.example.com | [334 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [5a6 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [21a29b04]Received message RESPONSE from shim -peer0.org1.example.com | [634 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Move state message TRANSACTION -peer1.org1.example.com | [6d5 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4222ba800, header channel_header:"\010\003\032\014\010\232\313\277\321\005\020\200\347\372\352\001\"\017businesschannel*@772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv\npydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS\nq+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c\ngHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf\nOwJpoynNCyKsWozuVw==\n-----END CERTIFICATE-----\n\022\030d\361\325j\375\325\225\313\300\373I\037\306\310\345\235>\177Y_\360_\301w" -peer1.org2.example.com | [5f7 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [335 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [5a7 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [21a29b04]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [5f8 12-12 14:20:03.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:42382 -orderer.example.com | [336 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 -peer0.org2.example.com | [5a8 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [21a29b04]before send -peer1.org1.example.com | [6d6 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | [337 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [5f9 12-12 14:20:03.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4227787b0 -peer0.org2.example.com | [5a9 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [21a29b04]after send -peer1.org1.example.com | [6d7 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -orderer.example.com | [338 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [635 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [5aa 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [21a29b04]Received RESPONSE, communicated (state:ready) -peer1.org1.example.com | [6d8 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | [339 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...154441142D465432DB7A837CB99BBB94 -peer0.org1.example.com | [636 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [5fa 12-12 14:20:03.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [5ab 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [21a29b04]GetState received payload RESPONSE -orderer.example.com | [33a 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 6410F174437C6DF1A4546ED9BF6ED0BB636DF11D054B3564556F60C09E528CCA -peer0.org1.example.com | [637 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]sending state message TRANSACTION -peer1.org1.example.com | [6d9 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [5fb 12-12 14:20:03.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [5ac 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [21a29b04]Sending PUT_STATE -orderer.example.com | [33b 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] commitBlock.Append.Append.writeBlock -> DEBU Wrote block 1 -peer0.org1.example.com | [638 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d107e07c]Received message TRANSACTION from shim -peer0.org2.example.com | [5ad 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21a29b04]Received message PUT_STATE from shim -orderer.example.com | [33c 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: testchainid] Wrote block 1 -peer1.org1.example.com | [6da 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] -peer1.org2.example.com | [5fc 12-12 14:20:03.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP cec57e02e224c3efa1075c97d8c3172cd78fec768b3b75afcf280ac60a493411} -peer0.org2.example.com | [5ae 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [21a29b04]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org1.example.com | [6db 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -orderer.example.com | [33d 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -peer0.org2.example.com | [5af 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [33e 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [639 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d107e07c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [6dc 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc421d195f0 envbytes 0xc4224b6800 -peer1.org2.example.com | [5fd 12-12 14:20:03.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [5b0 12-12 14:19:57.07 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [21a29b04]state is ready -orderer.example.com | [33f 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -peer1.org2.example.com | [5fe 12-12 14:20:03.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [6dd 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [f4a8cad1-3b43-41e4-8c19-e39aa7080951] -peer0.org2.example.com | [5b1 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [21a29b04]Completed PUT_STATE. Sending RESPONSE -peer0.org1.example.com | [63a 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d107e07c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [340 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org2.example.com | [5b2 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [21a29b04]enterBusyState trigger event RESPONSE -peer0.org1.example.com | [63b 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org1.example.com | [6de 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | [341 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -peer0.org2.example.com | [5b3 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21a29b04]Move state message RESPONSE -peer1.org2.example.com | [5ff 12-12 14:20:03.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4203cac80, header 0xc4227787e0 -orderer.example.com | [342 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org1.example.com | [6df 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [f4a8cad1-3b43-41e4-8c19-e39aa7080951] -peer0.org2.example.com | [5b4 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [21a29b04]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer0.org1.example.com | [63c 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer1.org2.example.com | [600 12-12 14:20:03.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -orderer.example.com | [343 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [5b5 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -peer1.org1.example.com | [6e0 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc4224b6800 -peer0.org1.example.com | [63d 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d107e07c]Transaction completed. Sending COMPLETED -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [5b6 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21a29b04]sending state message RESPONSE -peer1.org2.example.com | [601 12-12 14:20:03.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 675dcac41df7f9d767dd5ca35ac0e8e37e788658288f44ec7c98739b55a584c0 -peer1.org1.example.com | [6e1 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [5b7 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [21a29b04]Received message RESPONSE from shim -peer1.org2.example.com | [602 12-12 14:20:03.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [675dcac41df7f9d767dd5ca35ac0e8e37e788658288f44ec7c98739b55a584c0] -peer0.org1.example.com | [63e 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d107e07c]Move state message COMPLETED -peer0.org2.example.com | [5b8 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [21a29b04]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org1.example.com | [6e2 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | [5b9 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [21a29b04]before send -peer1.org2.example.com | [603 12-12 14:20:03.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [63f 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d107e07c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [5ba 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [21a29b04]after send -peer1.org1.example.com | [6e3 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=8bbc842c-906c-41ae-a754-740ec6568122,syscc=true,proposal=0x0,canname=vscc:1.1.0 -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -peer1.org2.example.com | [604 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [675dcac41df7f9d767dd5ca35ac0e8e37e788658288f44ec7c98739b55a584c0] -peer0.org2.example.com | [5bb 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [21a29b04]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [640 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d107e07c]send state message COMPLETED -peer1.org1.example.com | [6e4 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 chaindID businesschannel -peer0.org2.example.com | [5bc 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [21a29b04]Received RESPONSE. Successfully updated state -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | [6e5 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer1.org2.example.com | [605 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 675dcac41df7f9d767dd5ca35ac0e8e37e788658288f44ec7c98739b55a584c0 channel id: businesschannel -peer0.org1.example.com | [641 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Received message COMPLETED from shim -peer1.org1.example.com | [6e6 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [5bd 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [21a29b04]Transaction completed. Sending COMPLETED -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [642 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [606 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=675dcac41df7f9d767dd5ca35ac0e8e37e788658288f44ec7c98739b55a584c0,syscc=true,proposal=0xc4203cac80,canname=lscc:1.1.0 -peer0.org2.example.com | [5be 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [21a29b04]Move state message COMPLETED -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -peer1.org2.example.com | [607 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer1.org1.example.com | [6e7 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer0.org2.example.com | [5bf 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [21a29b04]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -peer0.org1.example.com | [643 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [6e8 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8bbc842c]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [608 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [5c0 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [21a29b04]send state message COMPLETED -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -peer1.org1.example.com | [6e9 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -peer1.org2.example.com | [609 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org1.example.com | [644 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d, channelID:businesschannel -peer1.org1.example.com | [6ea 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8bbc842c]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -peer0.org2.example.com | [5c1 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21a29b04]Received message COMPLETED from shim -peer1.org2.example.com | [60a 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [675dcac4]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [6eb 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8bbc842c]Move state message TRANSACTION -peer0.org1.example.com | [645 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | OwJpoynNCyKsWozuVw== -peer1.org2.example.com | [60b 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [6ec 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8bbc842c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [5c2 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [21a29b04]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [646 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer1.org1.example.com | [6ed 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [647 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org2.example.com | [5c3 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [5c4 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea, channelID:businesschannel -peer1.org2.example.com | [60c 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [648 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] -peer1.org1.example.com | [6ee 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8bbc842c]sending state message TRANSACTION -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [5c5 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [60d 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [675dcac4]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [6ef 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8bbc842c]Received message TRANSACTION from shim -orderer.example.com | [344 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e398 gate 1513088379575558000 evaluation starts -peer0.org1.example.com | [649 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36730) -orderer.example.com | [345 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e398 signed by 0 principal evaluation starts (used [false]) -peer1.org2.example.com | [60e 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [675dcac4]Move state message TRANSACTION -peer0.org2.example.com | [5c6 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea,syscc=false,proposal=0xc422d90e10,canname=mycc:1.0 -peer1.org1.example.com | [6f0 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8bbc842c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [60f 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [675dcac4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [5c7 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU launchAndWaitForRegister fetched 1818 bytes from file system -peer0.org1.example.com | [64a 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -orderer.example.com | [346 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e398 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org2.example.com | [5c8 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched -peer1.org2.example.com | [610 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [6f1 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8bbc842c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [5c9 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer0.org1.example.com | [64b 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [6f2 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org2.example.com | [611 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [675dcac4]sending state message TRANSACTION -peer0.org2.example.com | [5ca 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -orderer.example.com | [347 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e398 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -peer1.org1.example.com | [6f3 12-12 14:20:12.56 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 | [64c 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422aee500 env 0xc4203676b0 txn 0 -peer1.org2.example.com | [612 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [675dcac4]Received message TRANSACTION from shim -peer0.org2.example.com | [5cb 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=mycc:1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -peer1.org1.example.com | [6f4 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer1.org2.example.com | [613 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [675dcac4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [64d 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4203676b0 -peer1.org1.example.com | [6f5 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8bbc842c]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [5cc 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer1.org2.example.com | [614 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [675dcac4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [6f6 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8bbc842c]Move state message COMPLETED -orderer.example.com | [348 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e398 principal evaluation fails -peer0.org1.example.com | [64e 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\205\313\277\321\005\020\354\360\344\313\001\"\017businesschannel*@d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv\npydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS\nq+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c\ngHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf\nOwJpoynNCyKsWozuVw==\n-----END CERTIFICATE-----\n\022\0304\343~\010i\016\025q\305'%p7\350\210Xg\357(,\214\004]J" -peer1.org2.example.com | [615 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [675dcac4]Sending GET_STATE -peer0.org2.example.com | [5cd 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer0.org2.example.com) -peer1.org1.example.com | [6f7 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8bbc842c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [64f 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | [349 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e398 gate 1513088379575558000 evaluation fails -peer1.org2.example.com | [616 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [675dcac4]Received message GET_STATE from shim -peer0.org2.example.com | [5ce 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer0.org1.example.com | [650 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [34a 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [6f8 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8bbc842c]send state message COMPLETED -peer0.org2.example.com | [5cf 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org2.example.com | [617 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [675dcac4]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [651 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=mycc:1.0 -peer1.org1.example.com | [6f9 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8bbc842c]Received message COMPLETED from shim -peer1.org2.example.com | [618 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [675dcac4]Received GET_STATE, invoking get state from ledger -orderer.example.com | [34b 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | [61a 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [675dcac4] getting state for chaincode lscc, key mycc, channel businesschannel -peer1.org1.example.com | [6fa 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8bbc842c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [61b 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | [34c 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org1.example.com | [652 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [61c 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [675dcac4]Got state. Sending RESPONSE -peer1.org1.example.com | [6fb 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8bbc842c-906c-41ae-a754-740ec6568122]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org2.example.com | [61d 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [675dcac4]handleGetState serial send RESPONSE -orderer.example.com | [34d 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -peer1.org2.example.com | [61e 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [675dcac4]Received message RESPONSE from shim -peer1.org1.example.com | [6fc 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8bbc842c-906c-41ae-a754-740ec6568122, channelID:businesschannel -peer0.org1.example.com | [653 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org2.example.com | [61f 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [675dcac4]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org1.example.com | [6fd 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [654 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422f64000, header channel_header:"\010\003\032\014\010\205\313\277\321\005\020\354\360\344\313\001\"\017businesschannel*@d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv\npydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS\nq+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c\ngHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf\nOwJpoynNCyKsWozuVw==\n-----END CERTIFICATE-----\n\022\0304\343~\010i\016\025q\305'%p7\350\210Xg\357(,\214\004]J" -peer1.org2.example.com | [620 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [675dcac4]before send -orderer.example.com | [34e 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | [655 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org1.example.com | [6fe 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] -peer1.org2.example.com | [621 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [675dcac4]after send -peer0.org1.example.com | [656 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -orderer.example.com | [34f 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -peer1.org1.example.com | [6ff 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc4224b6800 -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | [622 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [675dcac4]Received RESPONSE, communicated (state:ready) -orderer.example.com | [350 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer1.org1.example.com | [700 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc421d195f0 envbytes 0xc4224b6800 -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 | [623 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [675dcac4]GetState received payload RESPONSE -peer0.org1.example.com | [657 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org2.example.com | [624 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [675dcac4]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [701 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4225a02e0 env 0xc421d195f0 txn 0 -peer0.org2.example.com | [5d0 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org2.example.com-mycc-1.0) lock -peer1.org2.example.com | [625 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [675dcac4]Move state message COMPLETED -orderer.example.com | [351 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -peer1.org1.example.com | [702 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org2.example.com | [626 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [675dcac4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [658 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [703 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org2.example.com | [627 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [675dcac4]send state message COMPLETED -peer0.org2.example.com | [5d1 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org2.example.com-mycc-1.0) lock -orderer.example.com | [352 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3b0 gate 1513088379577106300 evaluation starts -peer0.org1.example.com | [659 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] -peer1.org2.example.com | [619 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [5d2 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org2.example.com-mycc-1.0 -peer1.org2.example.com | [628 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [675dcac4]Received message COMPLETED from shim -peer0.org1.example.com | [65a 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | [704 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] -peer0.org2.example.com | [5d3 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org2.example.com-mycc-1.0(No such container: dev-peer0.org2.example.com-mycc-1.0) -peer1.org2.example.com | [629 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [675dcac4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [353 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3b0 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [65b 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4203676b0 envbytes 0xc4229f4880 -peer1.org1.example.com | [705 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [62a 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [675dcac41df7f9d767dd5ca35ac0e8e37e788658288f44ec7c98739b55a584c0]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [5d4 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org2.example.com-mycc-1.0 (No such container: dev-peer0.org2.example.com-mycc-1.0) -peer0.org1.example.com | [65c 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc4229f4880 -orderer.example.com | [354 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3b0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org2.example.com | [62b 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:675dcac41df7f9d767dd5ca35ac0e8e37e788658288f44ec7c98739b55a584c0, channelID:businesschannel -peer0.org2.example.com | [5d5 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org2.example.com-mycc-1.0 (No such container: dev-peer0.org2.example.com-mycc-1.0) -orderer.example.com | [355 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3b0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -peer1.org1.example.com | [706 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] -peer1.org2.example.com | [62c 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [5d6 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org2.example.com-mycc-1.0 -peer0.org1.example.com | [65d 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [62d 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInsantiationPolicy.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -orderer.example.com | [356 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3b0 principal evaluation fails -peer1.org1.example.com | [707 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org2.example.com | [62e 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 675dcac41df7f9d767dd5ca35ac0e8e37e788658288f44ec7c98739b55a584c0 channel id: businesschannel version: 1.0 -peer0.org1.example.com | [65e 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] -orderer.example.com | [357 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3b0 gate 1513088379577106300 evaluation fails -peer1.org2.example.com | [62f 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=675dcac41df7f9d767dd5ca35ac0e8e37e788658288f44ec7c98739b55a584c0,syscc=false,proposal=0xc4203cac80,canname=mycc:1.0 -peer0.org2.example.com | [5d7 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default -peer1.org1.example.com | [708 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -peer1.org2.example.com | [630 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=675dcac41df7f9d767dd5ca35ac0e8e37e788658288f44ec7c98739b55a584c0,syscc=true,proposal=0xc4203cac80,canname=lscc:1.1.0 -peer0.org1.example.com | [65f 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=06ccb699-ae6d-4276-9548-64c43f16f171,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org1.example.com | [709 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | [358 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [631 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org2.example.com | [5d8 12-12 14:19:57.08 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-mycc-1.0 -peer0.org1.example.com | [660 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d chaindID businesschannel -peer1.org1.example.com | [70a 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer1.org2.example.com | [632 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [661 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer0.org2.example.com | [5d9 12-12 14:19:57.09 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 | [359 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [70b 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=a -peer1.org2.example.com | [633 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org2.example.com | [5da 12-12 14:19:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -peer0.org1.example.com | [662 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [35a 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -peer1.org2.example.com | [634 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [675dcac4]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [70c 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -orderer.example.com | [35b 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3b8 gate 1513088379578517600 evaluation starts -peer0.org2.example.com | FROM hyperledger/fabric-baseos:x86_64-0.4.2 -peer0.org1.example.com | [663 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer1.org2.example.com | [635 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [70d 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=b -peer0.org1.example.com | [664 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [06ccb699]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [35c 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3b8 signed by 0 principal evaluation starts (used [false]) -peer0.org2.example.com | ADD binpackage.tar /usr/local/bin -peer0.org1.example.com | [665 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [636 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [70e 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -orderer.example.com | [35d 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3b8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [666 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [06ccb699]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ -peer1.org1.example.com | [70f 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] marked as valid by state validator -peer1.org2.example.com | [637 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [675dcac4]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -orderer.example.com | [35e 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -peer1.org1.example.com | [710 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org1.example.com | [667 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [06ccb699]Move state message TRANSACTION -peer0.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -peer1.org2.example.com | [638 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [675dcac4]Move state message TRANSACTION -orderer.example.com | [35f 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -peer0.org2.example.com | org.hyperledger.fabric.version="1.1.0" \ -peer1.org1.example.com | [711 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -orderer.example.com | [360 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3b8 principal matched by identity 0 -peer1.org2.example.com | [639 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [675dcac4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [668 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [06ccb699]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | org.hyperledger.fabric.base.version="0.4.2" -orderer.example.com | [361 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 c6 f3 ff e4 78 0b f2 a3 5f 7c 62 af 60 07 43 6d |....x..._|b.`.Cm| -peer1.org1.example.com | [712 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org2.example.com | [63a 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [669 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [713 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage -orderer.example.com | 00000010 86 48 2a 51 9b 10 58 c9 b3 95 c9 19 e6 40 bc 85 |.H*Q..X......@..| -peer0.org1.example.com | [66a 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [06ccb699]sending state message TRANSACTION -peer1.org2.example.com | [63b 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [675dcac4]sending state message TRANSACTION -peer0.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.1.0 -peer1.org1.example.com | [714 12-12 14:20:12.59 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [5] -peer0.org1.example.com | [66b 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [06ccb699]Received message TRANSACTION from shim -orderer.example.com | [362 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b5 e1 1d cf 3c fb 3a 0e e2 19 9e |0E.!.....<.:....| -peer0.org2.example.com | [5db 12-12 14:19:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' -peer1.org1.example.com | [715 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x2b, 0x97, 0x1a, 0x34, 0xe0, 0x9f, 0x84, 0x93, 0x97, 0xdf, 0x58, 0xc6, 0xd5, 0xf6, 0xb, 0xf, 0x1d, 0x2f, 0xf, 0xde, 0x2, 0xc2, 0xdb, 0x15, 0x97, 0x87, 0x7d, 0x95, 0xfd, 0x8d, 0x4a, 0x56} txOffsets= -peer0.org1.example.com | [66c 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [06ccb699]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [63c 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [675dcac4]Received message TRANSACTION from shim -orderer.example.com | 00000010 4b e4 43 0d 85 00 17 03 29 7c f4 f1 e4 bb 97 7d |K.C.....)|.....}| -peer0.org2.example.com | [5dc 12-12 14:19:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: -peer1.org1.example.com | txId=772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 locPointer=offset=70, bytesLength=2916 -peer0.org1.example.com | [66d 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [06ccb699]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [63d 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [675dcac4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | ] -orderer.example.com | 00000020 fa 27 a2 13 5e 02 20 1a aa 3a 3f fe 17 3a 7b 93 |.'..^. ..:?..:{.| -peer0.org2.example.com | [5dd 12-12 14:19:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.1.0 -peer1.org1.example.com | [716 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50781, bytesLength=2916] for tx ID: [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] to index -peer1.org2.example.com | [63e 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [675dcac4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [5de 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] -peer1.org1.example.com | [717 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50781, bytesLength=2916] for tx number:[0] ID: [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] to blockNumTranNum index -peer0.org1.example.com | [66e 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org2.example.com | [63f 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [675dcac4]Sending GET_STATE -orderer.example.com | 00000030 99 be 60 2b d1 50 b5 f9 e7 62 04 66 91 21 88 a7 |..`+.P...b.f.!..| -peer1.org1.example.com | [718 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55491], isChainEmpty=[false], lastBlockNumber=[5] -peer0.org1.example.com | [66f 12-12 14:19:59.01 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 | [640 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [675dcac4]Received message GET_STATE from shim -peer1.org1.example.com | [719 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 5 -peer0.org2.example.com | [5df 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] -orderer.example.com | 00000040 a1 13 fd d4 20 f4 aa |.... ..| -peer1.org1.example.com | [71a 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 5 -peer0.org1.example.com | [670 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer0.org2.example.com | [5e0 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -orderer.example.com | [363 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3b8 principal evaluation succeeds for identity 0 -peer1.org2.example.com | [641 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [675dcac4]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [71b 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) -peer0.org1.example.com | [671 12-12 14:19:59.02 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [364 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3b8 gate 1513088379578517600 evaluation succeeds -peer0.org2.example.com | [5e1 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [71c 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database -peer1.org2.example.com | [642 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [675dcac4]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [672 12-12 14:19:59.02 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [71d 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [643 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [673 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -orderer.example.com | [365 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [71e 12-12 14:20:16.52 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer1.org1.example.com-mycc-1.0-cd123150154e6bf2df7ce682e0b1bcbea40499416f37a6da3aae14c4eb51b08d -orderer.example.com | [366 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [674 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [3f2a3cc2-b936-4dc0-9aec-facf89aeb80f] -peer1.org2.example.com | [644 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [675dcac4] getting state for chaincode lscc, key mycc, channel businesschannel -peer1.org1.example.com | [71f 12-12 14:20:16.52 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -peer0.org2.example.com | [5e2 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc423161ce0 env 0xc42316cb40 txn 0 -peer0.org1.example.com | [675 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org1.example.com | [720 12-12 14:20:16.52 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-mycc-1.0 -orderer.example.com | [367 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -peer1.org2.example.com | [645 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | [5e3 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42316cb40 -peer1.org1.example.com | [721 12-12 14:20:16.60 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org1.example.com-mycc-1.0-cd123150154e6bf2df7ce682e0b1bcbea40499416f37a6da3aae14c4eb51b08d -orderer.example.com | [368 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -peer0.org1.example.com | [676 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [3f2a3cc2-b936-4dc0-9aec-facf89aeb80f] -peer0.org2.example.com | [5e4 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\205\313\277\321\005\020\354\360\344\313\001\"\017businesschannel*@d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv\npydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS\nq+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c\ngHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf\nOwJpoynNCyKsWozuVw==\n-----END CERTIFICATE-----\n\022\0304\343~\010i\016\025q\305'%p7\350\210Xg\357(,\214\004]J" -peer1.org1.example.com | [722 12-12 14:20:17.14 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org1.example.com-mycc-1.0 -peer1.org2.example.com | [646 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [675dcac4]Got state. Sending RESPONSE -orderer.example.com | [369 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -peer0.org2.example.com | [5e5 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [723 12-12 14:20:17.14 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org1.example.com-mycc-1.0) -peer1.org2.example.com | [647 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [675dcac4]handleGetState serial send RESPONSE -peer0.org1.example.com | [677 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -orderer.example.com | [36a 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -peer1.org1.example.com | [724 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.authenticate)-fm.authenticate -> DEBU Chaincode mycc:1.0 's authentication is authorized -peer1.org2.example.com | [648 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [675dcac4]Received message RESPONSE from shim -peer0.org2.example.com | [5e6 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [725 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [678 12-12 14:19:59.02 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)(0x990b90), deserializer:(*msp.mspManagerImpl)(0xc421bab900)} -orderer.example.com | [36b 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4202a4fe0) start: > stop: > from 172.18.0.7:36750 -peer1.org1.example.com | [726 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [5e7 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -peer1.org2.example.com | [649 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [675dcac4]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [679 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer1.org1.example.com | [727 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | [5e8 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [64a 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [675dcac4]before send -peer0.org1.example.com | [67a 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [06ccb699]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [728 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | [36c 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 0 -peer1.org2.example.com | [64b 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [675dcac4]after send -peer0.org2.example.com | [5e9 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [67b 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [06ccb699]Move state message COMPLETED -peer1.org1.example.com | [729 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 -peer0.org1.example.com | [67c 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [06ccb699]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [64c 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [675dcac4]Received RESPONSE, communicated (state:ready) -orderer.example.com | [36d 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4202a4fe0) for 172.18.0.7:36750 -peer0.org2.example.com | [5ea 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422e7f500, header channel_header:"\010\003\032\014\010\205\313\277\321\005\020\354\360\344\313\001\"\017businesschannel*@d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv\npydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS\nq+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c\ngHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf\nOwJpoynNCyKsWozuVw==\n-----END CERTIFICATE-----\n\022\0304\343~\010i\016\025q\305'%p7\350\210Xg\357(,\214\004]J" -peer0.org1.example.com | [67d 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [06ccb699]send state message COMPLETED -peer1.org1.example.com | [72a 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED -peer0.org2.example.com | [5eb 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | [36e 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:36750 for (0xc4202a4fe0) -peer1.org2.example.com | [64d 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [675dcac4]GetState received payload RESPONSE -peer0.org1.example.com | [67e 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [06ccb699]Received message COMPLETED from shim -peer1.org1.example.com | [72b 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -orderer.example.com | [36f 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36750 -peer1.org2.example.com | [64e 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [675dcac4]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [5ec 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [67f 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [06ccb699]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [72c 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed -peer1.org2.example.com | [64f 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [675dcac4]Move state message COMPLETED -peer1.org1.example.com | [72d 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY -orderer.example.com | [370 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36750 -peer0.org1.example.com | [680 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [06ccb699-ae6d-4276-9548-64c43f16f171]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [650 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [675dcac4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [5ed 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org1.example.com | [72e 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [681 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:06ccb699-ae6d-4276-9548-64c43f16f171, channelID:businesschannel -orderer.example.com | [371 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36750: rpc error: code = Canceled desc = context canceled -peer0.org2.example.com | [5ee 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [72f 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [651 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [675dcac4]send state message COMPLETED -peer0.org1.example.com | [682 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [372 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -peer1.org1.example.com | [730 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f93b8a8b]Move state message READY -peer0.org2.example.com | [5ef 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] -orderer.example.com | [373 12-12 14:19:39.68 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -peer0.org1.example.com | [683 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] -peer1.org2.example.com | [652 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [675dcac4]Received message COMPLETED from shim -orderer.example.com | [374 12-12 14:19:39.68 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36752 -peer1.org1.example.com | [731 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f93b8a8b]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [5f0 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [653 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [675dcac4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [684 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc4229f4880 -orderer.example.com | [375 12-12 14:19:39.68 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36752 -peer0.org2.example.com | [5f1 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc42316cb40 envbytes 0xc422828380 -peer1.org1.example.com | [732 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [f93b8a8b]Entered state ready -peer1.org2.example.com | [654 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [675dcac41df7f9d767dd5ca35ac0e8e37e788658288f44ec7c98739b55a584c0]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [5f2 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422828380 -orderer.example.com | [376 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -peer1.org2.example.com | [655 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:675dcac41df7f9d767dd5ca35ac0e8e37e788658288f44ec7c98739b55a584c0, channelID:businesschannel -peer0.org1.example.com | [685 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4203676b0 envbytes 0xc4229f4880 -peer1.org1.example.com | [733 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:f93b8a8b234c0861a2a63634a0b3f6f4c9d32ad20af95675c0fa62f4b68a057c, channelID:businesschannel -peer0.org2.example.com | [5f3 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [377 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:36754 -peer0.org1.example.com | [686 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422aee500 env 0xc4203676b0 txn 0 -peer1.org1.example.com | [734 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f93b8a8b]sending state message READY -peer1.org2.example.com | [656 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [378 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: appchannel] Broadcast is processing config update message from 172.18.0.7:36754 -peer0.org1.example.com | [687 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org2.example.com | [5f4 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] -peer1.org2.example.com | [657 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched -peer1.org1.example.com | [735 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU sending init completed -peer0.org1.example.com | [688 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -orderer.example.com | [379 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update tx with system channel message processor for channel ID appchannel -peer1.org2.example.com | [658 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer0.org2.example.com | [5f5 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=2b3c0599-3f5b-45f2-ad1e-cfaa140f3478,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org1.example.com | [689 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] -peer1.org1.example.com | [736 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [659 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org1.example.com | [68a 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | [37a 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing channel create tx for channel appchannel on system channel testchainid -peer0.org2.example.com | [5f6 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d chaindID businesschannel -peer1.org2.example.com | [65a 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=mycc:1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -peer0.org1.example.com | [68b 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [3] -peer0.org2.example.com | [5f7 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -orderer.example.com | [37b 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org1.example.com | [737 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [68c 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org2.example.com | [65b 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] -peer1.org1.example.com | [738 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer0.org2.example.com | [5f8 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [68d 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -orderer.example.com | [37c 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [739 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f93b8a8b]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [68e 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | [37d 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [65c 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer1.org2.example.com) -peer0.org1.example.com | [68f 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) -peer0.org2.example.com | [5f9 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -orderer.example.com | [37e 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [73a 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [690 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] marked as valid by state validator -peer1.org2.example.com | [65d 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer0.org2.example.com | [5fa 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2b3c0599]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [691 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org2.example.com | [65e 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org1.example.com | [73b 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [37f 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [5fb 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [692 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=mycc:1.0 -orderer.example.com | [380 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [693 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org1.example.com | [694 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage -peer1.org1.example.com | [73c 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f93b8a8b]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [5fc 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2b3c0599]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [28f 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org1.example.com | [290 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [0c8 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org1.example.com | [10c 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9d848a15]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | [10d 12-15 03:49:08.32 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 | [130 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock +peer1.org2.example.com | [13a 12-15 03:49:12.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [291 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [292 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org1.example.com | [293 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org1.example.com | [294 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org1.example.com | [295 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org1.example.com | [296 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer0.org1.example.com | [297 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [298 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [0c9 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [13b 12-15 03:49:12.60 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 | [10e 12-15 03:49:08.32 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 | [10f 12-15 03:49:08.32 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 | [110 12-15 03:49:08.32 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.1.0 +peer1.org1.example.com | [111 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9d848a15]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [112 12-15 03:49:08.32 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 | [131 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock +peer0.org1.example.com | [299 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [29a 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org2.example.com | [13c 12-15 03:49:12.60 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 | [132 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.1.0 +orderer.example.com | [0ca 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [29b 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer1.org1.example.com | [113 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9d848a15]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [13d 12-15 03:49:12.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.1.0 +peer0.org1.example.com | [29c 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [0cb 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [134 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 +peer1.org2.example.com | [13e 12-15 03:49:12.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.1.0" , sending back REGISTERED +peer0.org1.example.com | [29d 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org1.example.com | [114 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9d848a15]Move state message INIT +peer0.org2.example.com | [135 12-15 03:49:10.94 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 | [13f 12-15 03:49:12.61 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 | [0cc 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [29e 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer1.org1.example.com | [115 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9d848a15]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [136 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 +peer1.org2.example.com | [141 12-15 03:49:12.61 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.1.0 launch seq completed +peer0.org1.example.com | [29f 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer1.org1.example.com | [116 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [142 12-15 03:49:12.61 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 | [137 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org1.example.com | [2a0 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +orderer.example.com | [0cd 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [143 12-15 03:49:12.61 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 | [117 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9d848a15]sending state message INIT +peer0.org1.example.com | [2a1 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org2.example.com | [138 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 +orderer.example.com | [0ce 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [118 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9d848a15]Received message INIT from shim +peer1.org2.example.com | [144 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b9a9fbe]Move state message READY +peer0.org1.example.com | [2a2 12-15 03:49:14.86 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +orderer.example.com | [0cf 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [145 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7b9a9fbe]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org2.example.com | [139 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [119 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9d848a15]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [2a3 12-15 03:49:14.86 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer1.org2.example.com | [146 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [7b9a9fbe]Entered state ready +peer1.org1.example.com | [11a 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [13a 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [2a4 12-15 03:49:14.86 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +orderer.example.com | [0d0 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org2.example.com | [13b 12-15 03:49:10.94 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 | [2a5 12-15 03:49:14.86 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer1.org1.example.com | [11b 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [9d848a15]Received INIT, initializing chaincode +peer0.org1.example.com | [2a6 12-15 03:49:14.86 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] +peer1.org2.example.com | [147 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:7b9a9fbe-49d6-47d9-b8fd-1b1999d869d4, channelID: +peer1.org1.example.com | [11c 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +orderer.example.com | [0d1 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org1.example.com | [2a7 12-15 03:49:14.86 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/transientStore/] does not exist +peer0.org2.example.com | [13c 12-15 03:49:10.94 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 | [11d 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9d848a15]Init get response status: 200 +orderer.example.com | [0d2 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +peer1.org2.example.com | [148 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b9a9fbe]sending state message READY +peer0.org1.example.com | [2a8 12-15 03:49:14.86 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/transientStore/] exists +peer0.org2.example.com | [13d 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.1.0 +peer1.org2.example.com | [149 12-15 03:49:12.61 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 | [0d3 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [2a9 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +peer0.org2.example.com | [13e 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.1.0" , sending back REGISTERED +peer1.org2.example.com | [14a 12-15 03:49:12.61 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 | [2aa 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func3 -> DEBU Deploying system CC, for chain +peer0.org2.example.com | [13f 12-15 03:49:10.94 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 | [14b 12-15 03:49:12.61 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 | MIICLzCCAdWgAwIBAgIQGXf5zEgjlejkE1rJW2znwDAKBggqhkjOPQQDAjBpMQsw +peer1.org1.example.com | [11e 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9d848a15]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [2ab 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [140 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [14c 12-15 03:49:12.61 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.1.0 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | [11f 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9d848a15]Move state message COMPLETED +peer0.org1.example.com | [2ac 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b303923f-ba26-45c6-a36e-7bcedf6ab856] +peer0.org2.example.com | [141 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [120 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9d848a15]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [14d 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7b9a9fbe]Inside sendExecuteMessage. Message INIT +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org2.example.com | [142 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [2ad 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.1.0,txid=b303923f-ba26-45c6-a36e-7bcedf6ab856,syscc=true,proposal=0x0,canname=cscc:1.1.0 +peer1.org2.example.com | [14e 12-15 03:49:12.61 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 | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowaTELMAkGA1UE +peer1.org1.example.com | [121 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9d848a15]send state message COMPLETED +peer0.org2.example.com | [143 12-15 03:49:10.94 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.1.0 launch seq completed +peer0.org1.example.com | [2ae 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 +peer0.org1.example.com | [2af 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [2b0 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +peer0.org1.example.com | [2b1 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b303923f]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [2b2 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [2b3 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b303923f]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [2b4 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b303923f]Move state message INIT +peer0.org1.example.com | [2b5 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b303923f]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [2b6 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [2b7 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b303923f]sending state message INIT +peer0.org1.example.com | [2b8 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b303923f]Received message INIT from shim +peer0.org1.example.com | [2b9 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b303923f]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [14f 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7b9a9fbe]sendExecuteMsg trigger event INIT +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org2.example.com | [144 12-15 03:49:10.94 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 | [145 12-15 03:49:10.94 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 | [146 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [deca90ba]Move state message READY +peer0.org2.example.com | [147 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [deca90ba]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [122 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9d848a15]Received message COMPLETED from shim +orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +peer0.org1.example.com | [2ba 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [140 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [150 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org2.example.com | [151 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org2.example.com | [152 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b9a9fbe]Received message READY from shim +peer1.org2.example.com | [153 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7b9a9fbe]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [154 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b9a9fbe]Move state message INIT +peer1.org2.example.com | [155 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7b9a9fbe]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [156 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [157 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b9a9fbe]sending state message INIT +peer1.org2.example.com | [158 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b9a9fbe]Received message INIT from shim +peer1.org2.example.com | [159 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7b9a9fbe]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [148 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [deca90ba]Entered state ready +orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFSKPRsXnXvaTTqRKjkTRYYoPjGg +peer1.org1.example.com | [123 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9d848a15]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [2bb 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b303923f]Received INIT, initializing chaincode +peer1.org2.example.com | [15a 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [149 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:deca90ba-da67-4b1d-ad93-8e25816b61ed, channelID: +orderer.example.com | TgXRAoMQwI+9AaLXTSL+AsApwlxedr+PJ+UgfBNcxey226YSZRJqLeiH/TajXzBd +peer0.org1.example.com | [2bc 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org2.example.com | [14a 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [deca90ba]sending state message READY +peer1.org2.example.com | [15b 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [7b9a9fbe]Received INIT, initializing chaincode +orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +peer1.org1.example.com | [124 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9d848a15-eb02-49cc-a098-b66c9ee1ea1d]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [2bd 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b303923f]Init get response status: 200 +peer0.org2.example.com | [14b 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [deca90ba]Received message READY from shim +peer1.org2.example.com | [15c 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b9a9fbe]Init get response status: 200 +orderer.example.com | Af8wKQYDVR0OBCIEIPxyg8RiuCl5W+wOoXUqeRhWBcR2XF2JtWJ5qtJMQ3Y1MAoG +peer1.org1.example.com | [125 12-15 03:49:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9d848a15-eb02-49cc-a098-b66c9ee1ea1d, channelID: +peer0.org1.example.com | [2be 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b303923f]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [14c 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [deca90ba]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [15d 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b9a9fbe]Init succeeded. Sending COMPLETED +orderer.example.com | CCqGSM49BAMCA0gAMEUCIQCoRrlZYPh0Qnsp3Z9KitmTDkRqi6JyR4RLiOyfv8Tf +peer1.org1.example.com | [126 12-15 03:49:08.32 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 | [2bf 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b303923f]Move state message COMPLETED +peer0.org2.example.com | [14d 12-15 03:49:10.94 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 | [15e 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b9a9fbe]Move state message COMPLETED +orderer.example.com | QgIgdHbFqXGTZ0HFQmknUFd5DD4TTltv8Ijmfm8J1skS4jc= +peer1.org1.example.com | [127 12-15 03:49:08.32 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 | [2c0 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b303923f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [14e 12-15 03:49:10.94 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 | [15f 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7b9a9fbe]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [128 12-15 03:49:08.33 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.1.0,txid=89bec49b-4053-48a0-a916-42f22a410e40,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer0.org1.example.com | [2c1 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b303923f]send state message COMPLETED +orderer.example.com | [0d4 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [14f 12-15 03:49:10.94 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 | [129 12-15 03:49:08.33 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.1.0 is being launched +peer0.org1.example.com | [2c2 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b303923f]Received message COMPLETED from shim +peer1.org2.example.com | [160 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b9a9fbe]send state message COMPLETED +peer0.org2.example.com | [150 12-15 03:49:10.94 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.1.0 +orderer.example.com | MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +peer1.org1.example.com | [12a 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer1.org2.example.com | [161 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b9a9fbe]Received message COMPLETED from shim +peer0.org1.example.com | [2c3 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b303923f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [151 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [deca90ba]Inside sendExecuteMessage. Message INIT +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | [12b 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +peer1.org1.example.com | [12c 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +peer1.org1.example.com | [12d 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +peer1.org1.example.com | [12e 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) +peer1.org2.example.com | [162 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7b9a9fbe]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [152 12-15 03:49:10.94 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 | [12f 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +peer0.org1.example.com | [2c4 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b303923f-ba26-45c6-a36e-7bcedf6ab856]HandleMessage- COMPLETED. Notify +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org2.example.com | [163 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7b9a9fbe-49d6-47d9-b8fd-1b1999d869d4]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [153 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [deca90ba]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [154 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [deca90ba]Move state message INIT +peer0.org2.example.com | [155 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [deca90ba]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [156 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [157 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [deca90ba]sending state message INIT +peer0.org2.example.com | [158 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [deca90ba]Received message INIT from shim +peer0.org2.example.com | [159 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [deca90ba]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [15a 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [15b 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [deca90ba]Received INIT, initializing chaincode +peer0.org2.example.com | [15c 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [deca90ba]Init get response status: 200 +peer0.org2.example.com | [15d 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [deca90ba]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [15e 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [deca90ba]Move state message COMPLETED +peer0.org2.example.com | [15f 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [deca90ba]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [2c5 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b303923f-ba26-45c6-a36e-7bcedf6ab856, channelID:businesschannel +peer1.org1.example.com | [130 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +orderer.example.com | ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +orderer.example.com | Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +orderer.example.com | sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [0d5 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +peer0.org2.example.com | [160 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [deca90ba]send state message COMPLETED +peer1.org2.example.com | [164 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7b9a9fbe-49d6-47d9-b8fd-1b1999d869d4, channelID: +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.1.0 +peer0.org1.example.com | [2c6 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org2.example.com | [161 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [deca90ba]Received message COMPLETED from shim +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | [2c7 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org2.example.com | [165 12-15 03:49:12.61 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 | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer0.org2.example.com | [162 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [deca90ba]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [2c8 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [b303923f-ba26-45c6-a36e-7bcedf6ab856] +peer1.org2.example.com | [166 12-15 03:49:12.61 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 | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer0.org2.example.com | [163 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [deca90ba-da67-4b1d-ad93-8e25816b61ed]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [2c9 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [167 12-15 03:49:12.61 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.1.0,txid=23b7d2ba-461f-4086-a6ec-4be7482146d7,syscc=true,proposal=0x0,canname=qscc:1.1.0 +orderer.example.com | zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +peer0.org1.example.com | [2ca 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [696607a2-b2de-40b8-872a-7879c2d18d50] +peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org2.example.com | [168 12-15 03:49:12.61 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.1.0 is being launched +peer0.org2.example.com | [164 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:deca90ba-da67-4b1d-ad93-8e25816b61ed, channelID: +peer0.org1.example.com | [2cb 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=696607a2-b2de-40b8-872a-7879c2d18d50,syscc=true,proposal=0x0,canname=lscc:1.1.0 +orderer.example.com | ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org2.example.com | [169 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org2.example.com | [165 12-15 03:49:10.94 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 | 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 | [166 12-15 03:49:10.94 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 | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +peer0.org1.example.com | [2cc 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer0.org2.example.com | [167 12-15 03:49:10.94 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.1.0,txid=b6a9f7c5-1483-4675-8ece-06fa99258596,syscc=true,proposal=0x0,canname=qscc:1.1.0 +peer1.org2.example.com | [16a 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +peer1.org2.example.com | [16b 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=qscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +peer1.org1.example.com | [131 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock +peer1.org1.example.com | [132 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock +orderer.example.com | Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +orderer.example.com | sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +peer0.org2.example.com | [168 12-15 03:49:10.94 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.1.0 is being launched +peer1.org2.example.com | [16c 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key] +peer0.org1.example.com | [2cd 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [133 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.1.0 +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [169 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer1.org2.example.com | [16d 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: qscc:1.1.0(networkid:dev,peerid:peer1.org2.example.com) +peer0.org1.example.com | [2ce 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer0.org1.example.com | [2cf 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [696607a2]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [2d0 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [2d1 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [696607a2]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [135 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 +peer1.org2.example.com | [16e 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +peer1.org2.example.com | [16f 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer0.org2.example.com | [16a 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org1.example.com | [2d2 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [696607a2]Move state message INIT +orderer.example.com | [0d6 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer1.org1.example.com | [136 12-15 03:49:08.33 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 | [137 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 +peer1.org1.example.com | [138 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer1.org1.example.com | [139 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 +peer1.org1.example.com | [13a 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [13b 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | [16b 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=qscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +peer0.org1.example.com | [2d3 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [696607a2]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | [0d7 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | [0d8 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [0d9 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.1.0 +peer0.org1.example.com | [2d4 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [16c 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +peer1.org1.example.com | [13c 12-15 03:49:08.33 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 | [13d 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | [0da 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | [695 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [3] -orderer.example.com | [381 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org1.example.com | [73d 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f93b8a8b]Move state message TRANSACTION -peer0.org2.example.com | [5fd 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2b3c0599]Move state message TRANSACTION -peer0.org1.example.com | [696 12-12 14:19:59.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x34, 0x2, 0x99, 0xb0, 0xd2, 0xb, 0x90, 0x75, 0x7, 0xf4, 0x2a, 0xad, 0x5e, 0xc7, 0xb9, 0xc7, 0x6c, 0xe1, 0x51, 0x1a, 0xa2, 0xad, 0x31, 0x80, 0x80, 0x54, 0x30, 0x62, 0x36, 0xf4, 0xaf, 0xeb} txOffsets= -peer1.org1.example.com | [73e 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f93b8a8b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [382 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [2d5 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [696607a2]sending state message INIT +peer0.org2.example.com | [16d 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: qscc:1.1.0(networkid:dev,peerid:peer0.org2.example.com) peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org1.example.com | txId=d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d locPointer=offset=70, bytesLength=3454 -peer1.org1.example.com | [73f 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [0db 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [2d6 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [696607a2]Received message INIT from shim +peer0.org2.example.com | [16e 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer0.org2.example.com | [16f 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.1.0 +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | [13e 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.1.0 +peer1.org1.example.com | [13f 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.1.0" , sending back REGISTERED +peer1.org1.example.com | [140 12-15 03:49:08.33 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 | [141 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org1.example.com | [142 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [143 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org2.example.com | [5fe 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2b3c0599]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [383 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | ] peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org2.example.com | [5ff 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [740 12-12 14:20:17.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f93b8a8b]sending state message TRANSACTION -orderer.example.com | [384 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [697 12-12 14:19:59.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40157, bytesLength=3454] for tx ID: [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] to index -peer0.org2.example.com | [600 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2b3c0599]sending state message TRANSACTION peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | [385 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [698 12-12 14:19:59.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40157, bytesLength=3454] for tx number:[0] ID: [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] to blockNumTranNum index -peer1.org1.example.com | [741 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f93b8a8b]Received message GET_STATE from shim -peer0.org2.example.com | [601 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2b3c0599]Received message TRANSACTION from shim -peer1.org1.example.com | [742 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f93b8a8b]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [699 12-12 14:19:59.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45405], isChainEmpty=[false], lastBlockNumber=[3] -orderer.example.com | [386 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | [743 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [f93b8a8b]Received GET_STATE, invoking get state from ledger -orderer.example.com | [387 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [602 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2b3c0599]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [69a 12-12 14:19:59.04 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 3 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.org1.example.com | [744 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [388 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [603 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2b3c0599]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [745 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f93b8a8b] getting state for chaincode mycc, key a, channel businesschannel -peer0.org1.example.com | [69b 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 3 -orderer.example.com | [389 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [604 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [69c 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [3] with 1 transaction(s) -peer1.org2.example.com | [65f 12-12 14:20:03.79 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org2.example.com-mycc-1.0) lock -orderer.example.com | [38a 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org2.example.com | [605 12-12 14:19:58.97 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 | [38b 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org1.example.com | [746 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=a -peer1.org2.example.com | [660 12-12 14:20:03.80 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org2.example.com-mycc-1.0) lock -peer0.org1.example.com | [69d 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database -peer0.org2.example.com | [606 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -orderer.example.com | [38c 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org1.example.com | [69e 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [747 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f93b8a8b]Got state. Sending RESPONSE -peer1.org2.example.com | [661 12-12 14:20:03.80 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer1.org2.example.com-mycc-1.0 -orderer.example.com | [38d 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -peer0.org2.example.com | [607 12-12 14:19:58.97 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [748 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f93b8a8b]handleGetState serial send RESPONSE -peer1.org2.example.com | [662 12-12 14:20:03.80 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer1.org2.example.com-mycc-1.0(No such container: dev-peer1.org2.example.com-mycc-1.0) -orderer.example.com | [38e 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [69f 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [749 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f93b8a8b]Received message COMPLETED from shim -orderer.example.com | MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [6a0 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccmycc] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] -peer0.org2.example.com | [608 12-12 14:19:58.97 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [609 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org1.example.com | [74a 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f93b8a8b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org2.example.com | [663 12-12 14:20:03.80 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer1.org2.example.com-mycc-1.0 (No such container: dev-peer1.org2.example.com-mycc-1.0) -peer0.org1.example.com | [6a1 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -peer0.org2.example.com | [60a 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [65a94a33-2011-4d39-a3db-8c68f2035028] -peer1.org2.example.com | [664 12-12 14:20:03.80 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org2.example.com-mycc-1.0 (No such container: dev-peer1.org2.example.com-mycc-1.0) -peer1.org1.example.com | [74b 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f93b8a8b234c0861a2a63634a0b3f6f4c9d32ad20af95675c0fa62f4b68a057c]HandleMessage- COMPLETED. Notify -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org2.example.com | [60b 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [6a2 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer1.org1.example.com | [74c 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f93b8a8b234c0861a2a63634a0b3f6f4c9d32ad20af95675c0fa62f4b68a057c, channelID:businesschannel -peer1.org2.example.com | [665 12-12 14:20:03.80 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org2.example.com-mycc-1.0 -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -peer1.org2.example.com | [666 12-12 14:20:03.80 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default -peer1.org1.example.com | [74d 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -peer0.org2.example.com | [60c 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [65a94a33-2011-4d39-a3db-8c68f2035028] -peer0.org1.example.com | [6a3 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [74e 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [667 12-12 14:20:03.80 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-mycc-1.0 -orderer.example.com | ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -peer0.org2.example.com | [60d 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer0.org1.example.com | [6a4 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database -peer1.org1.example.com | [74f 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org2.example.com | [668 12-12 14:20:03.80 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 | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -peer0.org1.example.com | [6a5 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -peer0.org2.example.com | [60e 12-12 14:19:58.97 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)(0x990b90), deserializer:(*msp.mspManagerImpl)(0xc42197b680)} -peer1.org2.example.com | [669 12-12 14:20:03.80 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -peer1.org1.example.com | [750 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [f93b8a8b234c0861a2a63634a0b3f6f4c9d32ad20af95675c0fa62f4b68a057c] -orderer.example.com | Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -peer0.org2.example.com | [60f 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer1.org2.example.com | [170 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock +peer1.org2.example.com | [171 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock +peer1.org2.example.com | [172 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.1.0 +peer1.org2.example.com | [173 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) +peer1.org2.example.com | [174 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 +peer1.org2.example.com | [175 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org1.example.com | [2d7 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [696607a2]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | [0dc 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [0dd 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +orderer.example.com | [0de 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [0df 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [0e0 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [0e1 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org1.example.com | [144 12-15 03:49:08.33 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.1.0 launch seq completed +peer1.org2.example.com | [176 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 +peer1.org2.example.com | [177 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org2.example.com | [178 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 +peer1.org2.example.com | [179 12-15 03:49:12.61 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 | [17a 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | [17b 12-15 03:49:12.61 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 | [17c 12-15 03:49:12.61 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 | [17d 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.1.0 +peer1.org2.example.com | [17e 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.1.0" , sending back REGISTERED +peer0.org1.example.com | [2d8 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [2d9 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [696607a2]Received INIT, initializing chaincode +peer0.org1.example.com | [2da 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [696607a2]Init get response status: 200 +peer0.org1.example.com | [2db 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [696607a2]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [2dc 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [696607a2]Move state message COMPLETED +peer0.org1.example.com | [2dd 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [696607a2]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [2de 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [696607a2]send state message COMPLETED +peer0.org1.example.com | [2df 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [696607a2]Received message COMPLETED from shim +peer0.org1.example.com | [2e0 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [696607a2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [0e2 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQShjAwe+6sxoSMZ8UrYKOcTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | GwyyfDLH07dFVkEvxJDGOKGevUcaYHphZvhzV78MBXVwIEGIENk7Zs8x+dx6iwIK +orderer.example.com | LOGmXxq/Wqd4qLs6kFyZvqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgsK9pE/plIOV10mqefUzE +orderer.example.com | vCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAL7xXrYD1fkzcpxi +orderer.example.com | yyZhFfEvMDWCoUicQw2b+c3GQ6OuAiA0KtNuH4yS4+c13W9Lsd28XNQK88FkwB2J +orderer.example.com | QR9yhJE7rA== +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [145 12-15 03:49:08.33 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 | 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 | [133 12-15 03:49:10.94 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) +peer0.org2.example.com | [170 12-15 03:49:10.95 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock +peer0.org2.example.com | [171 12-15 03:49:10.95 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock +peer0.org2.example.com | [172 12-15 03:49:10.95 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.1.0 +peer0.org2.example.com | [173 12-15 03:49:10.95 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) +peer0.org2.example.com | [174 12-15 03:49:10.95 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 +peer0.org2.example.com | [175 12-15 03:49:10.95 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 | [176 12-15 03:49:10.96 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 +peer0.org2.example.com | [177 12-15 03:49:10.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org2.example.com | [178 12-15 03:49:10.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 +peer0.org2.example.com | [179 12-15 03:49:10.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [2e1 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [696607a2-b2de-40b8-872a-7879c2d18d50]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [17f 12-15 03:49:12.61 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 | [0e3 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +peer1.org1.example.com | [146 12-15 03:49:08.33 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 | [17a 12-15 03:49:10.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [2e2 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:696607a2-b2de-40b8-872a-7879c2d18d50, channelID:businesschannel +peer1.org2.example.com | [181 12-15 03:49:12.61 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.1.0 launch seq completed +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [2e3 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [17b 12-15 03:49:10.97 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 | [147 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89bec49b]Move state message READY +peer1.org1.example.com | [148 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [89bec49b]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [149 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [89bec49b]Entered state ready +peer1.org1.example.com | [14a 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:89bec49b-4053-48a0-a916-42f22a410e40, channelID: +peer1.org1.example.com | [14b 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89bec49b]sending state message READY +peer1.org1.example.com | [14c 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89bec49b]Received message READY from shim +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +peer0.org1.example.com | [2e4 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org1.example.com | [2e5 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [696607a2-b2de-40b8-872a-7879c2d18d50] +peer1.org1.example.com | [14d 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [89bec49b]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [182 12-15 03:49:12.61 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 | [183 12-15 03:49:12.61 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 | [184 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [23b7d2ba]Move state message READY +peer1.org2.example.com | [185 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [23b7d2ba]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [186 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [23b7d2ba]Entered state ready +peer1.org2.example.com | [187 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:23b7d2ba-461f-4086-a6ec-4be7482146d7, channelID: +orderer.example.com | kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +peer0.org2.example.com | [17c 12-15 03:49:10.97 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 | [2e6 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [2e7 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [d2086533-3b8b-4419-89d3-ec741b2fcbf6] +peer0.org1.example.com | [2e8 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=d2086533-3b8b-4419-89d3-ec741b2fcbf6,syscc=true,proposal=0x0,canname=escc:1.1.0 +peer1.org1.example.com | [14e 12-15 03:49:08.33 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 | [14f 12-15 03:49:08.33 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 | [150 12-15 03:49:08.33 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 | [151 12-15 03:49:08.33 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.1.0 +peer1.org1.example.com | [152 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [89bec49b]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [153 12-15 03:49:08.33 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 | [154 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [89bec49b]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [17d 12-15 03:49:10.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.1.0 +peer1.org2.example.com | [188 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [23b7d2ba]sending state message READY +peer1.org2.example.com | [189 12-15 03:49:12.61 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 | [18a 12-15 03:49:12.61 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 | [18b 12-15 03:49:12.61 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 | [18c 12-15 03:49:12.61 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.1.0 +peer0.org1.example.com | [2e9 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [2ea 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [2eb 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [2ec 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d2086533]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [2ed 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [2ee 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d2086533]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [2ef 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2086533]Move state message INIT +peer0.org1.example.com | [2f0 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d2086533]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [2f1 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +orderer.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +orderer.example.com | OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +peer1.org1.example.com | [155 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89bec49b]Move state message INIT +peer0.org1.example.com | [2f2 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2086533]sending state message INIT +peer0.org2.example.com | [17e 12-15 03:49:10.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.1.0" , sending back REGISTERED +peer1.org2.example.com | [18d 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [23b7d2ba]Inside sendExecuteMessage. Message INIT +orderer.example.com | bqEi6/lY2kK0EtGRnA== +peer1.org1.example.com | [156 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [89bec49b]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [17f 12-15 03:49:10.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [18e 12-15 03:49:12.61 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 | [2f3 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2086533]Received message INIT from shim +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [157 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [180 12-15 03:49:10.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org2.example.com | [18f 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [23b7d2ba]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [2f4 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d2086533]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [158 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89bec49b]sending state message INIT +orderer.example.com | [0e4 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [180 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org2.example.com | [181 12-15 03:49:10.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [2f5 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [159 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89bec49b]Received message INIT from shim +peer1.org2.example.com | [190 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [2f6 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d2086533]Received INIT, initializing chaincode +peer0.org2.example.com | [182 12-15 03:49:10.97 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 | [191 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org1.example.com | [15a 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [89bec49b]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [2f7 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer1.org2.example.com | [192 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [23b7d2ba]Received message READY from shim +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [183 12-15 03:49:10.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 qscc:1.1.0 launch seq completed +peer1.org2.example.com | [194 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [23b7d2ba]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | [15b 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [2f8 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2086533]Init get response status: 200 +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [193 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [23b7d2ba]Move state message INIT +peer0.org2.example.com | [184 12-15 03:49:10.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.org1.example.com | [15c 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [89bec49b]Received INIT, initializing chaincode +peer0.org1.example.com | [2f9 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2086533]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [185 12-15 03:49:10.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... +peer1.org2.example.com | [195 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [23b7d2ba]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +peer1.org1.example.com | [15d 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89bec49b]Init get response status: 200 +peer0.org1.example.com | [2fa 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2086533]Move state message COMPLETED +peer1.org2.example.com | [196 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [186 12-15 03:49:10.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b6a9f7c5]Move state message READY +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [15e 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89bec49b]Init succeeded. Sending COMPLETED +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [187 12-15 03:49:10.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b6a9f7c5]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [197 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [23b7d2ba]sending state message INIT +peer0.org1.example.com | [2fb 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d2086533]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [15f 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89bec49b]Move state message COMPLETED +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +peer0.org1.example.com | [2fc 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2086533]send state message COMPLETED +peer0.org2.example.com | [188 12-15 03:49:10.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [b6a9f7c5]Entered state ready +peer1.org2.example.com | [198 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [23b7d2ba]Received message INIT from shim +peer0.org1.example.com | [2fd 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2086533]Received message COMPLETED from shim +orderer.example.com | kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +peer1.org1.example.com | [160 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [89bec49b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [189 12-15 03:49:10.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:b6a9f7c5-1483-4675-8ece-06fa99258596, channelID: +peer0.org1.example.com | [2fe 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d2086533]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +peer0.org2.example.com | [18a 12-15 03:49:10.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b6a9f7c5]sending state message READY +peer1.org2.example.com | [199 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [23b7d2ba]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +peer1.org1.example.com | [161 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89bec49b]send state message COMPLETED +peer0.org1.example.com | [2ff 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d2086533-3b8b-4419-89d3-ec741b2fcbf6]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [19a 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [18b 12-15 03:49:10.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b6a9f7c5]Received message READY from shim +orderer.example.com | OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +peer1.org1.example.com | [162 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89bec49b]Received message COMPLETED from shim +peer0.org1.example.com | [300 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d2086533-3b8b-4419-89d3-ec741b2fcbf6, channelID:businesschannel +orderer.example.com | bqEi6/lY2kK0EtGRnA== +peer0.org2.example.com | [18c 12-15 03:49:10.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b6a9f7c5]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [19b 12-15 03:49:12.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [23b7d2ba]Received INIT, initializing chaincode +peer0.org1.example.com | [301 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [163 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [89bec49b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [19c 12-15 03:49:12.62 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer0.org2.example.com | [18d 12-15 03:49:10.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 +orderer.example.com | [0e5 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org1.example.com | [164 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [89bec49b-4053-48a0-a916-42f22a410e40]HandleMessage- COMPLETED. Notify +orderer.example.com | [0e6 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org1.example.com | [165 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:89bec49b-4053-48a0-a916-42f22a410e40, channelID: +peer1.org2.example.com | [19d 12-15 03:49:12.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [23b7d2ba]Init get response status: 200 +peer0.org2.example.com | [18e 12-15 03:49:10.97 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 | [0e7 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [302 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +peer1.org1.example.com | [166 12-15 03:49:08.33 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 | [0e8 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [19e 12-15 03:49:12.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [23b7d2ba]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [18f 12-15 03:49:10.97 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 | [0e9 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [19f 12-15 03:49:12.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [23b7d2ba]Move state message COMPLETED +peer1.org1.example.com | [167 12-15 03:49:08.33 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 | [0ea 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer0.org2.example.com | [190 12-15 03:49:10.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: qscc:1.1.0 +peer1.org2.example.com | [1a0 12-15 03:49:12.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [23b7d2ba]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [303 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [d2086533-3b8b-4419-89d3-ec741b2fcbf6] +peer1.org1.example.com | [134 12-15 03:49:08.33 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) +orderer.example.com | [0eb 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [1a1 12-15 03:49:12.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [23b7d2ba]send state message COMPLETED +peer0.org1.example.com | [304 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [0ec 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org2.example.com | [191 12-15 03:49:10.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b6a9f7c5]Inside sendExecuteMessage. Message INIT +orderer.example.com | [0ed 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org2.example.com | [1a2 12-15 03:49:12.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [23b7d2ba]Received message COMPLETED from shim +peer1.org1.example.com | [168 12-15 03:49:08.34 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.1.0,txid=8ade649e-2931-4bb8-95ae-7e91fb16ce53,syscc=true,proposal=0x0,canname=qscc:1.1.0 +peer0.org1.example.com | [305 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [bc50b7e3-4a11-4067-bd90-ad2e42f51bbf] +orderer.example.com | [0ee 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +peer0.org2.example.com | [192 12-15 03:49:10.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 | [1a3 12-15 03:49:12.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [23b7d2ba]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [0ef 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [169 12-15 03:49:08.34 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.1.0 is being launched +peer0.org1.example.com | [306 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=bc50b7e3-4a11-4067-bd90-ad2e42f51bbf,syscc=true,proposal=0x0,canname=vscc:1.1.0 +orderer.example.com | MIICQzCCAeqgAwIBAgIRAMt+4ybOK1r7B8eavLVTMBUwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [1a4 12-15 03:49:12.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [23b7d2ba-461f-4086-a6ec-4be7482146d7]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [16a 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer1.org1.example.com | [16b 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [307 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer1.org2.example.com | [1a5 12-15 03:49:12.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:23b7d2ba-461f-4086-a6ec-4be7482146d7, channelID: +peer0.org2.example.com | [193 12-15 03:49:10.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b6a9f7c5]sendExecuteMsg trigger event INIT +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [1a6 12-15 03:49:12.63 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 | [16c 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=qscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +peer0.org2.example.com | [194 12-15 03:49:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b6a9f7c5]Move state message INIT +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +peer0.org1.example.com | [308 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [16d 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [309 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer1.org2.example.com | [1a7 12-15 03:49:12.63 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 | [195 12-15 03:49:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b6a9f7c5]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [30a 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bc50b7e3]Inside sendExecuteMessage. Message INIT +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +peer1.org2.example.com | [1a8 12-15 03:49:12.63 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled +peer0.org1.example.com | [30b 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [16e 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: qscc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) +peer0.org2.example.com | [196 12-15 03:49:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer1.org1.example.com | [16f 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +peer1.org2.example.com | [1a9 12-15 03:49:12.63 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes +peer0.org2.example.com | [197 12-15 03:49:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b6a9f7c5]sending state message INIT +peer0.org1.example.com | [30c 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bc50b7e3]sendExecuteMsg trigger event INIT +orderer.example.com | BPGrtJtHj1Ql02gq7I0ZQQKJwvtZhp0t3rCwF1cFILTHIBM4phJ/ZYJQa1lb12pO +peer1.org1.example.com | [170 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer0.org1.example.com | [30d 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bc50b7e3]Move state message INIT +peer1.org2.example.com | [1aa 12-15 03:49:12.63 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] +orderer.example.com | sxSxuEvRGTFcZXtunUc0SeWjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer0.org2.example.com | [198 12-15 03:49:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b6a9f7c5]Received message INIT from shim +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.1.0 +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICSqVyrJerF7YoXDKKeV +peer0.org1.example.com | [30e 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bc50b7e3]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [199 12-15 03:49:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b6a9f7c5]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | 2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCIB+psiek7FqP18l1 +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | [1ab 12-15 03:49:12.63 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] +peer0.org2.example.com | [19a 12-15 03:49:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [30f 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 3s2anbtfpiGTHbAnm2BihpD9sRPjAiAIvsdyfn+nb2bCQBK6sodbO+LxSkuZulkP +peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer1.org2.example.com | [1ac 12-15 03:49:12.63 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 | [310 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bc50b7e3]sending state message INIT +orderer.example.com | oMR3yCH/eA== +peer0.org2.example.com | [19b 12-15 03:49:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b6a9f7c5]Received INIT, initializing chaincode +peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org2.example.com | [1ad 12-15 03:49:12.63 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 | -----END CERTIFICATE----- +peer0.org1.example.com | [311 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bc50b7e3]Received message INIT from shim +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org2.example.com | [1ae 12-15 03:49:12.63 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.org2.example.com | [19c 12-15 03:49:10.98 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer0.org1.example.com | [312 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bc50b7e3]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | [0f0 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [1af 12-15 03:49:12.63 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 | 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 | [313 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [1b0 12-15 03:49:12.63 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 | [19d 12-15 03:49:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b6a9f7c5]Init get response status: 200 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [1b1 12-15 03:49:12.63 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 | [314 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [bc50b7e3]Received INIT, initializing chaincode +peer0.org2.example.com | [19e 12-15 03:49:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b6a9f7c5]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [171 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock +peer1.org2.example.com | [1b2 12-15 03:49:12.63 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 | [19f 12-15 03:49:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b6a9f7c5]Move state message COMPLETED +peer0.org1.example.com | [315 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bc50b7e3]Init get response status: 200 +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [1a0 12-15 03:49:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b6a9f7c5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [1b3 12-15 03:49:12.63 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 | [172 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock +peer0.org1.example.com | [316 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bc50b7e3]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [1a1 12-15 03:49:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b6a9f7c5]send state message COMPLETED +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +peer1.org2.example.com | [1b4 12-15 03:49:12.63 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' +peer0.org2.example.com | [1a2 12-15 03:49:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b6a9f7c5]Received message COMPLETED from shim +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [317 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bc50b7e3]Move state message COMPLETED +peer1.org2.example.com | [1b5 12-15 03:49:12.63 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 | [173 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.1.0 +peer0.org2.example.com | [1a3 12-15 03:49:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b6a9f7c5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [318 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bc50b7e3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [1b6 12-15 03:49:12.63 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.org1.example.com | [174 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) +peer0.org2.example.com | [1a4 12-15 03:49:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b6a9f7c5-1483-4675-8ece-06fa99258596]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [319 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bc50b7e3]send state message COMPLETED +peer1.org2.example.com | [1b7 12-15 03:49:12.63 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 | [1a5 12-15 03:49:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b6a9f7c5-1483-4675-8ece-06fa99258596, channelID: +peer1.org1.example.com | [175 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 +peer1.org2.example.com | [1b8 12-15 03:49:12.63 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 | [1a6 12-15 03:49:10.98 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 | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +peer0.org1.example.com | [31a 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bc50b7e3]Received message COMPLETED from shim +peer1.org1.example.com | [176 12-15 03:49:08.34 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 | [1b9 12-15 03:49:12.63 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 | [1a7 12-15 03:49:10.98 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 | VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +peer0.org1.example.com | [31b 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bc50b7e3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [177 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 +peer1.org2.example.com | [1ba 12-15 03:49:12.63 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 | [1a8 12-15 03:49:10.98 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled +peer1.org1.example.com | [178 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer1.org1.example.com | [179 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 +peer1.org1.example.com | [17a 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [17b 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | [17c 12-15 03:49:08.34 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 | [17d 12-15 03:49:08.34 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 | [1bb 12-15 03:49:12.63 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 | [31c 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bc50b7e3-4a11-4067-bd90-ad2e42f51bbf]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [31d 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:bc50b7e3-4a11-4067-bd90-ad2e42f51bbf, channelID:businesschannel +peer0.org1.example.com | [31e 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +peer1.org1.example.com | [17e 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.1.0 +peer1.org1.example.com | [17f 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.1.0" , sending back REGISTERED +peer1.org1.example.com | [180 12-15 03:49:08.34 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 | [181 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org1.example.com | [182 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [183 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org1.example.com | [184 12-15 03:49:08.34 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.1.0 launch seq completed +peer1.org1.example.com | [185 12-15 03:49:08.34 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 | [186 12-15 03:49:08.34 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 | [1bc 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:36120 +peer0.org2.example.com | [1a9 12-15 03:49:10.98 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes +peer0.org1.example.com | [31f 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed +orderer.example.com | YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +peer1.org1.example.com | [187 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ade649e]Move state message READY +peer1.org2.example.com | [1bd 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4219dc9c0 +peer0.org2.example.com | [1aa 12-15 03:49:10.98 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] +orderer.example.com | 8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +peer1.org1.example.com | [188 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ade649e]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org2.example.com | [1ab 12-15 03:49:10.98 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] +orderer.example.com | N5+z/fTTfchGfLaCtzM= +peer1.org2.example.com | [1be 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org1.example.com | [320 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [bc50b7e3-4a11-4067-bd90-ad2e42f51bbf] +peer1.org1.example.com | [189 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [8ade649e]Entered state ready +peer0.org2.example.com | [1ac 12-15 03:49:10.98 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 | -----END CERTIFICATE----- +peer1.org2.example.com | [1bf 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [18a 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:8ade649e-2931-4bb8-95ae-7e91fb16ce53, channelID: +peer0.org1.example.com | [321 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [1ad 12-15 03:49:10.99 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 | [0f1 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +peer0.org2.example.com | [1ae 12-15 03:49:10.99 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 | [1c0 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 73763341eb604cef734e4ac7c2ea77bc9d730c798fb96eb583c0637692a88acd} +peer1.org2.example.com | [1c1 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [1c2 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [1c3 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421841f90, header 0xc4219dca50 +peer1.org2.example.com | [1c4 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer1.org2.example.com | [1c5 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: fdd30bd1dc207c6839c976bbfbb05dc6f750ace918cc56f071bd302b06ef7d8c +peer1.org2.example.com | [1c6 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: fdd30bd1dc207c6839c976bbfbb05dc6f750ace918cc56f071bd302b06ef7d8c channel id: +peer1.org2.example.com | [1c7 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: fdd30bd1dc207c6839c976bbfbb05dc6f750ace918cc56f071bd302b06ef7d8c channel id: version: 1.1.0 +peer1.org1.example.com | [18b 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ade649e]sending state message READY +peer0.org1.example.com | [322 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [25b6d2a5-11e8-4c48-813d-6695004e1fd1] +orderer.example.com | VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +peer0.org2.example.com | [1af 12-15 03:49:10.99 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' +peer0.org2.example.com | [1b0 12-15 03:49:10.99 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 | [1c8 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=fdd30bd1dc207c6839c976bbfbb05dc6f750ace918cc56f071bd302b06ef7d8c,syscc=true,proposal=0xc421841f90,canname=cscc:1.1.0 +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +peer1.org1.example.com | [18c 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ade649e]Received message READY from shim +peer0.org2.example.com | [1b1 12-15 03:49:10.99 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 | [323 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=25b6d2a5-11e8-4c48-813d-6695004e1fd1,syscc=true,proposal=0x0,canname=qscc:1.1.0 +peer1.org2.example.com | [1c9 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 +orderer.example.com | YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +peer0.org2.example.com | [1b2 12-15 03:49:10.99 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 | [18d 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8ade649e]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [324 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer1.org2.example.com | [1ca 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +peer0.org2.example.com | [1b3 12-15 03:49:10.99 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 | [18e 12-15 03:49:08.34 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 | [325 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [1cb 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +orderer.example.com | N5+z/fTTfchGfLaCtzM= +peer0.org2.example.com | [1b4 12-15 03:49:10.99 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 | [18f 12-15 03:49:08.34 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 | [326 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer1.org2.example.com | [1cc 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fdd30bd1]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [1b5 12-15 03:49:10.99 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 | [1b6 12-15 03:49:10.99 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.org1.example.com | [190 12-15 03:49:08.34 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 | [1cd 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [1ce 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [1cf 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fdd30bd1]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [1d0 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fdd30bd1]Move state message TRANSACTION +peer1.org2.example.com | [1d1 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fdd30bd1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [1d2 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [0f2 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer0.org2.example.com | [1b7 12-15 03:49:10.99 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 | [191 12-15 03:49:08.34 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.1.0 +peer0.org1.example.com | [327 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [25b6d2a5]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [1d3 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fdd30bd1]sending state message TRANSACTION +orderer.example.com | [0f3 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [0f4 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [0f5 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +peer0.org1.example.com | [328 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [1d4 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fdd30bd1]Received message TRANSACTION from shim +peer0.org2.example.com | [1b8 12-15 03:49:10.99 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 | [192 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8ade649e]Inside sendExecuteMessage. Message INIT +orderer.example.com | [0f6 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +orderer.example.com | [0f7 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +orderer.example.com | [0f8 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +orderer.example.com | [0f9 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +orderer.example.com | [0fa 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +orderer.example.com | [0fb 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +peer1.org2.example.com | [1d5 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fdd30bd1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [1b9 12-15 03:49:10.99 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.org1.example.com | [193 12-15 03:49:08.34 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 | [0fc 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +peer0.org1.example.com | [329 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [25b6d2a5]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [1d6 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [fdd30bd1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [1ba 12-15 03:49:10.99 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 | [194 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8ade649e]sendExecuteMsg trigger event INIT +orderer.example.com | [0fd 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +peer0.org1.example.com | [32a 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25b6d2a5]Move state message INIT +peer1.org2.example.com | [1d7 12-15 03:49:15.35 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +peer0.org2.example.com | [1bb 12-15 03:49:10.99 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 | [195 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ade649e]Move state message INIT +orderer.example.com | [0fe 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +peer0.org1.example.com | [32b 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [25b6d2a5]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [1d8 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +peer0.org2.example.com | [1bc 12-15 03:49:15.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:58146 +orderer.example.com | [0ff 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +peer1.org1.example.com | [196 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ade649e]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [32c 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [1bd 12-15 03:49:15.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4202ca5a0 +peer1.org2.example.com | [1d9 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +orderer.example.com | [100 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +peer1.org1.example.com | [197 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [32d 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25b6d2a5]sending state message INIT +peer0.org2.example.com | [1be 12-15 03:49:15.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org2.example.com | [1da 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] +peer0.org1.example.com | [32e 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25b6d2a5]Received message INIT from shim +orderer.example.com | [101 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +peer1.org1.example.com | [198 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ade649e]sending state message INIT +peer1.org2.example.com | [1db 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] does not exist +peer1.org2.example.com | [1dc 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] exists +peer1.org2.example.com | [1dd 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +peer1.org2.example.com | [1de 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +peer1.org2.example.com | [1df 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +peer1.org2.example.com | [1e0 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +peer1.org2.example.com | [1e1 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +peer0.org2.example.com | [1bf 12-15 03:49:15.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [102 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy ChannelCreationPolicy for Channel/Application +peer0.org1.example.com | [32f 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [25b6d2a5]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [1c0 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 73763341eb604cef734e4ac7c2ea77bc9d730c798fb96eb583c0637692a88acd} +peer1.org1.example.com | [199 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ade649e]Received message INIT from shim +peer1.org1.example.com | [19a 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8ade649e]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [1e2 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +peer1.org2.example.com | [1e3 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc421aeb080)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +peer0.org2.example.com | [1c1 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [1e4 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +orderer.example.com | [103 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Application/Writers +peer1.org1.example.com | [19b 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [19c 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [8ade649e]Received INIT, initializing chaincode +peer1.org1.example.com | [19d 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org1.example.com | [19e 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ade649e]Init get response status: 200 +peer1.org1.example.com | [19f 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ade649e]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [1a0 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ade649e]Move state message COMPLETED +peer1.org1.example.com | [1a1 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8ade649e]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [1a2 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ade649e]send state message COMPLETED +peer1.org1.example.com | [1a3 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ade649e]Received message COMPLETED from shim +peer0.org2.example.com | [1c2 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [1e5 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: +peer1.org1.example.com | [1a4 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ade649e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [1a5 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ade649e-2931-4bb8-95ae-7e91fb16ce53]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [1a6 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8ade649e-2931-4bb8-95ae-7e91fb16ce53, channelID: +peer1.org1.example.com | [1a7 12-15 03:49:08.34 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 | [1a8 12-15 03:49:08.34 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 | [104 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [105 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins +orderer.example.com | [106 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +peer0.org2.example.com | [1c3 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4202ee410, header 0xc4202ca630 +peer0.org1.example.com | [330 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [1a9 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled +peer1.org2.example.com | [1e6 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() +peer0.org1.example.com | [331 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [25b6d2a5]Received INIT, initializing chaincode +peer0.org2.example.com | [1c4 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer1.org1.example.com | [1aa 12-15 03:49:08.34 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes +peer1.org1.example.com | [1ab 12-15 03:49:08.35 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.org1.example.com | [1ac 12-15 03:49:08.43 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] +peer1.org2.example.com | [1e7 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. +peer1.org2.example.com | [1e8 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [0] +peer1.org2.example.com | [1e9 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [332 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +orderer.example.com | [107 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Application/Readers +peer0.org2.example.com | [1c5 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 36bffe0e06d956fd010721c932d8c051f6a29dac280238a19b6a4bc7b1275712 +peer1.org2.example.com | [1ea 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [0] +peer1.org2.example.com | [1eb 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer1.org2.example.com | [1ec 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer1.org2.example.com | [1ed 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer1.org2.example.com | [1ee 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +peer1.org2.example.com | [1ef 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [1f0 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +peer1.org1.example.com | [1ad 12-15 03:49:08.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 | [1ae 12-15 03:49:08.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' +peer0.org2.example.com | [1c6 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 36bffe0e06d956fd010721c932d8c051f6a29dac280238a19b6a4bc7b1275712 channel id: +peer0.org1.example.com | [333 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25b6d2a5]Init get response status: 200 +peer1.org2.example.com | [1f1 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +orderer.example.com | [108 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +peer1.org1.example.com | [1af 12-15 03:49:08.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' +peer1.org1.example.com | [1b0 12-15 03:49:08.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' +peer1.org2.example.com | [1f2 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:1 channel_group: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +orderer.example.com | [109 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [1c7 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 36bffe0e06d956fd010721c932d8c051f6a29dac280238a19b6a4bc7b1275712 channel id: version: 1.1.0 +peer0.org2.example.com | [1c8 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=36bffe0e06d956fd010721c932d8c051f6a29dac280238a19b6a4bc7b1275712,syscc=true,proposal=0xc4202ee410,canname=cscc:1.1.0 +orderer.example.com | [10a 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org1.example.com | [1b1 12-15 03:49:08.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.org2.example.com | [1f3 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [334 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25b6d2a5]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [1c9 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 +peer1.org2.example.com | [1f4 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [10b 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org1.example.com | [1b2 12-15 03:49:08.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' +peer0.org2.example.com | [1ca 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [335 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25b6d2a5]Move state message COMPLETED +orderer.example.com | [10c 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [336 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [25b6d2a5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [1b3 12-15 03:49:08.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 | [1b4 12-15 03:49:08.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' +peer0.org2.example.com | [1cb 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +peer0.org1.example.com | [337 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25b6d2a5]send state message COMPLETED +orderer.example.com | [10d 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [1f5 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [1b5 12-15 03:49:08.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' +peer0.org2.example.com | [1cc 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [36bffe0e]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [338 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25b6d2a5]Received message COMPLETED from shim +orderer.example.com | [10e 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [1f6 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [1cd 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [1b6 12-15 03:49:08.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 | [339 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [25b6d2a5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [33a 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [25b6d2a5-11e8-4c48-813d-6695004e1fd1]HandleMessage- COMPLETED. Notify +orderer.example.com | [10f 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [1ce 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [1f7 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [33b 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:25b6d2a5-11e8-4c48-813d-6695004e1fd1, channelID:businesschannel +peer1.org2.example.com | [1f8 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [1cf 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [36bffe0e]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [33c 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [1b7 12-15 03:49:08.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' +orderer.example.com | [110 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [1f9 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org2.example.com | [1d0 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [36bffe0e]Move state message TRANSACTION +peer0.org1.example.com | [33d 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +orderer.example.com | [111 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +orderer.example.com | [112 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [1b8 12-15 03:49:08.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' +peer1.org2.example.com | [1fa 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org1.example.com | [1b9 12-15 03:49:08.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 | [1d1 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [36bffe0e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [113 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [33e 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [25b6d2a5-11e8-4c48-813d-6695004e1fd1] +peer0.org2.example.com | [1d2 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [33f 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled +peer1.org1.example.com | [1ba 12-15 03:49:08.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' +peer1.org2.example.com | [1fb 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [114 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org2.example.com | [1d3 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [36bffe0e]sending state message TRANSACTION +peer1.org1.example.com | [1bb 12-15 03:49:08.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.org2.example.com | [1fc 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [115 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [340 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry +peer1.org1.example.com | [1bc 12-15 03:49:08.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' +peer0.org2.example.com | [1d4 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [36bffe0e]Received message TRANSACTION from shim +peer1.org2.example.com | [1fd 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [341 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit +orderer.example.com | [116 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org1.example.com | [1bd 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:41232 +peer0.org2.example.com | [1d5 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [36bffe0e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [1fe 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [342 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry +orderer.example.com | [117 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [1ff 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [1be 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421aa5b60 +peer0.org1.example.com | [343 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 +orderer.example.com | [118 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [119 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [200 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [201 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [202 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [203 12-15 03:49:15.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org1.example.com | [1bf 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org1.example.com | [1c0 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [1c1 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +peer1.org1.example.com | [1c2 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [204 12-15 03:49:15.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [1d6 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [36bffe0e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [11a 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [11b 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | [11c 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [11d 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [11e 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [11f 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org1.example.com | [1c3 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [205 12-15 03:49:15.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [206 12-15 03:49:15.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [120 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [1c4 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421a334a0, header 0xc421aa5bf0 +peer0.org2.example.com | [1d7 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +peer1.org2.example.com | [207 12-15 03:49:15.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [208 12-15 03:49:15.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [209 12-15 03:49:15.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +peer1.org2.example.com | [20a 12-15 03:49:15.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [121 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [1c5 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer0.org1.example.com | [344 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully +peer0.org2.example.com | [1d8 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +peer0.org2.example.com | [1d9 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +orderer.example.com | [122 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [20b 12-15 03:49:15.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org1.example.com | [1c6 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 8f374918c0d2237373e3f4b085e6f4b7d85c9b3759aff114418b8deea76e7d2f +peer0.org1.example.com | [345 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit +peer0.org2.example.com | [1da 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] +peer0.org2.example.com | [1db 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] does not exist +peer1.org2.example.com | [20c 12-15 03:49:15.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [123 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [1c7 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 8f374918c0d2237373e3f4b085e6f4b7d85c9b3759aff114418b8deea76e7d2f channel id: +peer0.org2.example.com | [1dc 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] exists +peer0.org1.example.com | [346 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [874d2d0c]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [20d 12-15 03:49:15.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [124 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +peer0.org2.example.com | [1dd 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +peer1.org1.example.com | [1c8 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 8f374918c0d2237373e3f4b085e6f4b7d85c9b3759aff114418b8deea76e7d2f channel id: version: 1.1.0 +peer0.org1.example.com | [347 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [874d2d0c]Move state message COMPLETED +peer1.org2.example.com | [20e 12-15 03:49:15.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [1de 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +orderer.example.com | [125 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [1c9 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=8f374918c0d2237373e3f4b085e6f4b7d85c9b3759aff114418b8deea76e7d2f,syscc=true,proposal=0xc421a334a0,canname=cscc:1.1.0 +peer1.org2.example.com | [20f 12-15 03:49:15.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer0.org2.example.com | [1df 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +orderer.example.com | [126 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org1.example.com | [348 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [874d2d0c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [1ca 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 +peer1.org2.example.com | [210 12-15 03:49:15.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [1e0 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +orderer.example.com | [127 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org1.example.com | [349 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [874d2d0c]send state message COMPLETED +peer1.org1.example.com | [1cb 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [211 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [1e1 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +peer0.org1.example.com | [34a 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [874d2d0c]Received message COMPLETED from shim +orderer.example.com | [128 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org1.example.com | [1cc 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +peer0.org2.example.com | [1e2 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +peer1.org2.example.com | [212 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org1.example.com | [34b 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [874d2d0c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [129 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org1.example.com | [1cd 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8f374918]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [1ce 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [213 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org1.example.com | [1cf 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [1e3 12-15 03:49:15.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4202ae600)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +orderer.example.com | [12a 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org1.example.com | [1d0 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8f374918]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [1d1 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8f374918]Move state message TRANSACTION +peer0.org2.example.com | [1e4 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +peer0.org1.example.com | [34c 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [874d2d0c9dd653d155fd2f2ea7a7a8366daeccc8c1792d9d3fad791a213aac66]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [214 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [1d2 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8f374918]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [1e5 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: +orderer.example.com | [12b 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [34d 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:874d2d0c9dd653d155fd2f2ea7a7a8366daeccc8c1792d9d3fad791a213aac66, channelID: +peer1.org2.example.com | [215 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [1e6 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() +orderer.example.com | [12c 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [1d3 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [216 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org1.example.com | [1d4 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8f374918]sending state message TRANSACTION +peer0.org2.example.com | [1e7 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. +orderer.example.com | [12d 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [34e 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [1d5 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8f374918]Received message TRANSACTION from shim +peer1.org2.example.com | [217 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [1e8 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [0] +orderer.example.com | [12e 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [34f 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [1d6 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8f374918]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [218 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [1e9 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [350 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [12f 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org1.example.com | [1d7 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8f374918]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [219 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org2.example.com | [1ea 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [0] +peer0.org1.example.com | [351 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40850) +orderer.example.com | [130 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [21a 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org1.example.com | [1d8 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +peer0.org2.example.com | [1eb 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org1.example.com | [352 12-15 03:49:20.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40866 +orderer.example.com | [131 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org2.example.com | [21b 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [353 12-15 03:49:20.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421b85a70 +orderer.example.com | [132 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org1.example.com | [1d9 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +peer0.org2.example.com | [1ec 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer1.org2.example.com | [21c 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org1.example.com | [354 12-15 03:49:20.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [1da 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +peer0.org2.example.com | [1ed 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer0.org1.example.com | [355 12-15 03:49:20.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [21d 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org1.example.com | [1db 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] +orderer.example.com | [133 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org2.example.com | [1ee 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +orderer.example.com | [134 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org1.example.com | [1dc 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] does not exist +peer1.org1.example.com | [1dd 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] exists +peer1.org1.example.com | [1de 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +peer1.org2.example.com | [21e 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [135 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [1ef 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [1f0 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +peer1.org2.example.com | [21f 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [136 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | [137 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [138 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [139 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [13a 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | [13b 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Admins +orderer.example.com | [13c 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Writers +orderer.example.com | [13d 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Capabilities +orderer.example.com | [13e 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Readers +orderer.example.com | [13f 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +orderer.example.com | [140 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy ChannelCreationPolicy +orderer.example.com | [141 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] +orderer.example.com | [142 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [143 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [144 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +orderer.example.com | [145 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [146 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [147 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +orderer.example.com | [148 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +peer1.org1.example.com | [1df 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +peer1.org1.example.com | [1e0 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +peer1.org1.example.com | [1e1 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +peer1.org1.example.com | [1e2 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +peer1.org1.example.com | [1e3 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +peer1.org1.example.com | [1e4 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc421bc02c0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +peer0.org2.example.com | [1f1 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +orderer.example.com | [149 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +peer1.org2.example.com | [220 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [221 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [222 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org2.example.com | [223 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [224 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [1e5 12-15 03:49:14.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +peer0.org2.example.com | [1f2 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:1 channel_group: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +peer1.org2.example.com | [225 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [1e6 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: +orderer.example.com | [14a 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy == +peer0.org1.example.com | [356 12-15 03:49:20.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +peer0.org2.example.com | [1f3 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org2.example.com | [226 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [1e7 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() +peer1.org1.example.com | [1e8 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. +orderer.example.com | [14b 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [14c 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +orderer.example.com | [14d 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org2.example.com | [1f4 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [357 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [1e9 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [0] +peer1.org2.example.com | [227 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [14e 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [1ea 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [1f5 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [228 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [1eb 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [0] +peer0.org1.example.com | [358 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [1f6 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [229 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [1ec 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [359 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421acedc0, header 0xc421b85aa0 +peer0.org2.example.com | [1f7 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [22a 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [1ed 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer0.org1.example.com | [35a 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [1f8 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [22b 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +peer1.org2.example.com | [22c 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org1.example.com | [1ee 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer0.org2.example.com | [1f9 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [35b 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 696883b7674923d02c542bf38cff995e9050ddc520ff8ad4ff126ee279c5e6f7 +peer1.org2.example.com | [22d 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [1fa 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [35c 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 696883b7674923d02c542bf38cff995e9050ddc520ff8ad4ff126ee279c5e6f7 channel id: +peer1.org1.example.com | [1ef 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +peer1.org2.example.com | [22e 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [22f 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [1fb 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +peer0.org1.example.com | [35d 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled +peer1.org1.example.com | [1f0 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [230 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [1fc 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +orderer.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +orderer.example.com | OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +orderer.example.com | bqEi6/lY2kK0EtGRnA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [14f 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c3b8 gate 1513309754259765800 evaluation starts +orderer.example.com | [150 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c3b8 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [1f1 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +peer0.org2.example.com | [1fd 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [35e 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 696883b7674923d02c542bf38cff995e9050ddc520ff8ad4ff126ee279c5e6f7 channel id: version: 1.1.0 +peer1.org2.example.com | [231 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org1.example.com | [1f2 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer0.org2.example.com | [1fe 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [151 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c3b8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b78664b6f3271717459665054415039526b4136796f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455775768634e4d6a63784d6a457a4d444d7a4e5455770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424c493853704e726b4330415968693747496377353237505056364e75682b410a6b6f6b7670516355436746536d373374595a375141556c5446384e2f5642424e51436e464c326b72756b4f4c6431496f4237776e5a6e756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4376615250365a53446c0a64644a716e6e314d784c776b464f716d394d5877324c474f6b38584c72424e574d416f4743437147534d343942414d43413063414d455143494235334a6546780a4f665644446c692b4a6955636b463459376b4d64595550714778477373755948305570694169416f7159577a596a4f4c397071677874495430332f59717370630a62714569362f6c59326b4b30457447526e413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [232 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org1.example.com | [35f 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=696883b7674923d02c542bf38cff995e9050ddc520ff8ad4ff126ee279c5e6f7,syscc=true,proposal=0xc421acedc0,canname=lscc:1.1.0 +peer0.org2.example.com | [1ff 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [200 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [233 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org2.example.com | [234 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | [152 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +peer0.org2.example.com | [201 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [1f3 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:1 channel_group: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +peer1.org2.example.com | [235 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [360 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer0.org1.example.com | [361 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [362 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer0.org1.example.com | [363 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [696883b7]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [364 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [202 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [203 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org2.example.com | [204 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [205 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org1.example.com | [1f4 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [365 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [236 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [153 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c3b8 principal matched by identity 0 +orderer.example.com | [154 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 29 48 f2 2a 49 b8 f5 f0 cd 3f ad 85 65 44 b2 6b |)H.*I....?..eD.k| +orderer.example.com | 00000010 cb 3e 0a 8c c7 e1 7d 9a 8d 3a d9 33 bc 75 f0 cb |.>....}..:.3.u..| +orderer.example.com | [155 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 9a ce 8e 4f 7d 0d 27 e3 6c 56 d0 |0E.!....O}.'.lV.| +peer0.org2.example.com | [206 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [1f5 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [1f6 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [1f7 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [1f8 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [1f9 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [1fa 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org2.example.com | [207 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [366 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [696883b7]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [367 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [696883b7]Move state message TRANSACTION +peer0.org1.example.com | [368 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [696883b7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [369 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [36a 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [696883b7]sending state message TRANSACTION +peer1.org1.example.com | [1fb 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org2.example.com | [208 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [237 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | 00000010 6a e2 73 30 89 26 39 32 e6 6c c7 1f 22 25 41 bc |j.s0.&92.l.."%A.| +peer0.org1.example.com | [36b 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [696883b7]Received message TRANSACTION from shim +peer0.org1.example.com | [36c 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [696883b7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [36d 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [696883b7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [36e 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [696883b7]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [1fc 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | 00000020 aa 6f 30 8a e0 02 20 29 6a 95 68 cd 31 0f 5b 0a |.o0... )j.h.1.[.| +peer0.org2.example.com | [209 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +peer1.org2.example.com | [238 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [36f 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [696883b7]Move state message COMPLETED +peer1.org1.example.com | [1fd 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | 00000030 e4 3f ce 07 58 04 ac 35 f8 2c 1e a3 52 3f bc 46 |.?..X..5.,..R?.F| +peer1.org2.example.com | [239 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +peer0.org2.example.com | [20a 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [370 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [696883b7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [1fe 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | 00000040 c6 ca 9f e4 6c 91 f0 |....l..| +peer1.org2.example.com | [23a 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +peer0.org1.example.com | [371 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [696883b7]send state message COMPLETED +peer1.org1.example.com | [1ff 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [20b 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [156 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c3b8 principal evaluation succeeds for identity 0 +peer1.org2.example.com | [23b 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [0] Transaction index [0] TxId [] marked as valid by state validator +peer1.org1.example.com | [200 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [372 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [696883b7]Received message COMPLETED from shim +peer1.org2.example.com | [23c 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer0.org2.example.com | [20c 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [201 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [23d 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org1.example.com | [373 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [696883b7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [157 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c3b8 gate 1513309754259765800 evaluation succeeds +peer0.org2.example.com | [20d 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [202 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [23e 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org2.example.com | [20e 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [374 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [696883b7674923d02c542bf38cff995e9050ddc520ff8ad4ff126ee279c5e6f7]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [203 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [158 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +orderer.example.com | [159 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [20f 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org1.example.com | [204 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org2.example.com | [23f 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage +orderer.example.com | [15a 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/ChannelCreationPolicy +peer0.org1.example.com | [375 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:696883b7674923d02c542bf38cff995e9050ddc520ff8ad4ff126ee279c5e6f7, channelID: +peer0.org2.example.com | [210 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [240 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [0] +peer1.org1.example.com | [205 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [241 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xa1, 0x60, 0xe0, 0x48, 0x49, 0xa2, 0x7b, 0xd, 0x4, 0xe8, 0xa0, 0x11, 0xe6, 0xf7, 0x68, 0xce, 0x66, 0xf4, 0xbe, 0xa6, 0xb, 0xc5, 0x74, 0xd1, 0xf8, 0xc1, 0xc6, 0x60, 0xbf, 0x2c, 0xe0, 0x38} txOffsets= +orderer.example.com | [15b 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy +peer0.org2.example.com | [211 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [376 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | txId= locPointer=offset=38, bytesLength=12083 +peer1.org1.example.com | [206 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [212 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +orderer.example.com | [15c 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [377 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | ] +orderer.example.com | [15d 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [213 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [378 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org1.example.com | [207 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [242 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12083] for tx ID: [] to index +peer0.org1.example.com | [379 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40866) +peer0.org2.example.com | [214 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org2.example.com | [243 12-15 03:49:15.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12083] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org1.example.com | [37a 12-15 03:49:20.87 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 +orderer.example.com | [15e 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [244 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12127], isChainEmpty=[false], lastBlockNumber=[0] +peer0.org2.example.com | [215 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [37b 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +peer1.org1.example.com | [208 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [15f 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [245 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 0 +peer0.org2.example.com | [216 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [37c 12-15 03:49:20.88 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 | [246 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 0 +orderer.example.com | [160 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org2.example.com | [247 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [0] with 1 transaction(s) +peer1.org1.example.com | [209 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [161 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [248 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database +peer0.org2.example.com | [217 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [37d 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +peer1.org2.example.com | [249 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [218 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org1.example.com | [20a 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +peer1.org2.example.com | [24a 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | [162 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [24b 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer1.org1.example.com | [20b 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [219 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org1.example.com | [37e 12-15 03:49:20.88 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 | [24c 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database +orderer.example.com | [163 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [37f 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +peer1.org1.example.com | [20c 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [21a 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [380 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] +peer1.org2.example.com | [24d 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to history database +orderer.example.com | [164 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [20d 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [21b 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org1.example.com | [381 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] +peer1.org2.example.com | [24e 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions +orderer.example.com | [165 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [20e 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [21c 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [382 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org2.example.com | [24f 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +orderer.example.com | [166 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [21d 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [250 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +peer0.org1.example.com | [383 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +orderer.example.com | [167 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [20f 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [21e 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [384 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4223d5bc0 env 0xc421bdb6b0 txn 0 +peer1.org2.example.com | [251 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +orderer.example.com | [168 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [385 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421bdb6b0 +peer0.org2.example.com | [21f 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org1.example.com | [210 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [169 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [252 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [5ecae6e1-7a33-4c64-b189-eb46b779007d] +peer0.org2.example.com | [220 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org1.example.com | [211 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [386 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\273\214\315\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv\nzQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd\nibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv\nzjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg=\n-----END CERTIFICATE-----\n\022\030?\372r\023W\347Z\241l\242\243y,Z\325}$\376\357\347\335\214*\340" +orderer.example.com | [16a 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [253 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.retrievePersistedConf.GetState.getState.GetState.GetState -> DEBU GetState(). ns=, key=resourcesconfigtx.CHANNEL_CONFIG_KEY +peer0.org1.example.com | [387 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +orderer.example.com | [16b 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [212 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [221 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [254 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [5ecae6e1-7a33-4c64-b189-eb46b779007d] +orderer.example.com | [16c 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [213 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org2.example.com | [222 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [388 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [255 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +orderer.example.com | [16d 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [389 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 1e3da41845b92a1416cf3e4c523fc99cac9313f32163b269265dab0667463892} +peer1.org1.example.com | [214 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [223 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [38a 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [16e 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [256 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [224 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [16f 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [215 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org2.example.com | [257 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [38b 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [225 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [170 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [38c 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42249c000, header channel_header:"\010\001\032\006\010\273\214\315\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv\nzQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd\nibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv\nzjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg=\n-----END CERTIFICATE-----\n\022\030?\372r\023W\347Z\241l\242\243y,Z\325}$\376\357\347\335\214*\340" +peer0.org2.example.com | [226 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [216 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [258 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [171 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [227 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [38d 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [217 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [228 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [229 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [172 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [218 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [38e 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [259 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [22a 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [219 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [38f 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [173 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608BA8CCDD10522...C2A7A9403CE08A7D9A31FA90EA582763 +orderer.example.com | [174 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: 2A96636C3B02B56056579AF12BAE4DAE77AD3A8288DCA022FF309CA776F069C4 +peer1.org2.example.com | [25a 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [21a 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org2.example.com | [22b 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [25b 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org1.example.com | [390 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org2.example.com | [22c 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org1.example.com | [21b 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +orderer.example.com | [175 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [25c 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [176 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [391 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [22d 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [21c 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [177 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [392 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [22e 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [25d 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [178 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [21d 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org1.example.com | [393 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [394 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [25e 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [179 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AC9060A1708041A0608BA8CCDD10522...DC6C8FE16E4D2CD83A424CB28520F7FF +peer0.org2.example.com | [22f 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [21e 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [395 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [25f 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [17a 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: 3B3092B1C36802338BABDF2970B02EE52C7B8431FB1F22980D436A4E6DB35235 +peer0.org2.example.com | [230 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [21f 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [396 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [260 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [17b 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +peer0.org2.example.com | [231 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org1.example.com | [397 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org2.example.com | [261 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [220 12-15 03:49:14.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [17c 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [398 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [232 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org2.example.com | [262 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [221 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [17d 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +peer0.org1.example.com | [399 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer1.org1.example.com | [222 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [263 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [233 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org1.example.com | [223 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [17e 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [39a 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [264 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [17f 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +peer0.org2.example.com | [234 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org1.example.com | [39b 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [265 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | [180 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org2.example.com | [235 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org1.example.com | [224 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [39c 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [266 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [181 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [236 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [39d 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP +peer1.org2.example.com | [267 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | MIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw +peer1.org1.example.com | [225 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [39e 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins +peer1.org2.example.com | [268 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | [226 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [237 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [39f 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org2.example.com | [269 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [238 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE +peer1.org1.example.com | [227 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [239 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org1.example.com | [228 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [26a 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [3a0 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [23a 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +peer0.org2.example.com | [23b 12-15 03:49:15.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [0] Transaction index [0] TxId [] marked as valid by state validator +orderer.example.com | hkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv +peer1.org2.example.com | [26b 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer0.org1.example.com | [3a1 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [23c 12-15 03:49:15.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +orderer.example.com | zQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw +peer1.org1.example.com | [229 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [26c 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [3a2 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [23d 12-15 03:49:15.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd +peer1.org1.example.com | [22a 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [26d 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [23e 12-15 03:49:15.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +orderer.example.com | ibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv +peer1.org2.example.com | [26e 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [26f 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | zjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg= +peer1.org2.example.com | [270 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [271 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +peer0.org2.example.com | [23f 12-15 03:49:15.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage +peer0.org2.example.com | [240 12-15 03:49:15.19 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [0] +peer1.org1.example.com | [22b 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [241 12-15 03:49:15.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xa1, 0x60, 0xe0, 0x48, 0x49, 0xa2, 0x7b, 0xd, 0x4, 0xe8, 0xa0, 0x11, 0xe6, 0xf7, 0x68, 0xce, 0x66, 0xf4, 0xbe, 0xa6, 0xb, 0xc5, 0x74, 0xd1, 0xf8, 0xc1, 0xc6, 0x60, 0xbf, 0x2c, 0xe0, 0x38} txOffsets= +peer1.org2.example.com | [272 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [3a3 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [22c 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [182 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c4c0 gate 1513309754263396400 evaluation starts +orderer.example.com | [183 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c4c0 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | txId= locPointer=offset=38, bytesLength=12083 +peer0.org2.example.com | ] +peer0.org2.example.com | [242 12-15 03:49:15.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12083] for tx ID: [] to index +peer0.org2.example.com | [243 12-15 03:49:15.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12083] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org2.example.com | [244 12-15 03:49:15.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12127], isChainEmpty=[false], lastBlockNumber=[0] +peer0.org2.example.com | [245 12-15 03:49:15.19 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 0 +peer0.org2.example.com | [246 12-15 03:49:15.19 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 0 +peer0.org2.example.com | [247 12-15 03:49:15.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [0] with 1 transaction(s) +peer0.org2.example.com | [248 12-15 03:49:15.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database +peer0.org2.example.com | [249 12-15 03:49:15.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [24a 12-15 03:49:15.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [24b 12-15 03:49:15.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer0.org2.example.com | [24c 12-15 03:49:15.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [24d 12-15 03:49:15.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to history database +peer0.org2.example.com | [24e 12-15 03:49:15.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions +peer0.org2.example.com | [24f 12-15 03:49:15.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org2.example.com | [250 12-15 03:49:15.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +peer0.org2.example.com | [251 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +peer1.org2.example.com | [273 12-15 03:49:15.39 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [184 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c4c0 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749514b77793676416c34704643476846726d4a6d5a305554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e434141534b53436b2b3274316e61597867417059614f3030613970376b47316d6d4a31302f68744e434a49535076547555513163760a7a514f2b694e39366d4c754d6e693475746b416466616b597459576963416830365736636f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a44416967434438636f50455972677065567673447146314b6e6b5956675845646c78640a696256696561725354454e324e54414b42676771686b6a4f5051514441674e4841444245416941794f594647594256623938546a6d6e4451682f56544e5247760a7a6a6643644169736f594355773935725177496744463834756136676e7a50336b444f5530345551564b6b307553414469744a32354b7a31705668694b51673d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [3a4 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [252 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [520a6077-4f3d-4238-8467-f808b9f59171] +peer1.org1.example.com | [22d 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org2.example.com | [274 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [3a5 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [185 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +peer0.org2.example.com | [253 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.retrievePersistedConf.GetState.getState.GetState.GetState -> DEBU GetState(). ns=, key=resourcesconfigtx.CHANNEL_CONFIG_KEY +peer1.org1.example.com | [22e 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [275 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [3a6 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [186 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org2.example.com | [254 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [520a6077-4f3d-4238-8467-f808b9f59171] +peer1.org1.example.com | [22f 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [276 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [255 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org1.example.com | [230 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [231 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org1.example.com | [3a7 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [277 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [256 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [187 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c4c0 principal matched by identity 0 +peer1.org1.example.com | [232 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org2.example.com | [278 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [188 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 3b 30 92 b1 c3 68 02 33 8b ab df 29 70 b0 2e e5 |;0...h.3...)p...| +peer0.org2.example.com | [257 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [3a8 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [233 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org2.example.com | [279 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [258 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [3a9 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 00000010 2c 7b 84 31 fb 1f 22 98 0d 43 6a 4e 6d b3 52 35 |,{.1.."..CjNm.R5| +peer1.org1.example.com | [234 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org2.example.com | [27a 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org2.example.com | [259 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [3aa 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [189 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 03 65 f0 29 5f 1e 91 ff 2b c5 a4 32 |0D. .e.)_...+..2| +peer1.org1.example.com | [235 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org2.example.com | [25a 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [3ab 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | 00000010 a4 1d 46 86 6f 3b 71 bd f9 5c 35 fb f3 b6 8b 8f |..F.o;q..\5.....| +peer1.org2.example.com | [27b 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [236 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [3ac 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | 00000020 9c e5 af ee 02 20 38 78 bc 9f 30 b2 a3 00 0b da |..... 8x..0.....| +peer1.org2.example.com | [27c 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [25b 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org1.example.com | [237 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | 00000030 d6 3d b4 82 9c 51 d7 8f 28 84 e2 8b ad 47 47 37 |.=...Q..(....GG7| +peer1.org2.example.com | [27d 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [3ad 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [25c 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org1.example.com | [238 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | 00000040 34 95 87 fc 4c 51 |4...LQ| +peer1.org2.example.com | [27e 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [3ae 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [25d 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [25e 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [239 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org2.example.com | [27f 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org2.example.com | [280 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [281 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [18a 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c4c0 principal evaluation succeeds for identity 0 +peer1.org1.example.com | [23a 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +peer0.org2.example.com | [25f 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org2.example.com | [282 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [283 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org2.example.com | [284 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +orderer.example.com | [18b 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c4c0 gate 1513309754263396400 evaluation succeeds +peer1.org1.example.com | [23b 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +peer0.org1.example.com | [3af 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [285 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org2.example.com | [286 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [287 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [288 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [289 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [28a 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [28b 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org2.example.com | [28c 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [23c 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [0] Transaction index [0] TxId [] marked as valid by state validator +orderer.example.com | [18c 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [260 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [261 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [262 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [28d 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer1.org2.example.com | [28e 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [23d 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer0.org1.example.com | [3b0 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [263 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [18d 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [18e 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers +orderer.example.com | [18f 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +orderer.example.com | [190 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +orderer.example.com | [191 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +peer1.org2.example.com | [28f 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [290 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [291 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [292 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org2.example.com | [293 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org2.example.com | [294 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org2.example.com | [295 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org2.example.com | [296 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org1.example.com | [23e 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer1.org1.example.com | [23f 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer1.org1.example.com | [240 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage +peer1.org1.example.com | [241 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [0] +peer1.org1.example.com | [242 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xa1, 0x60, 0xe0, 0x48, 0x49, 0xa2, 0x7b, 0xd, 0x4, 0xe8, 0xa0, 0x11, 0xe6, 0xf7, 0x68, 0xce, 0x66, 0xf4, 0xbe, 0xa6, 0xb, 0xc5, 0x74, 0xd1, 0xf8, 0xc1, 0xc6, 0x60, 0xbf, 0x2c, 0xe0, 0x38} txOffsets= +peer1.org1.example.com | txId= locPointer=offset=38, bytesLength=12083 +peer1.org1.example.com | ] +peer1.org1.example.com | [243 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12083] for tx ID: [] to index +peer0.org2.example.com | [264 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [265 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org2.example.com | [266 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [3b1 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [244 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12083] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org1.example.com | [245 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12127], isChainEmpty=[false], lastBlockNumber=[0] +peer1.org1.example.com | [246 12-15 03:49:15.00 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 0 +orderer.example.com | [192 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [3b2 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [297 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [193 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [3b3 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [3b4 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [3b5 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [3b6 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [3b7 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [3b8 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [3b9 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org1.example.com | [3ba 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org2.example.com | [267 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org1.example.com | [247 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 0 +peer1.org2.example.com | [298 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [194 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [3bb 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [268 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [248 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [0] with 1 transaction(s) +peer1.org2.example.com | [299 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [195 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [3bc 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [269 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [26a 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [26b 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +peer0.org2.example.com | [26c 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [26d 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org1.example.com | [249 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database +peer1.org2.example.com | [29a 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org2.example.com | [29b 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer1.org2.example.com | [29c 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer1.org2.example.com | [29d 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org2.example.com | [29e 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [196 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [26e 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [24a 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer1.org1.example.com | [24b 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [24c 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer1.org1.example.com | [24d 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [24e 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to history database +peer1.org1.example.com | [24f 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions +peer1.org1.example.com | [250 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org1.example.com | [251 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +peer1.org1.example.com | [252 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +peer1.org2.example.com | [29f 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer1.org2.example.com | [2a0 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +peer1.org2.example.com | [2a1 12-15 03:49:15.40 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org2.example.com | [2a2 12-15 03:49:15.41 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org2.example.com | [2a3 12-15 03:49:15.41 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer1.org2.example.com | [2a4 12-15 03:49:15.41 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org2.example.com | [2a5 12-15 03:49:15.41 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +orderer.example.com | [197 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [26f 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [253 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [cf44a84b-d62c-45b9-b486-ddaede774017] +peer1.org1.example.com | [254 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.retrievePersistedConf.GetState.getState.GetState.GetState -> DEBU GetState(). ns=, key=resourcesconfigtx.CHANNEL_CONFIG_KEY +peer1.org1.example.com | [255 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [cf44a84b-d62c-45b9-b486-ddaede774017] +peer1.org1.example.com | [256 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org1.example.com | [257 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [258 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [259 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [2a6 12-15 03:49:15.41 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] +peer0.org2.example.com | [270 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [198 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | [199 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [19a 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [19b 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [25a 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [2a7 12-15 03:49:15.41 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/transientStore/] does not exist +peer0.org1.example.com | [3bd 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [25b 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [2a8 12-15 03:49:15.41 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/transientStore/] exists +peer0.org1.example.com | [3be 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [271 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [19c 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [3bf 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [272 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [273 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [274 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org2.example.com | [275 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org1.example.com | [25c 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org2.example.com | [2a9 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +peer1.org2.example.com | [2aa 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func3 -> DEBU Deploying system CC, for chain +peer1.org2.example.com | [2ab 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [2ac 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [c1c9cabb-ca59-4c48-b886-c149e6e65d9b] +orderer.example.com | [19d 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [19e 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [19f 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [2ad 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.1.0,txid=c1c9cabb-ca59-4c48-b886-c149e6e65d9b,syscc=true,proposal=0x0,canname=cscc:1.1.0 +peer1.org1.example.com | [25d 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org1.example.com | [25e 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [276 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org2.example.com | [2ae 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 +peer0.org1.example.com | [3c0 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [25f 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [1a0 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [277 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [2af 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [3c1 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [260 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [1a1 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [278 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [2b0 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +peer1.org1.example.com | [261 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [3c2 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [1a2 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org2.example.com | [279 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [2b1 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c1c9cabb]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [3c3 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | [1a3 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org1.example.com | [262 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [3c4 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [1a4 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +peer0.org2.example.com | [27a 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [2b2 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [2b3 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c1c9cabb]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [2b4 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c1c9cabb]Move state message INIT +peer1.org2.example.com | [2b5 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c1c9cabb]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [3c5 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org1.example.com | [263 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [1a5 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [2b6 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [3c6 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [27b 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org2.example.com | [2b7 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c1c9cabb]sending state message INIT +peer0.org1.example.com | [3c7 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [264 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | MIICLzCCAdWgAwIBAgIQGXf5zEgjlejkE1rJW2znwDAKBggqhkjOPQQDAjBpMQsw +peer1.org2.example.com | [2b8 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c1c9cabb]Received message INIT from shim +peer0.org1.example.com | [3c8 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [27c 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [265 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [2b9 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c1c9cabb]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [3c9 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer0.org2.example.com | [27d 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer1.org2.example.com | [2ba 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [266 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org2.example.com | [2bb 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c1c9cabb]Received INIT, initializing chaincode +peer1.org1.example.com | [267 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [27e 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [3ca 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [2bc 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowaTELMAkGA1UE +peer0.org1.example.com | [3cb 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [2bd 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c1c9cabb]Init get response status: 200 +peer1.org1.example.com | [268 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [2be 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c1c9cabb]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [27f 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [3cc 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [2bf 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c1c9cabb]Move state message COMPLETED +peer1.org1.example.com | [269 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [3cd 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org2.example.com | [2c0 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c1c9cabb]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [280 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org1.example.com | [26a 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [3ce 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [2c1 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c1c9cabb]send state message COMPLETED +orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +peer0.org2.example.com | [281 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [2c2 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c1c9cabb]Received message COMPLETED from shim +orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFSKPRsXnXvaTTqRKjkTRYYoPjGg +peer0.org1.example.com | [3cf 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org1.example.com | [26b 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [282 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [2c3 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c1c9cabb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | TgXRAoMQwI+9AaLXTSL+AsApwlxedr+PJ+UgfBNcxey226YSZRJqLeiH/TajXzBd +peer0.org1.example.com | [3d0 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] +peer1.org1.example.com | [26c 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer0.org2.example.com | [283 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [2c4 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c1c9cabb-ca59-4c48-b886-c149e6e65d9b]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [3d1 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +peer1.org1.example.com | [26d 12-15 03:49:15.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [2c5 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c1c9cabb-ca59-4c48-b886-c149e6e65d9b, channelID:businesschannel +peer1.org2.example.com | [2c6 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [284 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | Af8wKQYDVR0OBCIEIPxyg8RiuCl5W+wOoXUqeRhWBcR2XF2JtWJ5qtJMQ3Y1MAoG +peer1.org2.example.com | [2c7 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org1.example.com | [26e 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [3d2 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] +orderer.example.com | CCqGSM49BAMCA0gAMEUCIQCoRrlZYPh0Qnsp3Z9KitmTDkRqi6JyR4RLiOyfv8Tf +peer1.org2.example.com | [2c8 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [c1c9cabb-ca59-4c48-b886-c149e6e65d9b] +peer1.org1.example.com | [26f 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [285 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [2c9 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [3d3 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org1.example.com | [270 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | QgIgdHbFqXGTZ0HFQmknUFd5DD4TTltv8Ijmfm8J1skS4jc= +peer0.org2.example.com | [286 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [2ca 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [7ae22f90-1b05-45d7-92b2-01ccb03e9a80] +peer0.org1.example.com | [3d4 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org2.example.com | [287 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [271 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [2cb 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=7ae22f90-1b05-45d7-92b2-01ccb03e9a80,syscc=true,proposal=0x0,canname=lscc:1.1.0 +peer0.org2.example.com | [288 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [3d5 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +orderer.example.com | [1a6 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [289 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [2cc 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer1.org1.example.com | [272 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +peer1.org2.example.com | [2cd 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [3d6 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org2.example.com | [2ce 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer1.org1.example.com | [273 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [28a 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [2cf 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7ae22f90]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [3d7 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org1.example.com | [274 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org2.example.com | [2d0 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [28b 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [3d8 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [275 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +peer1.org2.example.com | [2d1 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7ae22f90]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [28c 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [3d9 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [2d2 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7ae22f90]Move state message INIT +peer0.org2.example.com | [28d 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [276 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org2.example.com | [2d3 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7ae22f90]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [28e 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org2.example.com | [2d4 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [277 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [3da 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org2.example.com | [28f 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [2d5 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7ae22f90]sending state message INIT +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org1.example.com | [278 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [2d6 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ae22f90]Received message INIT from shim +peer0.org2.example.com | [290 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [3db 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +orderer.example.com | zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +peer1.org2.example.com | [2d7 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7ae22f90]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [291 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [2d8 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [3dc 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org1.example.com | [279 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [2d9 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [7ae22f90]Received INIT, initializing chaincode +peer0.org2.example.com | [292 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +peer1.org2.example.com | [2da 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ae22f90]Init get response status: 200 +peer0.org1.example.com | [3dd 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org1.example.com | [27a 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [2db 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ae22f90]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [3de 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +orderer.example.com | Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +peer1.org1.example.com | [27b 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org2.example.com | [293 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org2.example.com | [2dc 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ae22f90]Move state message COMPLETED +peer0.org1.example.com | [3df 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [27c 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org2.example.com | [294 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +peer1.org2.example.com | [2dd 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7ae22f90]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [27d 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [295 12-15 03:49:15.20 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer0.org1.example.com | [3e0 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [2de 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ae22f90]send state message COMPLETED +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [2df 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7ae22f90]Received message COMPLETED from shim +peer0.org1.example.com | [3e1 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org1.example.com | [27e 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [2e0 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7ae22f90]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [296 12-15 03:49:15.21 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | [1a7 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [3e2 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [2e1 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7ae22f90-1b05-45d7-92b2-01ccb03e9a80]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [27f 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org2.example.com | [297 12-15 03:49:15.21 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +peer1.org2.example.com | [2e2 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7ae22f90-1b05-45d7-92b2-01ccb03e9a80, channelID:businesschannel +peer1.org1.example.com | [280 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [3e3 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org2.example.com | [298 12-15 03:49:15.21 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [2e3 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [299 12-15 03:49:15.21 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [3e4 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org1.example.com | [281 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [2e4 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer1.org1.example.com | [282 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [2e5 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [7ae22f90-1b05-45d7-92b2-01ccb03e9a80] +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +peer0.org1.example.com | [3e5 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [3e6 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org2.example.com | [29a 12-15 03:49:15.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org2.example.com | [2e6 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [29b 12-15 03:49:15.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer0.org1.example.com | [3e7 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [283 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [2e7 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [689986b4-a99a-4c27-b5bb-16eb32f57215] +peer1.org2.example.com | [2e8 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=689986b4-a99a-4c27-b5bb-16eb32f57215,syscc=true,proposal=0x0,canname=escc:1.1.0 +peer1.org2.example.com | [2e9 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer1.org2.example.com | [2ea 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [2eb 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer1.org2.example.com | [2ec 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [689986b4]Inside sendExecuteMessage. Message INIT +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org2.example.com | [29c 12-15 03:49:15.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org1.example.com | [284 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [2ed 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [3e8 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +peer1.org2.example.com | [2ee 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [689986b4]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [2ef 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [689986b4]Move state message INIT +peer1.org2.example.com | [2f0 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [689986b4]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [2f1 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [2f2 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [689986b4]sending state message INIT +peer1.org2.example.com | [2f3 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [689986b4]Received message INIT from shim +peer0.org2.example.com | [29d 12-15 03:49:15.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer0.org1.example.com | [3e9 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [285 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org2.example.com | [2f4 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [689986b4]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [29e 12-15 03:49:15.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer0.org1.example.com | [3ea 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org1.example.com | [286 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +peer1.org2.example.com | [2f5 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [29f 12-15 03:49:15.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +peer1.org1.example.com | [287 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [2f6 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [689986b4]Received INIT, initializing chaincode +peer0.org1.example.com | [3eb 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [2a0 12-15 03:49:15.21 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +orderer.example.com | sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +peer1.org1.example.com | [288 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [2f7 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer0.org2.example.com | [2a1 12-15 03:49:15.21 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org1.example.com | [289 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [28a 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [2a2 12-15 03:49:15.21 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org2.example.com | [2f8 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [689986b4]Init get response status: 200 +orderer.example.com | [1a8 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org1.example.com | [3ec 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [2a3 12-15 03:49:15.21 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer1.org1.example.com | [28b 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [2f9 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [689986b4]Init succeeded. Sending COMPLETED +orderer.example.com | [1a9 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org1.example.com | [3ed 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [2a4 12-15 03:49:15.21 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org1.example.com | [28c 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [1aa 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [3ee 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [2fa 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [689986b4]Move state message COMPLETED +peer0.org1.example.com | [3ef 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org2.example.com | [2fb 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [689986b4]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [1ab 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [2a5 12-15 03:49:15.21 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +orderer.example.com | [1ac 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [3f0 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [28d 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [2a6 12-15 03:49:15.21 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] +peer1.org2.example.com | [2fc 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [689986b4]send state message COMPLETED +peer0.org1.example.com | [3f1 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [1ad 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [2a7 12-15 03:49:15.21 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/transientStore/] does not exist +peer1.org1.example.com | [28e 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [1ae 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [2fd 12-15 03:49:15.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [689986b4]Received message COMPLETED from shim +peer0.org1.example.com | [3f2 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [2a8 12-15 03:49:15.22 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/transientStore/] exists +peer0.org1.example.com | [3f3 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org2.example.com | [2a9 12-15 03:49:15.22 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +peer0.org1.example.com | [3f4 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org2.example.com | [2fe 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [689986b4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [1af 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +peer0.org2.example.com | [2aa 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func3 -> DEBU Deploying system CC, for chain +peer1.org1.example.com | [28f 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org2.example.com | [2ab 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [3f5 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | [1b0 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [2ff 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [689986b4-a99a-4c27-b5bb-16eb32f57215]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [2ac 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [244480e2-5588-48cb-84cd-20218c167b22] +peer1.org1.example.com | [290 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [3f6 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | [1b1 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org2.example.com | [300 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:689986b4-a99a-4c27-b5bb-16eb32f57215, channelID:businesschannel +peer0.org2.example.com | [2ad 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.1.0,txid=244480e2-5588-48cb-84cd-20218c167b22,syscc=true,proposal=0x0,canname=cscc:1.1.0 +peer1.org1.example.com | [291 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [3f7 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org2.example.com | [2ae 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 +peer1.org1.example.com | [292 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org1.example.com | [3f8 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org2.example.com | [301 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | [1b2 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org2.example.com | [2af 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [3f9 12-15 03:49:20.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [302 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +peer1.org1.example.com | [293 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org2.example.com | [2b0 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +orderer.example.com | [1b3 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +peer0.org1.example.com | [3fa 12-15 03:49:20.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [2b1 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [244480e2]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [294 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org1.example.com | [295 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org2.example.com | [303 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [689986b4-a99a-4c27-b5bb-16eb32f57215] +peer0.org2.example.com | [2b2 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [1b4 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [3fb 12-15 03:49:20.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org2.example.com | [2b3 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [244480e2]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [296 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org2.example.com | [304 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [2b4 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [244480e2]Move state message INIT +orderer.example.com | MIICQzCCAemgAwIBAgIQShjAwe+6sxoSMZ8UrYKOcTAKBggqhkjOPQQDAjBzMQsw +peer1.org1.example.com | [297 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org1.example.com | [3fc 12-15 03:49:20.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer0.org2.example.com | [2b5 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [244480e2]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [305 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [783e38b6-e8d4-469e-9b8b-63a2547f2f41] +peer0.org1.example.com | [3fd 12-15 03:49:20.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer0.org2.example.com | [2b6 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [298 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [2b7 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [244480e2]sending state message INIT +peer0.org1.example.com | [3fe 12-15 03:49:20.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [306 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=783e38b6-e8d4-469e-9b8b-63a2547f2f41,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer1.org1.example.com | [299 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org2.example.com | [2b8 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [244480e2]Received message INIT from shim +peer1.org2.example.com | [307 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer0.org1.example.com | [3ff 12-15 03:49:20.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer0.org2.example.com | [2b9 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [244480e2]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | [400 12-15 03:49:20.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer1.org2.example.com | [308 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [2ba 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa +peer1.org1.example.com | [29a 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [401 12-15 03:49:20.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +peer0.org2.example.com | [2bb 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [244480e2]Received INIT, initializing chaincode +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org2.example.com | [309 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer1.org1.example.com | [29b 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org2.example.com | [2bc 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org1.example.com | [402 12-15 03:49:20.93 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org2.example.com | [2bd 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [244480e2]Init get response status: 200 +peer1.org1.example.com | [29c 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer0.org1.example.com | [403 12-15 03:49:20.93 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org2.example.com | [30a 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [783e38b6]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [2be 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [244480e2]Init succeeded. Sending COMPLETED +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer0.org1.example.com | [404 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer1.org1.example.com | [29d 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer0.org2.example.com | [2bf 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [244480e2]Move state message COMPLETED +peer1.org2.example.com | [30b 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [405 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer0.org2.example.com | [2c0 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [244480e2]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [30c 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [783e38b6]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [29e 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | GwyyfDLH07dFVkEvxJDGOKGevUcaYHphZvhzV78MBXVwIEGIENk7Zs8x+dx6iwIK +peer0.org1.example.com | [406 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org2.example.com | [2c1 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [244480e2]send state message COMPLETED +peer0.org1.example.com | [407 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer1.org1.example.com | [29f 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer0.org1.example.com | [408 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4223d5bc0 env 0xc421bdb6b0 txn 0 +peer1.org2.example.com | [30d 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [783e38b6]Move state message INIT +peer0.org2.example.com | [2c2 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [244480e2]Received message COMPLETED from shim +peer0.org1.example.com | [409 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer1.org1.example.com | [2a0 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | LOGmXxq/Wqd4qLs6kFyZvqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer1.org1.example.com | [2a1 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +peer0.org1.example.com | [40a 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org2.example.com | [30e 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [783e38b6]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [30f 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [2a2 12-15 03:49:15.02 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org2.example.com | [2c3 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [244480e2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [40b 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org2.example.com | [310 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [783e38b6]sending state message INIT +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgsK9pE/plIOV10mqefUzE +peer0.org2.example.com | [2c4 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [244480e2-5588-48cb-84cd-20218c167b22]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [2a3 12-15 03:49:15.03 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer0.org1.example.com | [40c 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] +peer0.org2.example.com | [2c5 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:244480e2-5588-48cb-84cd-20218c167b22, channelID:businesschannel +peer1.org2.example.com | [311 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [783e38b6]Received message INIT from shim +orderer.example.com | vCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAL7xXrYD1fkzcpxi +peer0.org2.example.com | [2c6 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [40d 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [2a4 12-15 03:49:15.03 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +orderer.example.com | yyZhFfEvMDWCoUicQw2b+c3GQ6OuAiA0KtNuH4yS4+c13W9Lsd28XNQK88FkwB2J +peer0.org2.example.com | [2c7 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org2.example.com | [312 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [783e38b6]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | QR9yhJE7rA== +peer1.org1.example.com | [2a5 12-15 03:49:15.03 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org1.example.com | [40e 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] +peer0.org2.example.com | [2c8 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [244480e2-5588-48cb-84cd-20218c167b22] +peer1.org2.example.com | [313 12-15 03:49:15.43 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 | [2c9 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [2a6 12-15 03:49:15.03 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org2.example.com | [314 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [783e38b6]Received INIT, initializing chaincode +peer0.org1.example.com | [40f 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +orderer.example.com | [1b5 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [2ca 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [47e8ff1d-5477-4ac4-8d4e-e7821049bdc4] +peer1.org2.example.com | [315 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [783e38b6]Init get response status: 200 +peer0.org2.example.com | [2cb 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=47e8ff1d-5477-4ac4-8d4e-e7821049bdc4,syscc=true,proposal=0x0,canname=lscc:1.1.0 +peer1.org1.example.com | [2a7 12-15 03:49:15.03 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [410 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer1.org1.example.com | [2a8 12-15 03:49:15.03 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/transientStore/] does not exist +peer1.org2.example.com | [316 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [783e38b6]Init succeeded. Sending COMPLETED +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [2cc 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer0.org1.example.com | [411 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer1.org1.example.com | [2a9 12-15 03:49:15.03 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/transientStore/] exists +peer0.org2.example.com | [2cd 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [317 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [783e38b6]Move state message COMPLETED +peer1.org1.example.com | [2aa 12-15 03:49:15.04 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +peer0.org1.example.com | [412 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +peer0.org2.example.com | [2ce 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer1.org2.example.com | [318 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [783e38b6]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [2ab 12-15 03:49:15.04 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func3 -> DEBU Deploying system CC, for chain +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +peer0.org2.example.com | [2cf 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [47e8ff1d]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [413 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [2ac 12-15 03:49:15.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [2d0 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [2ad 12-15 03:49:15.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [406fe1af-a294-4043-b504-8704a145583d] +peer0.org1.example.com | [414 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +peer1.org2.example.com | [319 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [783e38b6]send state message COMPLETED +peer0.org2.example.com | [2d1 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [47e8ff1d]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [2ae 12-15 03:49:15.04 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.1.0,txid=406fe1af-a294-4043-b504-8704a145583d,syscc=true,proposal=0x0,canname=cscc:1.1.0 +peer1.org2.example.com | [31a 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [783e38b6]Received message COMPLETED from shim +peer0.org2.example.com | [2d2 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [47e8ff1d]Move state message INIT +peer1.org1.example.com | [2af 12-15 03:49:15.04 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [415 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer0.org2.example.com | [2d3 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [47e8ff1d]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [2b0 12-15 03:49:15.04 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [31b 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [783e38b6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +peer0.org2.example.com | [2d4 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [31c 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [783e38b6-e8d4-469e-9b8b-63a2547f2f41]HandleMessage- COMPLETED. Notify +orderer.example.com | kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +peer1.org1.example.com | [2b1 12-15 03:49:15.04 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +peer0.org1.example.com | [416 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:2 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +peer0.org2.example.com | [2d5 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [47e8ff1d]sending state message INIT +peer1.org1.example.com | [2b2 12-15 03:49:15.04 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [406fe1af]Inside sendExecuteMessage. Message INIT +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +peer1.org2.example.com | [31d 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:783e38b6-e8d4-469e-9b8b-63a2547f2f41, channelID:businesschannel +peer0.org1.example.com | [417 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org2.example.com | [2d6 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [47e8ff1d]Received message INIT from shim +peer1.org1.example.com | [2b3 12-15 03:49:15.04 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [418 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [31e 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [2d7 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [47e8ff1d]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [2b4 12-15 03:49:15.04 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [406fe1af]sendExecuteMsg trigger event INIT +orderer.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +peer0.org1.example.com | [419 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [2b5 12-15 03:49:15.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [406fe1af]Move state message INIT +peer0.org2.example.com | [2d8 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [31f 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer0.org1.example.com | [41a 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [2b6 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [406fe1af]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [2d9 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [47e8ff1d]Received INIT, initializing chaincode +peer0.org1.example.com | [41b 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [2b7 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [2da 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [47e8ff1d]Init get response status: 200 +peer0.org1.example.com | [41c 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [320 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [783e38b6-e8d4-469e-9b8b-63a2547f2f41] +peer0.org2.example.com | [2db 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [47e8ff1d]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [41d 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org1.example.com | [2b8 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [406fe1af]sending state message INIT +orderer.example.com | OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +peer0.org2.example.com | [2dc 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [47e8ff1d]Move state message COMPLETED +peer0.org1.example.com | [41e 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org2.example.com | [2dd 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [47e8ff1d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [321 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | bqEi6/lY2kK0EtGRnA== +peer1.org1.example.com | [2b9 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [406fe1af]Received message INIT from shim +peer0.org1.example.com | [41f 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [2de 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [47e8ff1d]send state message COMPLETED +peer1.org1.example.com | [2ba 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [406fe1af]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [420 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [322 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [875098a0-b135-43ce-a7ac-6fb11e7cf35a] +peer1.org1.example.com | [2bb 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [421 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | [2df 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [47e8ff1d]Received message COMPLETED from shim +peer1.org2.example.com | [323 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=875098a0-b135-43ce-a7ac-6fb11e7cf35a,syscc=true,proposal=0x0,canname=qscc:1.1.0 +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [422 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [2e0 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [47e8ff1d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [2bc 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [406fe1af]Received INIT, initializing chaincode +peer1.org2.example.com | [324 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [423 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [1b6 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [2e1 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [47e8ff1d-5477-4ac4-8d4e-e7821049bdc4]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [2bd 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org1.example.com | [424 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [2be 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [406fe1af]Init get response status: 200 +peer0.org2.example.com | [2e2 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:47e8ff1d-5477-4ac4-8d4e-e7821049bdc4, channelID:businesschannel +peer1.org2.example.com | [325 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [425 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [2bf 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [406fe1af]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [2e3 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [426 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [2c0 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [406fe1af]Move state message COMPLETED +peer1.org2.example.com | [326 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org2.example.com | [2e4 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer1.org1.example.com | [2c1 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [406fe1af]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [427 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org2.example.com | [2e5 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [47e8ff1d-5477-4ac4-8d4e-e7821049bdc4] +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [327 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [875098a0]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [2c2 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [406fe1af]send state message COMPLETED +peer0.org1.example.com | [428 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [328 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [2e6 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [2c3 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [406fe1af]Received message COMPLETED from shim +peer0.org1.example.com | [429 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +peer0.org2.example.com | [2e7 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [4563e64a-ad1d-450e-be11-ad7ae52c89ac] +peer1.org2.example.com | [329 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [875098a0]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [2c4 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [406fe1af]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [42a 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [32a 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [875098a0]Move state message INIT +peer0.org2.example.com | [2e8 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=4563e64a-ad1d-450e-be11-ad7ae52c89ac,syscc=true,proposal=0x0,canname=escc:1.1.0 +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [42b 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [32b 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [875098a0]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [42c 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [2c5 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [406fe1af-a294-4043-b504-8704a145583d]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [2e9 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +peer0.org1.example.com | [42d 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org1.example.com | [2c6 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:406fe1af-a294-4043-b504-8704a145583d, channelID:businesschannel +peer1.org2.example.com | [32c 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [2ea 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +peer1.org1.example.com | [2c7 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [42e 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org1.example.com | [2c8 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org2.example.com | [32d 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [875098a0]sending state message INIT +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +peer0.org2.example.com | [2eb 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer1.org1.example.com | [2c9 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [406fe1af-a294-4043-b504-8704a145583d] +peer0.org1.example.com | [42f 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +peer1.org2.example.com | [32e 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [875098a0]Received message INIT from shim +peer1.org1.example.com | [2ca 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [2ec 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4563e64a]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [430 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [2cb 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [ebb66039-d0bd-400e-9238-caa2fd52eed3] +peer1.org2.example.com | [32f 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [875098a0]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +peer1.org1.example.com | [2cc 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=ebb66039-d0bd-400e-9238-caa2fd52eed3,syscc=true,proposal=0x0,canname=lscc:1.1.0 +peer0.org1.example.com | [431 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [330 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [2ed 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | bqEi6/lY2kK0EtGRnA== +peer1.org1.example.com | [2cd 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer0.org2.example.com | [2ee 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4563e64a]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [432 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [2ce 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [2ef 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4563e64a]Move state message INIT +peer1.org2.example.com | [331 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [875098a0]Received INIT, initializing chaincode +peer0.org1.example.com | [433 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [2cf 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer0.org2.example.com | [2f0 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4563e64a]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [434 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [1b7 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [1b8 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [1b9 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [2f1 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [435 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [332 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org1.example.com | [2d0 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ebb66039]Inside sendExecuteMessage. Message INIT +orderer.example.com | [1ba 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [2f2 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4563e64a]sending state message INIT +peer1.org1.example.com | [2d1 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [1bb 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [333 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [875098a0]Init get response status: 200 +orderer.example.com | [1bc 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org1.example.com | [2d2 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ebb66039]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [436 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org2.example.com | [334 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [875098a0]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [2f3 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4563e64a]Received message INIT from shim +orderer.example.com | [1bd 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org1.example.com | [2d3 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebb66039]Move state message INIT +peer0.org1.example.com | [437 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +orderer.example.com | [1be 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org2.example.com | [335 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [875098a0]Move state message COMPLETED +peer1.org1.example.com | [2d4 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ebb66039]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [2f4 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4563e64a]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | [1bf 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org1.example.com | [438 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [2d5 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [1c0 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +peer0.org1.example.com | [439 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org1.example.com | [2d6 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebb66039]sending state message INIT +peer0.org2.example.com | [2f5 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [336 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [875098a0]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [1c1 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [2d7 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebb66039]Received message INIT from shim +orderer.example.com | MIICQzCCAeqgAwIBAgIRAMt+4ybOK1r7B8eavLVTMBUwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [337 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [875098a0]send state message COMPLETED +peer1.org1.example.com | [2d8 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ebb66039]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [43a 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [2d9 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [2f6 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4563e64a]Received INIT, initializing chaincode +peer0.org1.example.com | [43b 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [2da 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [ebb66039]Received INIT, initializing chaincode +peer1.org2.example.com | [338 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [875098a0]Received message COMPLETED from shim +peer0.org2.example.com | [2f7 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +peer1.org1.example.com | [2db 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebb66039]Init get response status: 200 +peer1.org2.example.com | [339 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [875098a0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [43c 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [2dc 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebb66039]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [33a 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [875098a0-b135-43ce-a7ac-6fb11e7cf35a]HandleMessage- COMPLETED. Notify +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +peer1.org1.example.com | [2dd 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebb66039]Move state message COMPLETED +peer0.org2.example.com | [2f8 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4563e64a]Init get response status: 200 +peer1.org2.example.com | [33b 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:875098a0-b135-43ce-a7ac-6fb11e7cf35a, channelID:businesschannel +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer1.org1.example.com | [2de 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ebb66039]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [43d 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [2df 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebb66039]send state message COMPLETED +orderer.example.com | BPGrtJtHj1Ql02gq7I0ZQQKJwvtZhp0t3rCwF1cFILTHIBM4phJ/ZYJQa1lb12pO +peer1.org2.example.com | [33c 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [43e 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org2.example.com | [2f9 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4563e64a]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [2e0 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebb66039]Received message COMPLETED from shim +orderer.example.com | sxSxuEvRGTFcZXtunUc0SeWjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer1.org2.example.com | [33d 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer1.org1.example.com | [2e1 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ebb66039]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICSqVyrJerF7YoXDKKeV +peer0.org2.example.com | [2fa 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4563e64a]Move state message COMPLETED +peer1.org2.example.com | [33e 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [875098a0-b135-43ce-a7ac-6fb11e7cf35a] +peer0.org1.example.com | [43f 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [2e2 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ebb66039-d0bd-400e-9238-caa2fd52eed3]HandleMessage- COMPLETED. Notify +orderer.example.com | 2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCIB+psiek7FqP18l1 +peer1.org2.example.com | [33f 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled +peer0.org2.example.com | [2fb 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4563e64a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [2e3 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ebb66039-d0bd-400e-9238-caa2fd52eed3, channelID:businesschannel +peer0.org1.example.com | [440 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | 3s2anbtfpiGTHbAnm2BihpD9sRPjAiAIvsdyfn+nb2bCQBK6sodbO+LxSkuZulkP +peer1.org2.example.com | [340 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry +peer1.org1.example.com | [2e4 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | oMR3yCH/eA== +peer0.org2.example.com | [2fc 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4563e64a]send state message COMPLETED +peer1.org1.example.com | [2e5 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org1.example.com | [441 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [2e6 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [ebb66039-d0bd-400e-9238-caa2fd52eed3] +peer0.org2.example.com | [2fd 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4563e64a]Received message COMPLETED from shim +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [341 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit +peer1.org2.example.com | [342 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry +peer0.org1.example.com | [442 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [443 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [1c2 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [2e7 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [343 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [2fe 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4563e64a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [444 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [2e8 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [6dbb5a93-2aa6-42fc-b324-21a1732a42f2] +peer1.org2.example.com | [344 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully +peer0.org2.example.com | [2ff 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4563e64a-ad1d-450e-be11-ad7ae52c89ac]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [2e9 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=6dbb5a93-2aa6-42fc-b324-21a1732a42f2,syscc=true,proposal=0x0,canname=escc:1.1.0 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [445 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [446 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [447 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [448 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer1.org2.example.com | [345 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit +peer0.org2.example.com | [300 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:4563e64a-ad1d-450e-be11-ad7ae52c89ac, channelID:businesschannel +peer0.org1.example.com | [449 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [2ea 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer1.org1.example.com | [2eb 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [2ec 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer1.org1.example.com | [2ed 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6dbb5a93]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [346 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fdd30bd1]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [347 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fdd30bd1]Move state message COMPLETED +peer1.org2.example.com | [348 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fdd30bd1]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [349 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fdd30bd1]send state message COMPLETED +peer1.org2.example.com | [34a 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fdd30bd1]Received message COMPLETED from shim +peer1.org2.example.com | [34b 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fdd30bd1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [44a 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [301 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +peer1.org1.example.com | [2ee 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [34c 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fdd30bd1dc207c6839c976bbfbb05dc6f750ace918cc56f071bd302b06ef7d8c]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [44b 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [302 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +peer0.org2.example.com | [303 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [4563e64a-ad1d-450e-be11-ad7ae52c89ac] +peer0.org2.example.com | [304 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [305 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [a8ce9ee1-49a3-47d4-a826-df2eab436af1] +peer0.org2.example.com | [306 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=a8ce9ee1-49a3-47d4-a826-df2eab436af1,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer0.org2.example.com | [307 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer0.org2.example.com | [308 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [309 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer1.org2.example.com | [34d 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:fdd30bd1dc207c6839c976bbfbb05dc6f750ace918cc56f071bd302b06ef7d8c, channelID: +peer1.org1.example.com | [2ef 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6dbb5a93]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [44c 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [30a 12-15 03:49:15.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a8ce9ee1]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [30b 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [30c 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a8ce9ee1]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [30d 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a8ce9ee1]Move state message INIT +peer0.org2.example.com | [30e 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a8ce9ee1]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [30f 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [310 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a8ce9ee1]sending state message INIT +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [2f0 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6dbb5a93]Move state message INIT +peer1.org2.example.com | [34e 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [311 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a8ce9ee1]Received message INIT from shim +peer0.org1.example.com | [44d 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [34f 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [312 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a8ce9ee1]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [2f1 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6dbb5a93]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [44e 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [44f 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [450 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [451 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org1.example.com | [452 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +peer1.org2.example.com | [350 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [313 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [453 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +peer0.org2.example.com | [314 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [a8ce9ee1]Received INIT, initializing chaincode +peer1.org1.example.com | [2f2 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +peer0.org1.example.com | [454 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org1.example.com | [455 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org1.example.com | [2f3 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6dbb5a93]sending state message INIT +orderer.example.com | YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +peer0.org2.example.com | [315 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a8ce9ee1]Init get response status: 200 +peer1.org2.example.com | [351 12-15 03:49:15.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:36120) +peer0.org1.example.com | [456 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org1.example.com | [2f4 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6dbb5a93]Received message INIT from shim +orderer.example.com | 8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +peer0.org2.example.com | [316 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a8ce9ee1]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [352 12-15 03:49:21.43 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 | [457 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [2f5 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6dbb5a93]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | N5+z/fTTfchGfLaCtzM= +peer0.org2.example.com | [317 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a8ce9ee1]Move state message COMPLETED +peer0.org2.example.com | [318 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a8ce9ee1]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [458 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org2.example.com | [353 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +peer0.org2.example.com | [319 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a8ce9ee1]send state message COMPLETED +peer1.org1.example.com | [2f6 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [459 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org2.example.com | [354 12-15 03:49:21.44 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 | [31a 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a8ce9ee1]Received message COMPLETED from shim +orderer.example.com | [1c3 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [2f7 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [6dbb5a93]Received INIT, initializing chaincode +peer0.org1.example.com | [45a 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org1.example.com | [2f8 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +orderer.example.com | MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [31b 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a8ce9ee1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [355 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +peer0.org1.example.com | [45b 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [2f9 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6dbb5a93]Init get response status: 200 +peer1.org2.example.com | [356 12-15 03:49:21.44 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 | [31c 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a8ce9ee1-49a3-47d4-a826-df2eab436af1]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [45c 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [2fa 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6dbb5a93]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [2fb 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6dbb5a93]Move state message COMPLETED +peer1.org1.example.com | [2fc 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6dbb5a93]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [2fd 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6dbb5a93]send state message COMPLETED +peer1.org1.example.com | [2fe 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6dbb5a93]Received message COMPLETED from shim +peer1.org1.example.com | [2ff 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6dbb5a93]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [300 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6dbb5a93-2aa6-42fc-b324-21a1732a42f2]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [45d 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [45e 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +peer1.org2.example.com | [357 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +peer1.org1.example.com | [301 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:6dbb5a93-2aa6-42fc-b324-21a1732a42f2, channelID:businesschannel +peer1.org1.example.com | [302 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [31d 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:a8ce9ee1-49a3-47d4-a826-df2eab436af1, channelID:businesschannel +peer0.org2.example.com | [31e 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [45f 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +peer1.org1.example.com | [303 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +peer1.org2.example.com | [358 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] +peer0.org2.example.com | [31f 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [460 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [] marked as valid by state validator +peer1.org2.example.com | [359 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] +peer1.org1.example.com | [304 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [6dbb5a93-2aa6-42fc-b324-21a1732a42f2] +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [320 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [a8ce9ee1-49a3-47d4-a826-df2eab436af1] +peer0.org1.example.com | [461 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org2.example.com | [35a 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +peer1.org1.example.com | [305 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [321 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [462 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer1.org2.example.com | [35b 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +orderer.example.com | VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +peer1.org1.example.com | [306 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [cfba6ecf-bd73-4062-b33c-740521825170] +peer0.org1.example.com | [463 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org1.example.com | [464 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage +peer0.org1.example.com | [465 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [1] +peer0.org1.example.com | [466 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xaa, 0x80, 0xff, 0xc, 0x39, 0xaa, 0xa8, 0x8f, 0x5f, 0xc0, 0x97, 0xdb, 0x69, 0x4b, 0xab, 0xe6, 0x6c, 0xaa, 0x32, 0xc5, 0x62, 0x29, 0x98, 0xb, 0xb6, 0x72, 0x4f, 0xe1, 0x1e, 0xe7, 0xb5, 0x8f} txOffsets= +peer0.org1.example.com | txId= locPointer=offset=70, bytesLength=12097 +peer0.org1.example.com | ] +peer0.org1.example.com | [467 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12197, bytesLength=12097] for tx ID: [] to index +peer0.org1.example.com | [468 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12197, bytesLength=12097] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org1.example.com | [469 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26088], isChainEmpty=[false], lastBlockNumber=[1] +peer1.org2.example.com | [35c 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4202ce440 env 0xc4202ef560 txn 0 +peer1.org2.example.com | [35d 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4202ef560 +peer1.org1.example.com | [307 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=cfba6ecf-bd73-4062-b33c-740521825170,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer0.org1.example.com | [46a 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 1 +peer0.org1.example.com | [46b 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 1 +peer0.org2.example.com | [322 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [48b80ed0-e7c3-4599-b140-93c4f7528471] +peer0.org2.example.com | [323 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=48b80ed0-e7c3-4599-b140-93c4f7528471,syscc=true,proposal=0x0,canname=qscc:1.1.0 +peer0.org2.example.com | [324 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org2.example.com | [325 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [46c 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) +peer1.org1.example.com | [308 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer0.org2.example.com | [326 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org1.example.com | [46d 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database +orderer.example.com | YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +peer1.org2.example.com | [35e 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\273\214\315\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv\nzQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd\nibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv\nzjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg=\n-----END CERTIFICATE-----\n\022\030?\372r\023W\347Z\241l\242\243y,Z\325}$\376\357\347\335\214*\340" +peer1.org2.example.com | [35f 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org2.example.com | [360 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [361 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 1e3da41845b92a1416cf3e4c523fc99cac9313f32163b269265dab0667463892} +peer1.org2.example.com | [362 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [363 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [365 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421eca000, header channel_header:"\010\001\032\006\010\273\214\315\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv\nzQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd\nibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv\nzjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg=\n-----END CERTIFICATE-----\n\022\030?\372r\023W\347Z\241l\242\243y,Z\325}$\376\357\347\335\214*\340" +peer1.org2.example.com | [364 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] +peer1.org2.example.com | [366 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer0.org2.example.com | [327 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [48b80ed0]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [46e 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer1.org1.example.com | [309 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | 8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +peer1.org2.example.com | [367 12-15 03:49:21.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [328 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [46f 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [30a 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer1.org2.example.com | [368 12-15 03:49:21.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org2.example.com | [329 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [48b80ed0]sendExecuteMsg trigger event INIT +orderer.example.com | N5+z/fTTfchGfLaCtzM= +peer0.org1.example.com | [470 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer1.org2.example.com | [369 12-15 03:49:21.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org1.example.com | [30b 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [cfba6ecf]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [32a 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b80ed0]Move state message INIT +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [36a 12-15 03:49:21.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [30c 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [471 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [36b 12-15 03:49:21.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [30d 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [cfba6ecf]sendExecuteMsg trigger event INIT +orderer.example.com | [1c4 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer0.org2.example.com | [32b 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b80ed0]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [472 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database +peer1.org2.example.com | [36c 12-15 03:49:21.45 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] +peer1.org1.example.com | [30e 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cfba6ecf]Move state message INIT +orderer.example.com | [1c5 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +peer0.org2.example.com | [32c 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [473 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +peer1.org2.example.com | [36d 12-15 03:49:21.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [30f 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cfba6ecf]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | [1c6 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +peer0.org2.example.com | [32d 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b80ed0]sending state message INIT +peer0.org1.example.com | [474 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org1.example.com | [310 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [36e 12-15 03:49:21.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [1c7 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +peer1.org1.example.com | [311 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cfba6ecf]sending state message INIT +peer0.org1.example.com | [475 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +peer0.org2.example.com | [32e 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48b80ed0]Received message INIT from shim +peer1.org2.example.com | [36f 12-15 03:49:21.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [1c8 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +peer1.org1.example.com | [312 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cfba6ecf]Received message INIT from shim +peer0.org2.example.com | [32f 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [48b80ed0]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [476 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +orderer.example.com | [1c9 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +peer1.org2.example.com | [370 12-15 03:49:21.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org1.example.com | [313 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cfba6ecf]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [477 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org2.example.com | [330 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | [1ca 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +peer0.org1.example.com | [478 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org1.example.com | [314 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [371 12-15 03:49:21.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org2.example.com | [331 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [48b80ed0]Received INIT, initializing chaincode +orderer.example.com | [1cb 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +peer1.org2.example.com | [372 12-15 03:49:21.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [315 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [cfba6ecf]Received INIT, initializing chaincode +peer0.org1.example.com | [479 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [332 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org2.example.com | [373 12-15 03:49:21.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer1.org1.example.com | [316 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cfba6ecf]Init get response status: 200 +peer0.org1.example.com | [47a 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +orderer.example.com | [1cc 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +peer0.org2.example.com | [333 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48b80ed0]Init get response status: 200 +peer1.org2.example.com | [374 12-15 03:49:21.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [317 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cfba6ecf]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [47b 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [318 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cfba6ecf]Move state message COMPLETED +peer1.org2.example.com | [375 12-15 03:49:21.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [334 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48b80ed0]Init succeeded. Sending COMPLETED +orderer.example.com | [1cd 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +peer1.org1.example.com | [319 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cfba6ecf]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [47c 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [335 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48b80ed0]Move state message COMPLETED +orderer.example.com | [1ce 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +peer1.org1.example.com | [31a 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cfba6ecf]send state message COMPLETED +peer1.org2.example.com | [376 12-15 03:49:21.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [336 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [48b80ed0]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [377 12-15 03:49:21.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP +peer1.org1.example.com | [31b 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cfba6ecf]Received message COMPLETED from shim +orderer.example.com | [1cf 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +peer0.org1.example.com | [47d 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [337 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48b80ed0]send state message COMPLETED +peer1.org1.example.com | [31c 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cfba6ecf]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [1d0 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +peer0.org1.example.com | [47e 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [338 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b80ed0]Received message COMPLETED from shim +peer1.org2.example.com | [378 12-15 03:49:21.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins +peer0.org1.example.com | [47f 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [31d 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cfba6ecf-bd73-4062-b33c-740521825170]HandleMessage- COMPLETED. Notify +orderer.example.com | [1d1 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +peer0.org2.example.com | [339 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b80ed0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [379 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer1.org1.example.com | [31e 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:cfba6ecf-bd73-4062-b33c-740521825170, channelID:businesschannel +peer0.org1.example.com | [480 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +orderer.example.com | [1d2 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +peer0.org2.example.com | [33a 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b80ed0-e7c3-4599-b140-93c4f7528471]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [31f 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [37a 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [481 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +orderer.example.com | [1d3 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +peer1.org1.example.com | [320 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer1.org2.example.com | [37b 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [482 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421cf2a60 env 0xc421cebbc0 txn 0 +peer0.org2.example.com | [33b 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:48b80ed0-e7c3-4599-b140-93c4f7528471, channelID:businesschannel +peer1.org1.example.com | [321 12-15 03:49:15.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [cfba6ecf-bd73-4062-b33c-740521825170] +orderer.example.com | [1d4 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy ChannelCreationPolicy for Channel/Application +peer0.org1.example.com | [483 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421cebbc0 +peer1.org2.example.com | [37c 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [1d5 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Application/Readers +peer1.org1.example.com | [322 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [33c 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [484 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\275\214\315\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv\nzQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd\nibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv\nzjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg=\n-----END CERTIFICATE-----\n\022\030\364\221\264\365\214C\0376\201\201|Q\366?\331A\023\303\367WM\263\340;" +orderer.example.com | [1d6 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +peer1.org2.example.com | [37d 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [323 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [e6ac41ac-848a-46b2-9063-4210463eea84] +peer0.org2.example.com | [33d 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer0.org2.example.com | [33e 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [48b80ed0-e7c3-4599-b140-93c4f7528471] +orderer.example.com | [1d7 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Application/Writers +peer1.org2.example.com | [37e 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [485 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org2.example.com | [33f 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled +peer1.org1.example.com | [324 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=e6ac41ac-848a-46b2-9063-4210463eea84,syscc=true,proposal=0x0,canname=qscc:1.1.0 +peer1.org2.example.com | [37f 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [1d8 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +peer1.org1.example.com | [325 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org2.example.com | [340 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | [486 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [1d9 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins +peer1.org1.example.com | [326 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [380 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [1da 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +peer1.org1.example.com | [327 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org1.example.com | [487 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 1e3da41845b92a1416cf3e4c523fc99cac9313f32163b269265dab0667463892} +peer0.org2.example.com | [341 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit +peer0.org1.example.com | [488 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [328 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e6ac41ac]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [381 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [1db 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [342 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry +peer0.org1.example.com | [489 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [382 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [1dc 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org1.example.com | [329 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [343 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [383 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [48a 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4218c8000, header channel_header:"\010\001\032\006\010\275\214\315\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv\nzQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd\nibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv\nzjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg=\n-----END CERTIFICATE-----\n\022\030\364\221\264\365\214C\0376\201\201|Q\366?\331A\023\303\367WM\263\340;" +orderer.example.com | [1dd 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org1.example.com | [32a 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e6ac41ac]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [384 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org2.example.com | [344 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully +orderer.example.com | [1de 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [48b 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer0.org2.example.com | [345 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit +peer1.org2.example.com | [385 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [1df 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [32b 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e6ac41ac]Move state message INIT +peer0.org1.example.com | [48c 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [346 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [36bffe0e]Transaction completed. Sending COMPLETED +orderer.example.com | [1e0 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [386 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer1.org1.example.com | [32c 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e6ac41ac]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [48d 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org2.example.com | [347 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [36bffe0e]Move state message COMPLETED +orderer.example.com | [1e1 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [387 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [48e 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [348 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [36bffe0e]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [32d 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [388 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [48f 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [349 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [36bffe0e]send state message COMPLETED +orderer.example.com | [1e2 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer1.org1.example.com | [32e 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e6ac41ac]sending state message INIT +peer1.org2.example.com | [389 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [34a 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [36bffe0e]Received message COMPLETED from shim +peer0.org1.example.com | [490 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [1e3 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [32f 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e6ac41ac]Received message INIT from shim +peer0.org2.example.com | [34b 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [36bffe0e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [38a 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [330 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e6ac41ac]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [34c 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [36bffe0e06d956fd010721c932d8c051f6a29dac280238a19b6a4bc7b1275712]HandleMessage- COMPLETED. Notify +orderer.example.com | [1e4 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [491 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [1e5 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org2.example.com | [34d 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:36bffe0e06d956fd010721c932d8c051f6a29dac280238a19b6a4bc7b1275712, channelID: +peer1.org2.example.com | [38b 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [331 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [492 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [38c 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [1e6 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [332 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e6ac41ac]Received INIT, initializing chaincode +peer0.org2.example.com | [34e 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [38d 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [493 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [1e7 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org1.example.com | [333 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer0.org2.example.com | [34f 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [38e 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [494 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org1.example.com | [334 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e6ac41ac]Init get response status: 200 +peer0.org1.example.com | [495 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [350 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [1e8 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [38f 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [335 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e6ac41ac]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [496 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | [1e9 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [390 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [336 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e6ac41ac]Move state message COMPLETED +peer0.org2.example.com | [351 12-15 03:49:15.24 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:58146) +peer0.org1.example.com | [497 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [1ea 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [391 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [337 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e6ac41ac]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [352 12-15 03:49:21.23 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 | [498 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [1eb 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org1.example.com | [338 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e6ac41ac]send state message COMPLETED +peer0.org2.example.com | [353 12-15 03:49:21.23 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +peer1.org2.example.com | [392 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [339 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e6ac41ac]Received message COMPLETED from shim +peer0.org1.example.com | [499 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [1ec 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org2.example.com | [393 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org2.example.com | [354 12-15 03:49:21.23 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 | [33a 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e6ac41ac]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [1ed 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [394 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [355 12-15 03:49:21.23 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +peer0.org1.example.com | [49a 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [33b 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e6ac41ac-848a-46b2-9063-4210463eea84]HandleMessage- COMPLETED. Notify +orderer.example.com | [1ee 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [395 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [356 12-15 03:49:21.23 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.org1.example.com | [49b 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP +peer1.org1.example.com | [33c 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e6ac41ac-848a-46b2-9063-4210463eea84, channelID:businesschannel +orderer.example.com | [1ef 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [357 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +peer1.org2.example.com | [396 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [33d 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | [1f0 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [49c 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins +peer1.org2.example.com | [397 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [33e 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer0.org2.example.com | [358 12-15 03:49:21.25 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] +orderer.example.com | [1f1 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [398 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [359 12-15 03:49:21.25 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] +orderer.example.com | [1f2 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [35a 12-15 03:49:21.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org1.example.com | [33f 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [e6ac41ac-848a-46b2-9063-4210463eea84] +peer1.org2.example.com | [399 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org1.example.com | [49d 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer0.org2.example.com | [35b 12-15 03:49:21.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org1.example.com | [340 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled +peer0.org2.example.com | [35c 12-15 03:49:21.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4202c1120 env 0xc42038b590 txn 0 +orderer.example.com | [1f3 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [35d 12-15 03:49:21.25 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42038b590 +peer1.org2.example.com | [39a 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org1.example.com | [341 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | [49e 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [1f4 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [35e 12-15 03:49:21.25 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\273\214\315\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv\nzQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd\nibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv\nzjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg=\n-----END CERTIFICATE-----\n\022\030?\372r\023W\347Z\241l\242\243y,Z\325}$\376\357\347\335\214*\340" +peer1.org1.example.com | [342 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit +peer1.org2.example.com | [39b 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [35f 12-15 03:49:21.25 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org1.example.com | [49f 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [1f5 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [343 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry +peer0.org2.example.com | [360 12-15 03:49:21.25 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [4a0 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [361 12-15 03:49:21.25 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 1e3da41845b92a1416cf3e4c523fc99cac9313f32163b269265dab0667463892} +orderer.example.com | [1f6 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +peer1.org1.example.com | [344 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [362 12-15 03:49:21.25 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [39c 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [1f7 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org2.example.com | [363 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [345 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully +peer1.org2.example.com | [39d 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [364 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42180e000, header channel_header:"\010\001\032\006\010\273\214\315\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv\nzQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd\nibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv\nzjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg=\n-----END CERTIFICATE-----\n\022\030?\372r\023W\347Z\241l\242\243y,Z\325}$\376\357\347\335\214*\340" +peer0.org1.example.com | [4a1 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [1f8 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org1.example.com | [346 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit +peer0.org2.example.com | [365 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer1.org2.example.com | [39e 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [1f9 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer0.org1.example.com | [4a2 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [366 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [39f 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org1.example.com | [347 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8f374918]Transaction completed. Sending COMPLETED +orderer.example.com | [1fa 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org2.example.com | [367 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [4a3 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [348 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8f374918]Move state message COMPLETED +peer1.org2.example.com | [3a0 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [368 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [4a4 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [1fb 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [369 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [4a5 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org2.example.com | [3a1 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org2.example.com | [36a 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [1fc 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org1.example.com | [349 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8f374918]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [4a6 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org2.example.com | [36b 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [3a2 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [4a7 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer1.org1.example.com | [34a 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8f374918]send state message COMPLETED +orderer.example.com | [1fd 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org2.example.com | [36c 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [4a8 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [1fe 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [3a3 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org1.example.com | [34b 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8f374918]Received message COMPLETED from shim +peer0.org2.example.com | [36d 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [1ff 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [4a9 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [36e 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org1.example.com | [34c 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8f374918]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [200 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [4aa 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3a4 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [36f 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [201 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org1.example.com | [34d 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8f374918c0d2237373e3f4b085e6f4b7d85c9b3759aff114418b8deea76e7d2f]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [4ab 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [202 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [3a5 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | [370 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | [203 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org1.example.com | [4ac 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [3a6 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [34e 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8f374918c0d2237373e3f4b085e6f4b7d85c9b3759aff114418b8deea76e7d2f, channelID: +orderer.example.com | [204 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [4ad 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [205 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org2.example.com | [371 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [4ae 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [3a7 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [206 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org2.example.com | [372 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [34f 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [207 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [373 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [350 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [4af 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [208 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org2.example.com | [3a8 12-15 03:49:21.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [351 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [374 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [209 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [3a9 12-15 03:49:21.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [4b0 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [352 12-15 03:49:15.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:41232) +peer0.org2.example.com | [375 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP +orderer.example.com | [20a 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [3aa 12-15 03:49:21.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [4b1 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +orderer.example.com | [20b 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [353 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org2.example.com | [376 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins +peer1.org1.example.com | [354 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org1.example.com | [355 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421cd31c0 env 0xc42199d9e0 txn 0 +peer1.org1.example.com | [356 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42199d9e0 +orderer.example.com | [20c 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org2.example.com | [3ab 12-15 03:49:21.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [377 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [4b2 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [357 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\273\214\315\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv\nzQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd\nibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv\nzjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg=\n-----END CERTIFICATE-----\n\022\030?\372r\023W\347Z\241l\242\243y,Z\325}$\376\357\347\335\214*\340" +peer1.org2.example.com | [3ac 12-15 03:49:21.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org2.example.com | [378 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [20d 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Capabilities +peer1.org1.example.com | [358 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org2.example.com | [3ad 12-15 03:49:21.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org2.example.com | [379 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org1.example.com | [4b3 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [359 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [20e 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [3ae 12-15 03:49:21.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [37a 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer1.org1.example.com | [35a 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 1e3da41845b92a1416cf3e4c523fc99cac9313f32163b269265dab0667463892} +orderer.example.com | [20f 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [4b4 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [37b 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [35b 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [3af 12-15 03:49:21.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [210 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +peer0.org1.example.com | [4b5 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [35c 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [37c 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [35d 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4203a9000, header channel_header:"\010\001\032\006\010\273\214\315\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv\nzQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd\nibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv\nzjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg=\n-----END CERTIFICATE-----\n\022\030?\372r\023W\347Z\241l\242\243y,Z\325}$\376\357\347\335\214*\340" +peer1.org2.example.com | [3b0 12-15 03:49:21.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [211 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy ChannelCreationPolicy +peer0.org1.example.com | [4b6 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [35e 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer0.org2.example.com | [37d 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [4b7 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | [212 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] +peer1.org2.example.com | [3b1 12-15 03:49:21.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [35f 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [3b2 12-15 03:49:21.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [360 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [4b8 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [37e 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [361 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [213 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +peer1.org1.example.com | [362 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [3b3 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [4b9 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [37f 12-15 03:49:21.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [4ba 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [363 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [3b4 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [380 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [214 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +peer1.org1.example.com | [364 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [4bb 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [382 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [3b5 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [365 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [215 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +peer0.org1.example.com | [4bc 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [381 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] +peer1.org1.example.com | [366 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [3b6 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [4bd 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org1.example.com | [367 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org2.example.com | [383 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3b7 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [216 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +peer1.org1.example.com | [368 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org2.example.com | [384 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3b8 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org1.example.com | [369 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [4be 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [3b9 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [217 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +peer0.org2.example.com | [386 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] +peer1.org1.example.com | [36a 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [218 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +peer1.org1.example.com | [36b 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [3ba 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [36c 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [4bf 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [385 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [219 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +peer1.org1.example.com | [36d 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [3bb 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [36e 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP +peer1.org2.example.com | [3bc 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org1.example.com | [4c0 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [36f 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins +orderer.example.com | [21a 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +peer0.org2.example.com | [387 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3bd 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [4c1 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [388 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org1.example.com | [370 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [21b 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy == +peer1.org2.example.com | [3be 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [389 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [4c2 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [371 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [21c 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [4c3 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer1.org1.example.com | [372 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3bf 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [4c4 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [38a 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [373 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [21d 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == +peer1.org2.example.com | [3c0 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [4c5 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org2.example.com | [38b 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [374 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [21e 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org2.example.com | [38c 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [3c1 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [21f 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [375 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [38d 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [4c6 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org1.example.com | [376 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [3c2 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org2.example.com | [38e 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [38f 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [3c3 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [4c7 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org1.example.com | [377 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3c4 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org2.example.com | [390 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [378 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org2.example.com | [3c5 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [4c8 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [391 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [379 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [392 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [3c6 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [4c9 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [37a 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org2.example.com | [393 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +peer1.org2.example.com | [3c7 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [4ca 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [37b 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [394 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [3c8 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [4cb 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [395 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org1.example.com | [37c 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [396 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [37d 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [4cc 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [3c9 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org2.example.com | [397 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [37e 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3ca 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +peer0.org2.example.com | [398 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [37f 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3cb 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org1.example.com | [4cd 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +peer1.org1.example.com | [380 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [399 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [4ce 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [3cc 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer0.org2.example.com | [39a 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [381 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [4cf 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [39b 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +peer1.org1.example.com | [382 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [4d0 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org2.example.com | [3cd 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +peer0.org1.example.com | [4d1 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org1.example.com | [383 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [39c 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [3ce 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org1.example.com | [4d2 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [384 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org2.example.com | [39d 12-15 03:49:21.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +peer0.org1.example.com | [4d3 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [39e 12-15 03:49:21.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [385 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [3cf 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org1.example.com | [4d4 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | bqEi6/lY2kK0EtGRnA== +peer0.org2.example.com | [39f 12-15 03:49:21.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org1.example.com | [386 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [4d5 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [3d0 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org1.example.com | [387 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [4d6 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +orderer.example.com | [220 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c2e8 gate 1513309754280332000 evaluation starts +peer1.org1.example.com | [388 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [3d1 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org2.example.com | [3a0 12-15 03:49:21.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [4d7 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +orderer.example.com | [221 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c2e8 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [389 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [3d2 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [3a1 12-15 03:49:21.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [4d8 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [38a 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | [222 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c2e8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b78664b6f3271717459665054415039526b4136796f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455775768634e4d6a63784d6a457a4d444d7a4e5455770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424c493853704e726b4330415968693747496377353237505056364e75682b410a6b6f6b7670516355436746536d373374595a375141556c5446384e2f5642424e51436e464c326b72756b4f4c6431496f4237776e5a6e756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4376615250365a53446c0a64644a716e6e314d784c776b464f716d394d5877324c474f6b38584c72424e574d416f4743437147534d343942414d43413063414d455143494235334a6546780a4f665644446c692b4a6955636b463459376b4d64595550714778477373755948305570694169416f7159577a596a4f4c397071677874495430332f59717370630a62714569362f6c59326b4b30457447526e413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [3d3 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org2.example.com | [3a2 12-15 03:49:21.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [4d9 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org1.example.com | [38b 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [3d4 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer0.org1.example.com | [4da 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org2.example.com | [3d5 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [223 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c2e8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +peer0.org1.example.com | [4db 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org1.example.com | [38c 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org2.example.com | [3d6 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer0.org2.example.com | [3a3 12-15 03:49:21.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer0.org1.example.com | [4dc 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [3d7 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [224 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c2e8 principal evaluation fails +peer0.org1.example.com | [4dd 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [38d 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [3a4 12-15 03:49:21.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [3d8 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [225 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c2e8 gate 1513309754280332000 evaluation fails +peer0.org1.example.com | [4de 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org1.example.com | [38e 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org2.example.com | [3d9 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +peer0.org2.example.com | [3a5 12-15 03:49:21.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [4df 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [3da 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +orderer.example.com | [226 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [4e0 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org2.example.com | [3db 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org1.example.com | [38f 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [3a6 12-15 03:49:21.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [227 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [4e1 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer1.org2.example.com | [3dc 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org1.example.com | [4e2 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [390 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [3a7 12-15 03:49:21.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [228 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +peer1.org2.example.com | [3dd 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org1.example.com | [4e3 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [391 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [3a8 12-15 03:49:21.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [3de 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org1.example.com | [4e4 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [229 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c2f8 gate 1513309754281088000 evaluation starts +peer1.org2.example.com | [3df 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer0.org2.example.com | [3a9 12-15 03:49:21.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org1.example.com | [392 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [4e5 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [22a 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c2f8 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [3e0 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org2.example.com | [3aa 12-15 03:49:21.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org1.example.com | [393 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [4e6 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [3e1 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org2.example.com | [3e2 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org2.example.com | [3ab 12-15 03:49:21.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [4e7 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | [22b 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c2f8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b78664b6f3271717459665054415039526b4136796f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455775768634e4d6a63784d6a457a4d444d7a4e5455770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424c493853704e726b4330415968693747496377353237505056364e75682b410a6b6f6b7670516355436746536d373374595a375141556c5446384e2f5642424e51436e464c326b72756b4f4c6431496f4237776e5a6e756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4376615250365a53446c0a64644a716e6e314d784c776b464f716d394d5877324c474f6b38584c72424e574d416f4743437147534d343942414d43413063414d455143494235334a6546780a4f665644446c692b4a6955636b463459376b4d64595550714778477373755948305570694169416f7159577a596a4f4c397071677874495430332f59717370630a62714569362f6c59326b4b30457447526e413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org1.example.com | [394 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org2.example.com | [3e3 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] +orderer.example.com | [22c 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +peer1.org2.example.com | [3e4 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [395 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [3ac 12-15 03:49:21.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org1.example.com | [4e8 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer1.org2.example.com | [3e5 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] +orderer.example.com | [22d 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c2f8 principal matched by identity 0 +peer1.org1.example.com | [396 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [3ad 12-15 03:49:21.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +orderer.example.com | [22e 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 29 48 f2 2a 49 b8 f5 f0 cd 3f ad 85 65 44 b2 6b |)H.*I....?..eD.k| +peer1.org2.example.com | [3e6 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org1.example.com | [4e9 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [3ae 12-15 03:49:21.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | 00000010 cb 3e 0a 8c c7 e1 7d 9a 8d 3a d9 33 bc 75 f0 cb |.>....}..:.3.u..| +peer1.org1.example.com | [397 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [3e7 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer1.org2.example.com | [3e8 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer1.org2.example.com | [3e9 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +peer0.org1.example.com | [4ea 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [398 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [3af 12-15 03:49:21.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [22f 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 9a ce 8e 4f 7d 0d 27 e3 6c 56 d0 |0E.!....O}.'.lV.| +peer1.org2.example.com | [3ea 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [3b0 12-15 03:49:21.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | 00000010 6a e2 73 30 89 26 39 32 e6 6c c7 1f 22 25 41 bc |j.s0.&92.l.."%A.| +peer1.org2.example.com | [3eb 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +peer1.org1.example.com | [399 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [4eb 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [3b1 12-15 03:49:21.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | 00000020 aa 6f 30 8a e0 02 20 29 6a 95 68 cd 31 0f 5b 0a |.o0... )j.h.1.[.| +peer1.org2.example.com | [3ec 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer0.org1.example.com | [4ec 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org2.example.com | [3b2 12-15 03:49:21.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [39a 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | 00000030 e4 3f ce 07 58 04 ac 35 f8 2c 1e a3 52 3f bc 46 |.?..X..5.,..R?.F| +peer1.org1.example.com | [39b 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [3b3 12-15 03:49:21.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org1.example.com | [4ed 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [3ed 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:2 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +orderer.example.com | 00000040 c6 ca 9f e4 6c 91 f0 |....l..| +peer1.org1.example.com | [39c 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [3b4 12-15 03:49:21.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [4ee 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [3ee 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org1.example.com | [39d 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [3b5 12-15 03:49:21.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [230 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c2f8 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [4ef 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [3ef 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [39e 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [3b6 12-15 03:49:21.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | [231 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c2f8 gate 1513309754281088000 evaluation succeeds +peer0.org1.example.com | [4f0 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org2.example.com | [3f0 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [39f 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [232 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [3b7 12-15 03:49:21.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [3f1 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [3a0 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [233 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [4f1 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org2.example.com | [3f2 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [3b8 12-15 03:49:21.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org1.example.com | [3a1 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [3b9 12-15 03:49:21.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org2.example.com | [3ba 12-15 03:49:21.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [3f3 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [234 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/ChannelCreationPolicy +peer1.org1.example.com | [3a2 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [3bb 12-15 03:49:21.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [3f4 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org1.example.com | [4f2 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org1.example.com | [3a3 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org2.example.com | [3f5 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org2.example.com | [3bc 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org1.example.com | [3a4 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +orderer.example.com | [235 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy +peer1.org2.example.com | [3f6 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [4f3 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [3a5 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [3bd 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [3f7 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [236 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [3a6 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [3be 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer1.org2.example.com | [3f8 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [4f4 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org1.example.com | [3a7 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [3bf 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [237 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3f9 12-15 03:49:21.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [4f5 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [3a8 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [3fa 12-15 03:49:21.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [3c0 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [3a9 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org1.example.com | [4f6 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org2.example.com | [3fb 12-15 03:49:21.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [3c1 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [3c2 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org1.example.com | [3aa 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [4f7 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org2.example.com | [3fc 12-15 03:49:21.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [238 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3fd 12-15 03:49:21.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org1.example.com | [3ab 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org1.example.com | [3ac 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org2.example.com | [3c3 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [4f8 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org1.example.com | [3ad 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org2.example.com | [3c4 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [239 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [3fe 12-15 03:49:21.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org2.example.com | [3c5 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [3ae 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [4f9 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [23a 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [3c6 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [3af 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [3ff 12-15 03:49:21.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [4fa 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer1.org1.example.com | [3b0 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org2.example.com | [3c7 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | [23b 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [3b1 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [4fb 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer0.org2.example.com | [3c8 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [3b2 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [23c 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org2.example.com | [400 12-15 03:49:21.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [3c9 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [3b3 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [4fc 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer0.org1.example.com | [4fd 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer1.org1.example.com | [3b4 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [3ca 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [23d 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [3b5 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer1.org2.example.com | [401 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [3cb 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org1.example.com | [3b6 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [23e 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [23f 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [3cc 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org1.example.com | [3b7 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [402 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [4fe 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +peer0.org2.example.com | [3cd 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | [240 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [3b8 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [4ff 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org2.example.com | [3ce 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | [241 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [242 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [3b9 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [3cf 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org1.example.com | [500 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org2.example.com | [403 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [243 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [3ba 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [3d0 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [501 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +orderer.example.com | [244 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [404 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4202ce440 env 0xc4202ef560 txn 0 +peer0.org1.example.com | [502 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +orderer.example.com | [245 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [3bb 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [503 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org2.example.com | [3d1 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [405 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [246 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [3bc 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [3d2 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [504 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer1.org2.example.com | [406 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [407 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [3d3 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org1.example.com | [3bd 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [505 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +orderer.example.com | [247 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [3d4 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer1.org1.example.com | [3be 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org2.example.com | [408 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [3d5 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer0.org1.example.com | [507 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org1.example.com | [3bf 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [248 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [3d6 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org1.example.com | [3c0 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [506 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421cf2a60 env 0xc421cebbc0 txn 0 +orderer.example.com | [249 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [3d7 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer1.org2.example.com | [409 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [508 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +orderer.example.com | [24a 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org2.example.com | [3d8 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer0.org1.example.com | [509 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] +orderer.example.com | [24b 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [3d9 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +peer1.org2.example.com | [40a 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [3c1 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [3da 12-15 03:49:21.30 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org1.example.com | [50a 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org2.example.com | [40b 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer0.org2.example.com | [3db 12-15 03:49:21.31 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +orderer.example.com | [24c 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [50b 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] +peer0.org2.example.com | [3dc 12-15 03:49:21.31 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer1.org1.example.com | [3c2 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | [24d 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [3dd 12-15 03:49:21.31 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer1.org1.example.com | [3c3 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org2.example.com | [40c 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [3de 12-15 03:49:21.31 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org1.example.com | [3c4 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org1.example.com | [50c 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +orderer.example.com | [24e 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [40d 12-15 03:49:21.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [3df 12-15 03:49:21.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer1.org1.example.com | [3c5 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org1.example.com | [50d 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer0.org2.example.com | [3e0 12-15 03:49:21.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4202c1120 env 0xc42038b590 txn 0 +peer1.org2.example.com | [40e 12-15 03:49:21.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [24f 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [3c6 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer0.org2.example.com | [3e1 12-15 03:49:21.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org1.example.com | [50e 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer1.org2.example.com | [40f 12-15 03:49:21.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org1.example.com | [3c7 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org2.example.com | [3e2 12-15 03:49:21.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org1.example.com | [50f 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +orderer.example.com | [250 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org1.example.com | [3c8 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org2.example.com | [3e3 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org2.example.com | [410 12-15 03:49:21.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | [251 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org2.example.com | [3e4 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] +peer1.org1.example.com | [3c9 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [510 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [411 12-15 03:49:21.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org2.example.com | [3e5 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [3ca 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org1.example.com | [511 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +orderer.example.com | [252 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [3e6 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] +peer1.org1.example.com | [3cb 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer1.org2.example.com | [412 12-15 03:49:21.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [512 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer0.org2.example.com | [3e7 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer1.org1.example.com | [3cc 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [253 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [413 12-15 03:49:21.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [3e8 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer1.org1.example.com | [3cd 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer0.org1.example.com | [513 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +orderer.example.com | [254 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org2.example.com | [414 12-15 03:49:21.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [3e9 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer1.org1.example.com | [3ce 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer0.org1.example.com | [514 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org2.example.com | [415 12-15 03:49:21.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [3ea 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +peer1.org1.example.com | [3cf 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer0.org1.example.com | [515 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [3eb 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [3d0 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +peer0.org1.example.com | [516 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [255 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org2.example.com | [416 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [3ec 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +peer1.org1.example.com | [3d1 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/gossip/service] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateEndpoints -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found +peer1.org1.example.com | [3d2 12-15 03:49:20.93 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org1.example.com | [3d3 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer0.org2.example.com | [3ed 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +orderer.example.com | [256 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [417 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [3d4 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org1.example.com | [517 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [257 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [418 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [3d5 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org1.example.com | [518 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [3ee 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:2 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +peer1.org1.example.com | [3d6 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +orderer.example.com | [258 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [259 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [3ef 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org1.example.com | [3d7 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer1.org2.example.com | [419 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [519 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [3f0 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [3d8 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421cd31c0 env 0xc42199d9e0 txn 0 +peer1.org1.example.com | [3d9 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org2.example.com | [3f1 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [41a 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org1.example.com | [3da 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +orderer.example.com | [25a 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [51a 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org2.example.com | [3f2 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [3db 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org2.example.com | [41b 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [51b 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [3f3 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [25b 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org1.example.com | [3dc 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] +peer1.org2.example.com | [41c 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [51c 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [3f4 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [3dd 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | [25c 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +peer1.org2.example.com | [41d 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org1.example.com | [51d 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [3f5 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org1.example.com | [3de 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] +orderer.example.com | [25d 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [3f6 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org1.example.com | [3df 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer1.org2.example.com | [41e 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org2.example.com | [41f 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +orderer.example.com | MIICLzCCAdWgAwIBAgIQGXf5zEgjlejkE1rJW2znwDAKBggqhkjOPQQDAjBpMQsw +peer0.org2.example.com | [3f7 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org1.example.com | [3e0 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer0.org1.example.com | [51e 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [420 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [3f8 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | [3e1 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer0.org1.example.com | [51f 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [421 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [3f9 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [3e2 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +peer0.org1.example.com | [520 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org2.example.com | [422 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [3fa 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [3e3 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [521 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [423 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [3fb 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [3e4 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +peer1.org2.example.com | [424 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org1.example.com | [522 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowaTELMAkGA1UE +peer1.org1.example.com | [3e5 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer1.org2.example.com | [425 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [523 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [3fc 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [3e6 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:2 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org2.example.com | [3fd 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [3e7 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org1.example.com | [3e8 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [426 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org2.example.com | [3fe 12-15 03:49:21.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org1.example.com | [3e9 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +peer0.org1.example.com | [524 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [3ea 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [3ff 12-15 03:49:21.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org2.example.com | [427 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [3eb 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [400 12-15 03:49:21.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [428 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org1.example.com | [3ec 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [525 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [3ed 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFSKPRsXnXvaTTqRKjkTRYYoPjGg +peer0.org2.example.com | [401 12-15 03:49:21.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [429 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org1.example.com | [3ee 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | TgXRAoMQwI+9AaLXTSL+AsApwlxedr+PJ+UgfBNcxey226YSZRJqLeiH/TajXzBd +peer0.org2.example.com | [402 12-15 03:49:21.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [42a 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +peer0.org1.example.com | [526 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer1.org1.example.com | [3ef 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [403 12-15 03:49:21.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [42b 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | Af8wKQYDVR0OBCIEIPxyg8RiuCl5W+wOoXUqeRhWBcR2XF2JtWJ5qtJMQ3Y1MAoG +peer1.org1.example.com | [3f0 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [42c 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [527 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [404 12-15 03:49:21.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | CCqGSM49BAMCA0gAMEUCIQCoRrlZYPh0Qnsp3Z9KitmTDkRqi6JyR4RLiOyfv8Tf +peer1.org1.example.com | [3f1 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [528 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | QgIgdHbFqXGTZ0HFQmknUFd5DD4TTltv8Ijmfm8J1skS4jc= +peer1.org1.example.com | [3f2 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [405 12-15 03:49:21.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [529 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org1.example.com | [3f3 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [42d 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org2.example.com | [406 12-15 03:49:21.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [25e 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [3f4 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [42e 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [407 12-15 03:49:21.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +peer1.org1.example.com | [3f5 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [52a 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [408 12-15 03:49:21.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [42f 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org1.example.com | [3f6 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [409 12-15 03:49:21.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [52b 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [3f7 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +peer0.org2.example.com | [40a 12-15 03:49:21.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [430 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org2.example.com | [40b 12-15 03:49:21.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org1.example.com | [3f8 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [431 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org2.example.com | [40c 12-15 03:49:21.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org1.example.com | [3f9 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [432 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [52c 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +peer0.org2.example.com | [40d 12-15 03:49:21.34 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org1.example.com | [3fa 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [40e 12-15 03:49:21.34 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +orderer.example.com | ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org1.example.com | [52d 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [40f 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +peer1.org1.example.com | [3fb 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [52e 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [410 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org2.example.com | [433 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [3fc 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [52f 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +peer1.org2.example.com | [434 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [411 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [530 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +peer1.org1.example.com | [3fd 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [412 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [435 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [531 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org1.example.com | [3fe 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [25f 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [436 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +peer0.org2.example.com | [413 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org1.example.com | [3ff 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [532 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [437 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +peer0.org2.example.com | [414 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | [400 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [438 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [] marked as valid by state validator +peer0.org1.example.com | [533 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org2.example.com | [415 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org1.example.com | [401 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [439 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +peer1.org1.example.com | [402 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [416 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org1.example.com | [534 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org1.example.com | [535 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +peer1.org1.example.com | [403 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer0.org1.example.com | [536 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [417 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +orderer.example.com | ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org2.example.com | [43a 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer1.org1.example.com | [404 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +peer0.org1.example.com | [537 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [418 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +orderer.example.com | sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +peer1.org2.example.com | [43b 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org2.example.com | [419 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [538 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [405 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [43c 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage +peer0.org2.example.com | [41a 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [539 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [260 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer1.org2.example.com | [43d 12-15 03:49:21.55 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [1] +peer0.org1.example.com | [53a 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org1.example.com | [406 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org2.example.com | [41b 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [261 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org2.example.com | [41c 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [53b 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [407 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +orderer.example.com | [262 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [263 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [53c 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer1.org2.example.com | [43e 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xaa, 0x80, 0xff, 0xc, 0x39, 0xaa, 0xa8, 0x8f, 0x5f, 0xc0, 0x97, 0xdb, 0x69, 0x4b, 0xab, 0xe6, 0x6c, 0xaa, 0x32, 0xc5, 0x62, 0x29, 0x98, 0xb, 0xb6, 0x72, 0x4f, 0xe1, 0x1e, 0xe7, 0xb5, 0x8f} txOffsets= +peer0.org2.example.com | [41d 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org1.example.com | [408 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [264 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=12097 +peer0.org1.example.com | [53d 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [41e 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [265 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | ] +peer1.org1.example.com | [409 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [53e 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [41f 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | [266 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [43f 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12197, bytesLength=12097] for tx ID: [] to index +peer0.org1.example.com | [53f 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [420 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [267 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +peer1.org1.example.com | [40a 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [268 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [421 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [440 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12197, bytesLength=12097] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org1.example.com | [540 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | [269 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org2.example.com | [422 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [40b 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [26a 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org2.example.com | [441 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26088], isChainEmpty=[false], lastBlockNumber=[1] +peer0.org2.example.com | [423 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [541 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [40c 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | [26b 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +peer0.org2.example.com | [424 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [425 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [542 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [442 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 1 +peer1.org1.example.com | [40d 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +orderer.example.com | [26c 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [426 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [443 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 1 +peer0.org2.example.com | [427 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [40e 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer1.org2.example.com | [444 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) +orderer.example.com | MIICQzCCAemgAwIBAgIQShjAwe+6sxoSMZ8UrYKOcTAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | [428 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [40f 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [543 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [445 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database +peer1.org1.example.com | [410 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [446 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [429 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org1.example.com | [411 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [447 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | [544 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org2.example.com | [42a 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [412 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org2.example.com | [448 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer1.org1.example.com | [413 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa +peer0.org2.example.com | [42b 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [545 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org1.example.com | [414 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [449 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer0.org1.example.com | [546 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [42c 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org1.example.com | [547 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer0.org2.example.com | [42d 12-15 03:49:21.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org2.example.com | [44a 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database +peer1.org1.example.com | [415 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer1.org2.example.com | [44b 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +peer0.org2.example.com | [42e 12-15 03:49:21.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer0.org1.example.com | [548 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org1.example.com | [416 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org2.example.com | [42f 12-15 03:49:21.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org1.example.com | [549 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | GwyyfDLH07dFVkEvxJDGOKGevUcaYHphZvhzV78MBXVwIEGIENk7Zs8x+dx6iwIK +peer1.org2.example.com | [44c 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org1.example.com | [417 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [430 12-15 03:49:21.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org2.example.com | [44d 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +orderer.example.com | LOGmXxq/Wqd4qLs6kFyZvqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer0.org1.example.com | [54a 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org2.example.com | [431 12-15 03:49:21.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org1.example.com | [418 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgsK9pE/plIOV10mqefUzE +peer1.org2.example.com | [44e 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | [54b 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [432 12-15 03:49:21.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org1.example.com | [419 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | vCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAL7xXrYD1fkzcpxi +peer1.org2.example.com | [44f 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org1.example.com | [54c 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | yyZhFfEvMDWCoUicQw2b+c3GQ6OuAiA0KtNuH4yS4+c13W9Lsd28XNQK88FkwB2J +peer1.org1.example.com | [41a 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [433 12-15 03:49:21.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [54d 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org2.example.com | [450 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | QR9yhJE7rA== +peer1.org1.example.com | [41b 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [434 12-15 03:49:21.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [54e 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [451 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [435 12-15 03:49:21.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [41c 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [54f 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org2.example.com | [436 12-15 03:49:21.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +peer1.org1.example.com | [41d 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | [26d 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [437 12-15 03:49:21.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +peer0.org2.example.com | [438 12-15 03:49:21.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [] marked as valid by state validator +peer1.org2.example.com | [452 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [550 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org2.example.com | [439 12-15 03:49:21.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [41e 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [43a 12-15 03:49:21.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org1.example.com | [551 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [453 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | [43b 12-15 03:49:21.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer1.org1.example.com | [41f 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [552 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org2.example.com | [43c 12-15 03:49:21.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage +peer1.org2.example.com | [454 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +peer1.org1.example.com | [420 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [553 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org2.example.com | [43d 12-15 03:49:21.36 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [1] +peer1.org2.example.com | [455 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [421 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org2.example.com | [43e 12-15 03:49:21.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xaa, 0x80, 0xff, 0xc, 0x39, 0xaa, 0xa8, 0x8f, 0x5f, 0xc0, 0x97, 0xdb, 0x69, 0x4b, 0xab, 0xe6, 0x6c, 0xaa, 0x32, 0xc5, 0x62, 0x29, 0x98, 0xb, 0xb6, 0x72, 0x4f, 0xe1, 0x1e, 0xe7, 0xb5, 0x8f} txOffsets= +peer0.org1.example.com | [554 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org2.example.com | [456 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=12097 +peer1.org1.example.com | [422 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [555 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org2.example.com | [457 12-15 03:49:21.56 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | ] +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [423 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [556 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org2.example.com | [43f 12-15 03:49:21.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12197, bytesLength=12097] for tx ID: [] to index +peer1.org1.example.com | [424 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +peer1.org2.example.com | [458 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org1.example.com | [557 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [440 12-15 03:49:21.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12197, bytesLength=12097] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org1.example.com | [425 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +peer1.org2.example.com | [459 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org2.example.com | [441 12-15 03:49:21.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26088], isChainEmpty=[false], lastBlockNumber=[1] +peer1.org1.example.com | [426 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org2.example.com | [45a 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421d7b200 env 0xc422544330 txn 0 +peer0.org2.example.com | [442 12-15 03:49:21.36 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 1 +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +peer0.org1.example.com | [558 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [427 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org2.example.com | [45b 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422544330 +peer0.org2.example.com | [443 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 1 +peer0.org1.example.com | [559 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +peer1.org1.example.com | [428 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [444 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) +peer0.org1.example.com | [55a 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +peer0.org2.example.com | [445 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database +peer0.org1.example.com | [55b 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org1.example.com | [429 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org1.example.com | [55c 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +orderer.example.com | bqEi6/lY2kK0EtGRnA== +peer1.org2.example.com | [45c 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\275\214\315\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv\nzQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd\nibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv\nzjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg=\n-----END CERTIFICATE-----\n\022\030\364\221\264\365\214C\0376\201\201|Q\366?\331A\023\303\367WM\263\340;" +peer0.org2.example.com | [446 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [55d 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +peer1.org1.example.com | [42a 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [55e 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator +peer0.org2.example.com | [447 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [42b 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [55f 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer0.org2.example.com | [448 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer1.org2.example.com | [45d 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +orderer.example.com | [26e 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [42c 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [560 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org2.example.com | [449 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [45e 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [42d 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [561 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer1.org2.example.com | [45f 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 1e3da41845b92a1416cf3e4c523fc99cac9313f32163b269265dab0667463892} +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [44a 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database +peer0.org1.example.com | [562 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage +peer1.org1.example.com | [42e 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [460 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [44b 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +peer0.org1.example.com | [563 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [2] +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +peer1.org1.example.com | [42f 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +peer0.org2.example.com | [44c 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org1.example.com | [564 12-15 03:49:21.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x68, 0x6d, 0x91, 0xee, 0x2d, 0x0, 0xda, 0x9, 0x25, 0x18, 0x90, 0xe9, 0xa9, 0xb6, 0x90, 0xc8, 0x66, 0x89, 0xfe, 0xd7, 0x8a, 0xf7, 0x59, 0xb9, 0x69, 0xf9, 0xd8, 0xb0, 0x15, 0x8, 0x78, 0x54} txOffsets= +peer1.org2.example.com | [461 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [430 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [] marked as valid by state validator +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | txId= locPointer=offset=70, bytesLength=12155 +peer1.org2.example.com | [462 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422557000, header channel_header:"\010\001\032\006\010\275\214\315\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv\nzQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd\nibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv\nzjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg=\n-----END CERTIFICATE-----\n\022\030\364\221\264\365\214C\0376\201\201|Q\366?\331A\023\303\367WM\263\340;" +peer1.org1.example.com | [431 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer0.org2.example.com | [44d 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +peer0.org1.example.com | ] +peer1.org2.example.com | [463 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [432 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org1.example.com | [565 12-15 03:49:21.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26158, bytesLength=12155] for tx ID: [] to index +peer1.org2.example.com | [464 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +peer0.org2.example.com | [44e 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org1.example.com | [433 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org1.example.com | [566 12-15 03:49:21.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26158, bytesLength=12155] for tx number:[0] ID: [] to blockNumTranNum index +orderer.example.com | kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +peer1.org1.example.com | [434 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage +peer0.org1.example.com | [567 12-15 03:49:21.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40108], isChainEmpty=[false], lastBlockNumber=[2] +peer1.org2.example.com | [465 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org2.example.com | [44f 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org1.example.com | [435 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [1] +peer0.org1.example.com | [568 12-15 03:49:21.08 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 2 +peer1.org1.example.com | [436 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xaa, 0x80, 0xff, 0xc, 0x39, 0xaa, 0xa8, 0x8f, 0x5f, 0xc0, 0x97, 0xdb, 0x69, 0x4b, 0xab, 0xe6, 0x6c, 0xaa, 0x32, 0xc5, 0x62, 0x29, 0x98, 0xb, 0xb6, 0x72, 0x4f, 0xe1, 0x1e, 0xe7, 0xb5, 0x8f} txOffsets= +peer0.org1.example.com | [569 12-15 03:49:21.08 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 2 +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=12097 +peer1.org2.example.com | [466 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [56a 12-15 03:49:21.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [2] with 1 transaction(s) +orderer.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +peer0.org2.example.com | [450 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org1.example.com | ] +peer1.org2.example.com | [467 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [56b 12-15 03:49:21.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to state database +peer1.org1.example.com | [437 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12197, bytesLength=12097] for tx ID: [] to index +peer1.org2.example.com | [468 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +peer0.org1.example.com | [56c 12-15 03:49:21.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [451 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [438 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12197, bytesLength=12097] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org2.example.com | [469 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | bqEi6/lY2kK0EtGRnA== +peer0.org2.example.com | [452 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [56d 12-15 03:49:21.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [439 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26088], isChainEmpty=[false], lastBlockNumber=[1] +peer0.org2.example.com | [453 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [56e 12-15 03:49:21.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [46a 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [43a 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 1 +peer0.org1.example.com | [56f 12-15 03:49:21.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +orderer.example.com | [26f 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org1.example.com | [43b 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 1 +peer0.org2.example.com | [454 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [46b 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [570 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to history database +orderer.example.com | [270 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org1.example.com | [43c 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) +peer1.org2.example.com | [46c 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org2.example.com | [455 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [571 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +peer1.org1.example.com | [43d 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database +peer1.org1.example.com | [43e 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [456 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [43f 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [46d 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [572 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org2.example.com | [46e 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [457 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [440 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +orderer.example.com | [271 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [573 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +peer1.org1.example.com | [441 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [458 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org2.example.com | [46f 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [272 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [574 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org2.example.com | [459 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org1.example.com | [442 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database +peer1.org2.example.com | [470 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [273 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [443 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +peer0.org2.example.com | [45a 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421bed0e0 env 0xc4225b6cf0 txn 0 +peer1.org2.example.com | [471 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [274 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org2.example.com | [472 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [575 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org1.example.com | [444 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org2.example.com | [45b 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4225b6cf0 +peer1.org2.example.com | [473 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer0.org1.example.com | [576 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org1.example.com | [445 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +peer0.org2.example.com | [45c 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\275\214\315\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv\nzQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd\nibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv\nzjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg=\n-----END CERTIFICATE-----\n\022\030\364\221\264\365\214C\0376\201\201|Q\366?\331A\023\303\367WM\263\340;" +orderer.example.com | [275 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [474 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [577 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [446 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +orderer.example.com | [276 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org2.example.com | [475 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins +peer0.org2.example.com | [45d 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org1.example.com | [578 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [447 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org2.example.com | [476 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [45e 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [277 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org1.example.com | [579 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [448 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [477 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [45f 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 1e3da41845b92a1416cf3e4c523fc99cac9313f32163b269265dab0667463892} +peer0.org1.example.com | [57a 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | [278 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +peer1.org1.example.com | [449 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [460 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [478 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [57b 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | [279 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [44a 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [461 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [479 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [47a 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [47b 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | MIICQzCCAeqgAwIBAgIRAMt+4ybOK1r7B8eavLVTMBUwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [462 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4225ef000, header channel_header:"\010\001\032\006\010\275\214\315\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv\nzQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd\nibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv\nzjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg=\n-----END CERTIFICATE-----\n\022\030\364\221\264\365\214C\0376\201\201|Q\366?\331A\023\303\367WM\263\340;" +peer0.org1.example.com | [57c 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [44b 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [47c 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [463 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [57d 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [47d 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [464 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org1.example.com | [44c 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [57e 12-15 03:49:21.12 UTC] [github.com/hyperledger/fabric/gossip/comm] -> WARN peer1.org1.example.com:7051, PKIid:[241 117 78 6 153 149 24 255 168 205 32 55 19 249 86 148 151 96 62 243 83 216 19 59 184 36 81 218 69 41 226 155] isn't responsive: rpc error: code = Unavailable desc = transport: write tcp 172.21.0.6:7051->172.21.0.3:34794: write: broken pipe +peer1.org2.example.com | [47e 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [47f 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [44d 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +peer0.org2.example.com | [465 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [480 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org2.example.com | [466 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [481 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org1.example.com | [57f 12-15 03:49:21.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Entering [[241 117 78 6 153 149 24 255 168 205 32 55 19 249 86 148 151 96 62 243 83 216 19 59 184 36 81 218 69 41 226 155]] +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [482 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org1.example.com | [44e 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [467 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [483 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [580 12-15 03:49:21.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Closing connection to Endpoint: peer1.org1.example.com:7051, InternalEndpoint: peer1.org1.example.com:7051, PKI-ID: [241 117 78 6 153 149 24 255 168 205 32 55 19 249 86 148 151 96 62 243 83 216 19 59 184 36 81 218 69 41 226 155], Metadata: [] +peer1.org1.example.com | [44f 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +peer1.org2.example.com | [484 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [468 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [581 12-15 03:49:21.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Exiting +peer1.org1.example.com | [450 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org2.example.com | [485 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer0.org1.example.com | [582 12-15 03:49:22.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40914 +peer1.org2.example.com | [486 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | BPGrtJtHj1Ql02gq7I0ZQQKJwvtZhp0t3rCwF1cFILTHIBM4phJ/ZYJQa1lb12pO +peer1.org1.example.com | [451 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org2.example.com | [487 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [583 12-15 03:49:22.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422b43a40 +peer0.org2.example.com | [469 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [452 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421c30c20 env 0xc42219b980 txn 0 +peer1.org2.example.com | [488 12-15 03:49:21.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | sxSxuEvRGTFcZXtunUc0SeWjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer0.org1.example.com | [584 12-15 03:49:22.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [46a 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [489 12-15 03:49:21.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICSqVyrJerF7YoXDKKeV +peer0.org1.example.com | [585 12-15 03:49:22.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [453 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42219b980 +peer1.org2.example.com | [48a 12-15 03:49:21.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | 2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCIB+psiek7FqP18l1 +peer0.org1.example.com | [586 12-15 03:49:22.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +peer0.org2.example.com | [46b 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [48b 12-15 03:49:21.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [454 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\275\214\315\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv\nzQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd\nibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv\nzjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg=\n-----END CERTIFICATE-----\n\022\030\364\221\264\365\214C\0376\201\201|Q\366?\331A\023\303\367WM\263\340;" +orderer.example.com | 3s2anbtfpiGTHbAnm2BihpD9sRPjAiAIvsdyfn+nb2bCQBK6sodbO+LxSkuZulkP +peer0.org2.example.com | [46c 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [48c 12-15 03:49:21.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [587 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [455 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org2.example.com | [46d 12-15 03:49:21.37 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [48d 12-15 03:49:21.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [588 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | oMR3yCH/eA== +peer0.org2.example.com | [46e 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [456 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [48e 12-15 03:49:21.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [589 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422a9b9f0, header 0xc422b43a70 +peer0.org2.example.com | [46f 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer1.org1.example.com | [457 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 1e3da41845b92a1416cf3e4c523fc99cac9313f32163b269265dab0667463892} +peer1.org2.example.com | [48f 12-15 03:49:21.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | [27a 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [470 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [58a 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer1.org2.example.com | [490 12-15 03:49:21.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [458 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [58b 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce +peer0.org2.example.com | [471 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [491 12-15 03:49:21.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org1.example.com | [459 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [472 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [58c 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce] +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [473 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP +peer1.org1.example.com | [45a 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421d86000, header channel_header:"\010\001\032\006\010\275\214\315\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv\nzQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd\nibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv\nzjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg=\n-----END CERTIFICATE-----\n\022\030\364\221\264\365\214C\0376\201\201|Q\366?\331A\023\303\367WM\263\340;" +peer1.org2.example.com | [492 12-15 03:49:21.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +peer0.org1.example.com | [58d 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [45b 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer1.org2.example.com | [493 12-15 03:49:21.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [474 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [45c 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [494 12-15 03:49:21.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [58e 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce] +peer0.org2.example.com | [475 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [495 12-15 03:49:21.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org1.example.com | [45d 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [58f 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce channel id: businesschannel +peer0.org2.example.com | [476 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +peer0.org1.example.com | [590 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce channel id: businesschannel version: 1.1.0 +peer1.org2.example.com | [496 12-15 03:49:21.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org1.example.com | [45e 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +peer0.org2.example.com | [477 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [497 12-15 03:49:21.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [591 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.1.0,txid=a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce,syscc=true,proposal=0xc422a9b9f0,canname=cscc:1.1.0 +peer1.org1.example.com | [45f 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +peer0.org2.example.com | [478 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [592 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 +peer1.org1.example.com | [460 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +peer0.org2.example.com | [479 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [498 12-15 03:49:21.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [461 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +peer0.org2.example.com | [47a 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [593 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [499 12-15 03:49:21.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [462 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | N5+z/fTTfchGfLaCtzM= +peer1.org2.example.com | [49a 12-15 03:49:21.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [594 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +peer0.org2.example.com | [47b 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [463 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [47c 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [27b 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [49b 12-15 03:49:21.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer0.org1.example.com | [595 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a7260e5f]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [464 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [49c 12-15 03:49:21.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [596 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [465 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [47d 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [49d 12-15 03:49:21.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org1.example.com | [466 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [597 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [47e 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [49e 12-15 03:49:21.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [598 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a7260e5f]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [47f 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [467 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer0.org1.example.com | [599 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a7260e5f]Move state message TRANSACTION +peer1.org2.example.com | [49f 12-15 03:49:21.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +peer1.org1.example.com | [468 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [480 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org1.example.com | [59a 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a7260e5f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [4a0 12-15 03:49:21.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [469 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [481 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org1.example.com | [59b 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [46a 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [4a1 12-15 03:49:21.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [482 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org1.example.com | [59c 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a7260e5f]sending state message TRANSACTION +peer1.org2.example.com | [4a2 12-15 03:49:21.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [46b 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer0.org2.example.com | [483 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [59d 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a7260e5f]Received message TRANSACTION from shim +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +peer0.org1.example.com | [59e 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a7260e5f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [4a3 12-15 03:49:21.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [484 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [59f 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a7260e5f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [485 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +peer1.org1.example.com | [46c 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [486 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [5a0 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: GetConfigTree +peer1.org2.example.com | [4a4 12-15 03:49:21.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [5a1 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a7260e5f]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [46d 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +peer1.org2.example.com | [4a5 12-15 03:49:21.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [487 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [46e 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +peer0.org1.example.com | [5a2 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a7260e5f]Move state message COMPLETED +peer0.org2.example.com | [488 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [4a6 12-15 03:49:21.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [489 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +orderer.example.com | 8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +peer1.org2.example.com | [4a7 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org1.example.com | [46f 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [5a3 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a7260e5f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [4a8 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +orderer.example.com | N5+z/fTTfchGfLaCtzM= +peer0.org2.example.com | [48a 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [5a4 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a7260e5f]send state message COMPLETED +peer1.org1.example.com | [470 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [48b 12-15 03:49:21.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [4a9 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [5a5 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a7260e5f]Received message COMPLETED from shim +peer1.org1.example.com | [471 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [27c 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer1.org2.example.com | [4aa 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [48c 12-15 03:49:21.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [472 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer0.org1.example.com | [5a6 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a7260e5f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [4ab 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [27d 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +peer0.org2.example.com | [48d 12-15 03:49:21.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [473 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [27e 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +peer1.org2.example.com | [4ac 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [48e 12-15 03:49:21.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [5a7 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce]HandleMessage- COMPLETED. Notify +orderer.example.com | [27f 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +peer1.org1.example.com | [474 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [4ad 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [48f 12-15 03:49:21.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org1.example.com | [475 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [280 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +peer1.org2.example.com | [4ae 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [5a8 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce, channelID:businesschannel +peer0.org2.example.com | [490 12-15 03:49:21.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [476 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [281 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +peer1.org2.example.com | [4af 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer1.org1.example.com | [477 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [491 12-15 03:49:21.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [5a9 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [4b0 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [5aa 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [4b1 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org1.example.com | [478 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [282 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +peer0.org2.example.com | [492 12-15 03:49:21.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [5ab 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org2.example.com | [4b2 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org2.example.com | [493 12-15 03:49:21.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [283 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +peer1.org2.example.com | [4b3 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org1.example.com | [479 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org1.example.com | [5ac 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce] +orderer.example.com | [284 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +peer0.org2.example.com | [494 12-15 03:49:21.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [4b4 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org1.example.com | [47a 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org1.example.com | [5ad 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [495 12-15 03:49:21.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org2.example.com | [4b5 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [47b 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [5ae 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce channel id: businesschannel chaincode id: name:"cscc" +orderer.example.com | [285 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +peer1.org2.example.com | [4b6 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org2.example.com | [496 12-15 03:49:21.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org1.example.com | [47c 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [5af 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"cscc" is escc +orderer.example.com | [286 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +peer1.org2.example.com | [4b7 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org1.example.com | [47d 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [497 12-15 03:49:21.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [5b0 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce channel id: businesschannel version: 1.1.0 +peer1.org2.example.com | [4b8 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [287 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +peer0.org2.example.com | [498 12-15 03:49:21.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [47e 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [5b1 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce,syscc=true,proposal=0xc422a9b9f0,canname=escc:1.1.0 +orderer.example.com | [288 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +peer1.org2.example.com | [4b9 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org2.example.com | [499 12-15 03:49:21.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [47f 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [5b2 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +orderer.example.com | [289 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +peer0.org2.example.com | [49a 12-15 03:49:21.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [480 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [4ba 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | [28a 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +orderer.example.com | [28b 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +peer1.org1.example.com | [481 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org2.example.com | [4bb 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [5b3 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [49b 12-15 03:49:21.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer1.org1.example.com | [482 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [4bc 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [28c 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +peer1.org2.example.com | [4bd 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [5b4 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org2.example.com | [49c 12-15 03:49:21.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [5b5 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a7260e5f]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [49d 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org1.example.com | [483 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [28d 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +peer0.org1.example.com | [5b6 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [4be 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [28e 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +peer1.org1.example.com | [484 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [5b7 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [49e 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [4bf 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | [28f 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +peer1.org1.example.com | [485 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [49f 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [5b8 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a7260e5f]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [4c0 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [290 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +peer0.org2.example.com | [4a0 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [486 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [4c1 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [5b9 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a7260e5f]Move state message TRANSACTION +orderer.example.com | [291 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +peer0.org2.example.com | [4a1 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org2.example.com | [4c2 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [487 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org1.example.com | [5ba 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a7260e5f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [292 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org1.example.com | [488 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [4c3 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [293 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org1.example.com | [5bb 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [4c4 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org1.example.com | [489 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [4a2 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [294 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org1.example.com | [48a 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [4a3 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [5bc 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a7260e5f]sending state message TRANSACTION +peer1.org2.example.com | [4c5 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [295 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [5bd 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a7260e5f]Received message TRANSACTION from shim +peer0.org2.example.com | [4a4 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [48b 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org2.example.com | [4c6 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [5be 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a7260e5f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [48c 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [296 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [4c7 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [4a5 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [48d 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [297 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [5bf 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a7260e5f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [4c8 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org1.example.com | [48e 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [5c0 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org2.example.com | [4c9 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org1.example.com | [48f 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [298 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [4a6 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [5c1 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org2.example.com | [4ca 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org1.example.com | [5c2 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a7260e5f]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [490 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [299 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [4cb 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [4a7 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org1.example.com | [491 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org1.example.com | [5c3 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a7260e5f]Move state message COMPLETED +orderer.example.com | [29a 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [4cc 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org2.example.com | [4a8 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org1.example.com | [492 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [29b 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org2.example.com | [4a9 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org1.example.com | [493 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [29c 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [5c4 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a7260e5f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [4cd 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [4aa 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer1.org1.example.com | [494 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [29d 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org1.example.com | [5c5 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a7260e5f]send state message COMPLETED +peer0.org2.example.com | [4ab 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [495 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [4ce 12-15 03:49:21.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [29e 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org2.example.com | [4ac 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [496 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [4ad 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [29f 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org1.example.com | [497 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org2.example.com | [4ae 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [4cf 12-15 03:49:21.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [5c6 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a7260e5f]Received message COMPLETED from shim +orderer.example.com | [2a0 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [498 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [4af 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [2a1 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org1.example.com | [499 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [5c7 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a7260e5f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [4d0 12-15 03:49:21.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org2.example.com | [4b0 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | [2a2 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org1.example.com | [49a 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [4b1 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer1.org1.example.com | [49b 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [4d1 12-15 03:49:21.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [2a3 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org2.example.com | [4b2 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [49c 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [4d2 12-15 03:49:21.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [2a4 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [4b3 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [5c8 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [49d 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | [2a5 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [4b4 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [4d3 12-15 03:49:21.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org1.example.com | [49e 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [5c9 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce, channelID:businesschannel +orderer.example.com | [2a6 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [4b5 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org1.example.com | [49f 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [4d4 12-15 03:49:21.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [2a7 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [4b6 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [4a0 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +orderer.example.com | [2a8 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [4b7 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [4d5 12-15 03:49:21.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer0.org1.example.com | [5ca 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [4a1 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +orderer.example.com | [2a9 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [4b8 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [4d6 12-15 03:49:21.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +peer0.org1.example.com | [5cb 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [4b9 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org2.example.com | [4d7 12-15 03:49:21.63 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org1.example.com | [4a2 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [4ba 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [5cc 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [2aa 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [4bb 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [4a3 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [4d8 12-15 03:49:21.64 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +orderer.example.com | [2ab 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [5cd 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce] +peer0.org2.example.com | [4bc 12-15 03:49:21.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [2ac 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [4a4 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [4bd 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [4d9 12-15 03:49:21.64 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +orderer.example.com | [2ad 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org1.example.com | [4a5 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [4da 12-15 03:49:21.64 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org2.example.com | [4be 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org1.example.com | [4a6 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [2ae 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [5ce 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40914) +peer0.org2.example.com | [4bf 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [5cf 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40914 +orderer.example.com | [2af 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [4db 12-15 03:49:21.64 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org1.example.com | [4a7 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org1.example.com | [5d0 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422bc0300 +orderer.example.com | [2b0 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [4c0 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [5d1 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [4dc 12-15 03:49:21.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +orderer.example.com | [2b1 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [4a8 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [5d2 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [4c1 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org2.example.com | [4dd 12-15 03:49:21.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421d7b200 env 0xc422544330 txn 0 +peer1.org1.example.com | [4a9 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org1.example.com | [5d3 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +peer0.org2.example.com | [4c2 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +orderer.example.com | [2b2 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org1.example.com | [5d4 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [4de 12-15 03:49:21.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org1.example.com | [5d5 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [2b3 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org2.example.com | [4c3 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer1.org2.example.com | [4df 12-15 03:49:21.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org1.example.com | [5d6 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422bbe190, header 0xc422bc0330 +peer1.org1.example.com | [4aa 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +orderer.example.com | [2b4 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer0.org2.example.com | [4c4 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [4e0 12-15 03:49:21.64 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org1.example.com | [5d7 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer1.org1.example.com | [4ab 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [4e1 12-15 03:49:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] +orderer.example.com | [2b5 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org1.example.com | [4ac 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [5d8 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 +peer0.org2.example.com | [4c5 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [4e2 12-15 03:49:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [5d9 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] +peer1.org1.example.com | [4ad 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [2b6 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [4c6 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [5da 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [4e3 12-15 03:49:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] +peer0.org2.example.com | [4c7 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [4ae 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [5db 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] +peer1.org2.example.com | [4e4 12-15 03:49:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +orderer.example.com | [2b7 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [5dc 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 channel id: businesschannel +peer1.org2.example.com | [4e5 12-15 03:49:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer1.org1.example.com | [4af 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [5dd 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled +peer0.org2.example.com | [4c8 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org2.example.com | [4e6 12-15 03:49:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer1.org1.example.com | [4b0 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [2b8 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [5de 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 channel id: businesschannel version: 1.1.0 +peer1.org2.example.com | [4e7 12-15 03:49:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +orderer.example.com | [2b9 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.21.0.8:57092 +peer0.org1.example.com | [5df 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60,syscc=true,proposal=0xc422bbe190,canname=lscc:1.1.0 +peer0.org2.example.com | [4c9 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org2.example.com | [4e8 12-15 03:49:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [2ba 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [5e0 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer0.org2.example.com | [4ca 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | [2bb 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [4b1 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [5e1 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [4e9 12-15 03:49:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +peer0.org2.example.com | [4cb 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [4b2 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [5e2 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +orderer.example.com | [2bc 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [4ea 12-15 03:49:21.64 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer0.org2.example.com | [4cc 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org1.example.com | [5e3 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2364d4f5]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [4b3 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [2bd 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [4cd 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [5e4 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [2be 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [4eb 12-15 03:49:21.64 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +peer0.org1.example.com | [5e5 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [4ce 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org1.example.com | [4b4 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [4ec 12-15 03:49:21.64 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [5e6 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2364d4f5]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [2bf 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [4b5 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [4cf 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [2c0 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org1.example.com | [5e7 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Move state message TRANSACTION +peer0.org2.example.com | [4d0 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org2.example.com | [4ed 12-15 03:49:21.64 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [4b6 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [5e8 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [2c1 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [4ee 12-15 03:49:21.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org2.example.com | [4d1 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer1.org1.example.com | [4b7 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [4ef 12-15 03:49:21.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [5e9 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [2c2 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org1.example.com | [4b8 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer1.org2.example.com | [4f0 12-15 03:49:21.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [2c3 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [5ea 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]sending state message TRANSACTION +peer1.org1.example.com | [4b9 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [4f1 12-15 03:49:21.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [5eb 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2364d4f5]Received message TRANSACTION from shim +orderer.example.com | [2c4 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [4d2 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer1.org2.example.com | [4f2 12-15 03:49:21.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org1.example.com | [4ba 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [5ec 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2364d4f5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [4f3 12-15 03:49:21.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org2.example.com | [4d3 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org1.example.com | [4bb 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [5ed 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2364d4f5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [2c5 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [4f4 12-15 03:49:21.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [5ee 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [2364d4f5]Sending GET_STATE +peer1.org2.example.com | [4f5 12-15 03:49:21.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [4d4 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer1.org2.example.com | [4f6 12-15 03:49:21.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [2c6 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +peer1.org1.example.com | [4bc 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org1.example.com | [5ef 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Received message GET_STATE from shim +peer0.org2.example.com | [4d5 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer1.org2.example.com | [4f7 12-15 03:49:21.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [2c7 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org1.example.com | [4bd 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [5f0 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [4d6 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +peer1.org2.example.com | [4f8 12-15 03:49:21.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [2c8 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org1.example.com | [4be 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [5f1 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [2364d4f5]Received GET_STATE, invoking get state from ledger +peer0.org2.example.com | [4d7 12-15 03:49:21.41 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org2.example.com | [4f9 12-15 03:49:21.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [2c9 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org1.example.com | [4bf 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [4fa 12-15 03:49:21.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [2ca 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +peer1.org2.example.com | [4fb 12-15 03:49:21.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [5f2 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [4c0 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | [2cb 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [4d8 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org2.example.com | [4fc 12-15 03:49:21.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | MIICQzCCAemgAwIBAgIQShjAwe+6sxoSMZ8UrYKOcTAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | [5f3 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2364d4f5] getting state for chaincode lscc, key mycc, channel businesschannel +peer1.org2.example.com | [4fd 12-15 03:49:21.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [4d9 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org1.example.com | [5f4 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | [4c1 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org2.example.com | [4fe 12-15 03:49:21.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [4da 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org1.example.com | [4c2 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org2.example.com | [4ff 12-15 03:49:21.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [4db 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org1.example.com | [5f5 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2364d4f5]No state associated with key: +peer1.org2.example.com | [500 12-15 03:49:21.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa +peer0.org1.example.com | mycc. Sending RESPONSE with an empty payload +peer0.org2.example.com | [4dc 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer1.org1.example.com | [4c3 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org2.example.com | [501 12-15 03:49:21.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org1.example.com | [5f6 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [2364d4f5]handleGetState serial send RESPONSE +peer1.org1.example.com | [4c4 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org2.example.com | [4dd 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421bed0e0 env 0xc4225b6cf0 txn 0 +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer0.org1.example.com | [5f7 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2364d4f5]Received message RESPONSE from shim +peer1.org1.example.com | [4c5 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [502 12-15 03:49:21.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org1.example.com | [5f8 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2364d4f5]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org2.example.com | [4de 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer1.org1.example.com | [4c6 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org2.example.com | [503 12-15 03:49:21.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [4df 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org1.example.com | [5f9 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [2364d4f5]before send +peer1.org1.example.com | [4c7 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | GwyyfDLH07dFVkEvxJDGOKGevUcaYHphZvhzV78MBXVwIEGIENk7Zs8x+dx6iwIK +peer1.org2.example.com | [504 12-15 03:49:21.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [4e0 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org1.example.com | [5fa 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [2364d4f5]after send +orderer.example.com | LOGmXxq/Wqd4qLs6kFyZvqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer1.org2.example.com | [505 12-15 03:49:21.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [4e1 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] +peer0.org1.example.com | [5fb 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [2364d4f5]Received RESPONSE, communicated (state:ready) +peer1.org1.example.com | [4c8 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgsK9pE/plIOV10mqefUzE +peer1.org2.example.com | [506 12-15 03:49:21.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [4e2 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [4c9 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | vCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAL7xXrYD1fkzcpxi +peer0.org1.example.com | [5fc 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [2364d4f5]GetState received payload RESPONSE +peer1.org2.example.com | [507 12-15 03:49:21.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [5fd 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [2364d4f5]Sending PUT_STATE +peer1.org1.example.com | [4ca 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer0.org1.example.com | [5fe 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Received message PUT_STATE from shim +peer1.org2.example.com | [508 12-15 03:49:21.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer0.org2.example.com | [4e3 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] +peer1.org1.example.com | [4cb 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | yyZhFfEvMDWCoUicQw2b+c3GQ6OuAiA0KtNuH4yS4+c13W9Lsd28XNQK88FkwB2J +peer0.org1.example.com | [5ff 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer1.org2.example.com | [509 12-15 03:49:21.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org1.example.com | [4cc 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | QR9yhJE7rA== +peer0.org2.example.com | [4e4 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org1.example.com | [601 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2364d4f5]state is ready +peer1.org2.example.com | [50a 12-15 03:49:21.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [4cd 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer0.org2.example.com | [4e5 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer1.org2.example.com | [50b 12-15 03:49:21.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [602 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2364d4f5]Completed PUT_STATE. Sending RESPONSE +orderer.example.com | [2cc 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [50c 12-15 03:49:21.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org1.example.com | [4ce 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +peer0.org2.example.com | [4e6 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer0.org1.example.com | [603 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [2364d4f5]enterBusyState trigger event RESPONSE +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [50d 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer1.org1.example.com | [4cf 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/gossip/service] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateEndpoints -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found +peer0.org2.example.com | [4e7 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +peer0.org1.example.com | [600 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [50e 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [4d0 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org2.example.com | [4e8 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [604 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Move state message RESPONSE +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [50f 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [4d1 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer0.org2.example.com | [4e9 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +peer0.org1.example.com | [605 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +peer1.org2.example.com | [510 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [4d2 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org2.example.com | [4ea 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [606 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [511 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [4eb 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +peer1.org1.example.com | [4d3 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer1.org2.example.com | [512 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +peer0.org2.example.com | [4ec 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org1.example.com | [4d4 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org1.example.com | [607 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]sending state message RESPONSE +orderer.example.com | kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +peer0.org2.example.com | [4ed 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [608 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2364d4f5]Received message RESPONSE from shim +peer1.org1.example.com | [4d5 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer1.org2.example.com | [513 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +peer0.org2.example.com | [4ee 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [609 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2364d4f5]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org1.example.com | [4d6 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421c30c20 env 0xc42219b980 txn 0 +peer1.org2.example.com | [514 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +peer0.org2.example.com | [4ef 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [60a 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [2364d4f5]before send +peer1.org2.example.com | [515 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +peer0.org2.example.com | [4f0 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [4d7 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org1.example.com | [60b 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [2364d4f5]after send +orderer.example.com | bqEi6/lY2kK0EtGRnA== +peer1.org2.example.com | [516 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [4f1 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [60c 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [2364d4f5]Received RESPONSE, communicated (state:ready) +peer1.org1.example.com | [4d8 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [517 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [4f2 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org1.example.com | [60d 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [2364d4f5]Received RESPONSE. Successfully updated state +orderer.example.com | [2cd 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [4d9 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org2.example.com | [518 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org2.example.com | [4f3 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [60e 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2364d4f5]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [4f4 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [4da 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] +peer0.org1.example.com | [60f 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2364d4f5]Move state message COMPLETED +peer0.org2.example.com | [4f5 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [519 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [4f6 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +peer1.org2.example.com | [51a 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [4db 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [4f7 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [610 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2364d4f5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [4f8 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org2.example.com | [51b 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [4f9 12-15 03:49:21.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org1.example.com | [4dc 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] +peer0.org1.example.com | [611 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2364d4f5]send state message COMPLETED +peer1.org2.example.com | [51c 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +peer0.org2.example.com | [4fa 12-15 03:49:21.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [612 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Received message COMPLETED from shim +orderer.example.com | kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +peer0.org2.example.com | [4fb 12-15 03:49:21.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +peer0.org2.example.com | [4fc 12-15 03:49:21.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [4dd 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +orderer.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +peer1.org2.example.com | [51d 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [4fd 12-15 03:49:21.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +peer1.org1.example.com | [4de 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer0.org1.example.com | [613 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | bqEi6/lY2kK0EtGRnA== +peer1.org2.example.com | [51e 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [4df 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer0.org2.example.com | [4fe 12-15 03:49:21.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [614 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [51f 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [2ce 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org1.example.com | [4e0 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +peer0.org2.example.com | [4ff 12-15 03:49:21.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [615 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60, channelID:businesschannel +orderer.example.com | [2cf 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [520 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org1.example.com | [4e1 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [500 12-15 03:49:21.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org1.example.com | [616 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [2d0 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [521 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [2d1 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [2d2 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [501 12-15 03:49:21.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [617 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60,syscc=false,proposal=0xc422bbe190,canname=mycc:1.0 +peer1.org2.example.com | [522 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [4e2 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +orderer.example.com | [2d3 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer0.org2.example.com | [502 12-15 03:49:21.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [618 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU launchAndWaitForRegister fetched 1826 bytes from file system +peer1.org1.example.com | [4e3 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer1.org2.example.com | [523 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +orderer.example.com | [2d4 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [503 12-15 03:49:21.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [619 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched +orderer.example.com | [2d5 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org2.example.com | [504 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org2.example.com | [524 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +orderer.example.com | [2d6 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org2.example.com | [505 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [4e4 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +peer1.org2.example.com | [525 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [2d7 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +peer0.org1.example.com | [61a 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer1.org1.example.com | [4e5 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org2.example.com | [506 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [2d8 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [526 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org1.example.com | [4e6 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [61b 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org2.example.com | [507 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [4e7 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | MIICQzCCAeqgAwIBAgIRAMt+4ybOK1r7B8eavLVTMBUwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [61c 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=mycc:1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +peer0.org2.example.com | [508 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [527 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org1.example.com | [4e8 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [509 12-15 03:49:21.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [528 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [61d 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +peer1.org1.example.com | [4e9 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [529 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [61e 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer0.org1.example.com) +peer1.org1.example.com | [4ea 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [50a 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +peer0.org1.example.com | [61f 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer1.org1.example.com | [4eb 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org2.example.com | [52a 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [4ec 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [50b 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [620 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer1.org2.example.com | [52b 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [4ed 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +peer1.org2.example.com | [52c 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=mycc:1.0 +peer1.org1.example.com | [4ee 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [50c 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org2.example.com | [52d 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | [4ef 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [50d 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer1.org2.example.com | [52e 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org1.example.com | [4f0 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +orderer.example.com | BPGrtJtHj1Ql02gq7I0ZQQKJwvtZhp0t3rCwF1cFILTHIBM4phJ/ZYJQa1lb12pO +peer1.org2.example.com | [52f 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org1.example.com | [4f1 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org2.example.com | [50e 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | sxSxuEvRGTFcZXtunUc0SeWjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer1.org1.example.com | [4f2 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer0.org2.example.com | [50f 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [4f3 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICSqVyrJerF7YoXDKKeV +peer1.org2.example.com | [530 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org1.example.com | [4f4 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [510 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [531 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +orderer.example.com | 2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCIB+psiek7FqP18l1 +peer1.org1.example.com | [4f5 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [532 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | [533 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org1.example.com | [4f6 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [511 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [534 12-15 03:49:21.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +peer1.org1.example.com | [4f7 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | 3s2anbtfpiGTHbAnm2BihpD9sRPjAiAIvsdyfn+nb2bCQBK6sodbO+LxSkuZulkP +peer1.org2.example.com | [535 12-15 03:49:21.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +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 | [4f8 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | oMR3yCH/eA== +peer0.org2.example.com | [512 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [536 12-15 03:49:21.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [4f9 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org2.example.com | [537 12-15 03:49:21.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer0.org1.example.com | [621 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-mycc-1.0) lock +peer0.org2.example.com | [513 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer1.org2.example.com | [538 12-15 03:49:21.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org1.example.com | [622 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-mycc-1.0) lock +peer1.org1.example.com | [4fa 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [539 12-15 03:49:21.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org2.example.com | [514 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [623 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-mycc-1.0 +peer1.org2.example.com | [53a 12-15 03:49:21.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage +orderer.example.com | [2d9 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [53b 12-15 03:49:21.69 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [2] +peer1.org1.example.com | [4fb 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [515 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [624 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org1.example.com-mycc-1.0(No such container: dev-peer0.org1.example.com-mycc-1.0) +orderer.example.com | MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [53c 12-15 03:49:21.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x68, 0x6d, 0x91, 0xee, 0x2d, 0x0, 0xda, 0x9, 0x25, 0x18, 0x90, 0xe9, 0xa9, 0xb6, 0x90, 0xc8, 0x66, 0x89, 0xfe, 0xd7, 0x8a, 0xf7, 0x59, 0xb9, 0x69, 0xf9, 0xd8, 0xb0, 0x15, 0x8, 0x78, 0x54} txOffsets= +peer1.org1.example.com | [4fc 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [625 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org1.example.com-mycc-1.0 (No such container: dev-peer0.org1.example.com-mycc-1.0) +peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=12155 +peer0.org2.example.com | [516 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [4fd 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [626 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org1.example.com-mycc-1.0 (No such container: dev-peer0.org1.example.com-mycc-1.0) +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | ] +peer0.org2.example.com | [517 12-15 03:49:21.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [4fe 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [53d 12-15 03:49:21.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26158, bytesLength=12155] for tx ID: [] to index +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +peer0.org1.example.com | [627 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org1.example.com-mycc-1.0 +peer1.org2.example.com | [53e 12-15 03:49:21.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26158, bytesLength=12155] for tx number:[0] ID: [] to blockNumTranNum index +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [518 12-15 03:49:21.48 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org1.example.com | [4ff 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [53f 12-15 03:49:21.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40108], isChainEmpty=[false], lastBlockNumber=[2] +peer0.org1.example.com | [628 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [540 12-15 03:49:21.70 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 2 +peer0.org2.example.com | [519 12-15 03:49:21.48 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [629 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 +peer1.org1.example.com | [500 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [541 12-15 03:49:21.70 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 2 +peer0.org2.example.com | [51a 12-15 03:49:21.48 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +peer0.org2.example.com | [51b 12-15 03:49:21.48 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [501 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [542 12-15 03:49:21.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [2] with 1 transaction(s) +orderer.example.com | VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +peer1.org1.example.com | [502 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [51c 12-15 03:49:21.48 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org1.example.com | [62a 12-15 03:49:22.53 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 | [543 12-15 03:49:21.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to state database +peer1.org1.example.com | [503 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +peer1.org2.example.com | [544 12-15 03:49:21.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +orderer.example.com | YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +peer0.org2.example.com | [51d 12-15 03:49:21.48 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org1.example.com | [504 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org1.example.com | [505 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org2.example.com | [51e 12-15 03:49:21.48 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [62b 12-15 03:49:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +peer1.org2.example.com | [545 12-15 03:49:21.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | 8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +peer1.org1.example.com | [506 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [51f 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [546 12-15 03:49:21.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer0.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.4.2 +peer0.org2.example.com | [520 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org1.example.com | [507 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | ADD binpackage.tar /usr/local/bin +orderer.example.com | N5+z/fTTfchGfLaCtzM= +peer1.org2.example.com | [547 12-15 03:49:21.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [508 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [521 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [548 12-15 03:49:21.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to history database +peer0.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ +orderer.example.com | [2da 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [509 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [549 12-15 03:49:21.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +peer0.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +peer0.org2.example.com | [522 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [54a 12-15 03:49:21.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org2.example.com | [523 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [50a 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +peer1.org2.example.com | [54b 12-15 03:49:21.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +peer1.org1.example.com | [50b 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [524 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org1.example.com | org.hyperledger.fabric.version="1.1.0" \ +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [525 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [50c 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [54c 12-15 03:49:21.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | org.hyperledger.fabric.base.version="0.4.2" +peer1.org1.example.com | [50d 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +peer1.org2.example.com | [54d 12-15 03:49:21.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org2.example.com | [526 12-15 03:49:21.49 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.1.0 +peer1.org2.example.com | [54e 12-15 03:49:21.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [50e 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [62c 12-15 03:49:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' +peer0.org2.example.com | [527 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [54f 12-15 03:49:21.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [62d 12-15 03:49:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: +peer1.org1.example.com | [50f 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [528 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +peer0.org1.example.com | [62e 12-15 03:49:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.1.0 +peer0.org2.example.com | [529 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [550 12-15 03:49:21.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [510 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +peer0.org1.example.com | [62f 12-15 03:49:28.78 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 +peer0.org2.example.com | [52a 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org1.example.com | [511 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org1.example.com | [630 12-15 03:49:28.78 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +peer1.org2.example.com | [551 12-15 03:49:21.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +orderer.example.com | YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +peer1.org1.example.com | [512 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [52b 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | 8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +peer1.org1.example.com | [513 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [631 12-15 03:49:28.78 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 +peer1.org2.example.com | [552 12-15 03:49:21.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [52c 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [514 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | N5+z/fTTfchGfLaCtzM= +peer1.org2.example.com | [553 12-15 03:49:21.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [632 12-15 03:49:28.87 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 +peer0.org2.example.com | [52d 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org1.example.com | [633 12-15 03:49:30.04 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org1.example.com-mycc-1.0 +peer1.org1.example.com | [515 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [554 12-15 03:49:21.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [52e 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | [2db 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer1.org2.example.com | [555 12-15 03:49:21.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [516 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [634 12-15 03:49:30.04 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-mycc-1.0) +orderer.example.com | [2dc 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org2.example.com | [52f 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org1.example.com | [517 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org2.example.com | [556 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:36176 +peer1.org2.example.com | [557 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422d77ec0 +orderer.example.com | [2dd 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org1.example.com | [518 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [635 12-15 03:49:30.12 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.authenticate)-fm.authenticate -> DEBU Chaincode mycc:1.0 's authentication is authorized +peer0.org2.example.com | [530 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [558 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [531 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [2de 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org2.example.com | [559 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [636 12-15 03:49:30.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [637 12-15 03:49:30.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [638 12-15 03:49:30.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org2.example.com | [532 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org2.example.com | [533 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org2.example.com | [55a 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 73763341eb604cef734e4ac7c2ea77bc9d730c798fb96eb583c0637692a88acd} +peer1.org1.example.com | [519 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [534 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +peer0.org1.example.com | [639 12-15 03:49:30.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org2.example.com | [55b 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [51a 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [2df 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [535 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +peer1.org2.example.com | [55c 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [63a 12-15 03:49:30.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 +peer0.org1.example.com | [63b 12-15 03:49:30.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED +peer1.org1.example.com | [51b 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +orderer.example.com | [2e0 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org2.example.com | [55d 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422cfd220, header 0xc422d77ef0 +peer0.org2.example.com | [536 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator +peer0.org1.example.com | [63c 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org1.example.com | [51c 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [2e1 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [537 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org1.example.com | [51d 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org2.example.com | [55e 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org1.example.com | [63d 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed +peer0.org2.example.com | [538 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer1.org1.example.com | [51e 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +orderer.example.com | [2e2 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [55f 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: b90b4b0aa642d0764bbe8fe13f947f2e698be26330c827b11c3bba79702762a9 +peer0.org1.example.com | [63e 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org2.example.com | [539 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer1.org2.example.com | [560 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: b90b4b0aa642d0764bbe8fe13f947f2e698be26330c827b11c3bba79702762a9 channel id: +peer1.org1.example.com | [51f 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org2.example.com | [53a 12-15 03:49:21.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage +orderer.example.com | [2e3 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [561 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled +peer0.org2.example.com | [53b 12-15 03:49:21.52 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [2] +peer1.org1.example.com | [520 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [63f 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [562 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b90b4b0aa642d0764bbe8fe13f947f2e698be26330c827b11c3bba79702762a9 channel id: version: 1.1.0 +orderer.example.com | [2e4 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [53c 12-15 03:49:21.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x68, 0x6d, 0x91, 0xee, 0x2d, 0x0, 0xda, 0x9, 0x25, 0x18, 0x90, 0xe9, 0xa9, 0xb6, 0x90, 0xc8, 0x66, 0x89, 0xfe, 0xd7, 0x8a, 0xf7, 0x59, 0xb9, 0x69, 0xf9, 0xd8, 0xb0, 0x15, 0x8, 0x78, 0x54} txOffsets= +peer1.org1.example.com | [521 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [563 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=b90b4b0aa642d0764bbe8fe13f947f2e698be26330c827b11c3bba79702762a9,syscc=true,proposal=0xc422cfd220,canname=lscc:1.1.0 +orderer.example.com | [2e5 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=12155 +peer0.org1.example.com | [640 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [564 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer0.org2.example.com | ] +peer0.org1.example.com | [641 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Move state message READY +peer1.org1.example.com | [522 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [2e6 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org2.example.com | [565 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [53d 12-15 03:49:21.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26158, bytesLength=12155] for tx ID: [] to index +peer0.org1.example.com | [642 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [523 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org2.example.com | [53e 12-15 03:49:21.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26158, bytesLength=12155] for tx number:[0] ID: [] to blockNumTranNum index +orderer.example.com | [2e7 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org1.example.com | [643 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [2364d4f5]Entered state ready +peer1.org2.example.com | [566 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer0.org2.example.com | [53f 12-15 03:49:21.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40108], isChainEmpty=[false], lastBlockNumber=[2] +peer1.org1.example.com | [524 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org1.example.com | [644 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60, channelID:businesschannel +peer0.org2.example.com | [540 12-15 03:49:21.52 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 2 +peer1.org1.example.com | [525 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer0.org1.example.com | [645 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]sending state message READY +peer1.org2.example.com | [567 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b90b4b0a]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [2e8 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +peer0.org2.example.com | [541 12-15 03:49:21.52 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 2 +peer1.org1.example.com | [526 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org1.example.com | [646 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU sending init completed +peer1.org1.example.com | [527 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [542 12-15 03:49:21.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [2] with 1 transaction(s) +peer1.org2.example.com | [568 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [528 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +orderer.example.com | [2e9 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [647 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | [543 12-15 03:49:21.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to state database +peer1.org2.example.com | [569 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [529 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | MIICLzCCAdWgAwIBAgIQGXf5zEgjlejkE1rJW2znwDAKBggqhkjOPQQDAjBpMQsw +peer0.org2.example.com | [544 12-15 03:49:21.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [56a 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b90b4b0a]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [52a 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [648 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Entry +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [56b 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b90b4b0a]Move state message TRANSACTION +peer1.org1.example.com | [52b 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [649 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +peer0.org2.example.com | [545 12-15 03:49:21.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [56c 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b90b4b0a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [52c 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org1.example.com | [52d 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +peer0.org2.example.com | [546 12-15 03:49:21.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer1.org1.example.com | [52e 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +peer1.org2.example.com | [56d 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [64a 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [2364d4f5]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [52f 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowaTELMAkGA1UE +peer0.org2.example.com | [547 12-15 03:49:21.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [56e 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b90b4b0a]sending state message TRANSACTION +peer0.org1.example.com | [64b 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [530 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org2.example.com | [56f 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b90b4b0a]Received message TRANSACTION from shim +peer0.org2.example.com | [548 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to history database +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [64c 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [531 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +peer1.org2.example.com | [570 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b90b4b0a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [64d 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [2364d4f5]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [549 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +peer1.org1.example.com | [532 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org1.example.com | [64e 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Move state message INIT +peer1.org2.example.com | [571 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b90b4b0a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [54a 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFSKPRsXnXvaTTqRKjkTRYYoPjGg +peer1.org1.example.com | [533 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage +peer0.org1.example.com | [64f 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [572 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b90b4b0a]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [54b 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +peer0.org1.example.com | [650 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | TgXRAoMQwI+9AaLXTSL+AsApwlxedr+PJ+UgfBNcxey226YSZRJqLeiH/TajXzBd +peer1.org2.example.com | [573 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b90b4b0a]Move state message COMPLETED +peer1.org1.example.com | [534 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [2] +peer0.org2.example.com | [54c 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | [651 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]sending state message INIT +peer1.org2.example.com | [574 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b90b4b0a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +peer1.org1.example.com | [535 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x68, 0x6d, 0x91, 0xee, 0x2d, 0x0, 0xda, 0x9, 0x25, 0x18, 0x90, 0xe9, 0xa9, 0xb6, 0x90, 0xc8, 0x66, 0x89, 0xfe, 0xd7, 0x8a, 0xf7, 0x59, 0xb9, 0x69, 0xf9, 0xd8, 0xb0, 0x15, 0x8, 0x78, 0x54} txOffsets= +peer0.org1.example.com | [652 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Received message PUT_STATE from shim +peer0.org2.example.com | [54d 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org1.example.com | [653 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer1.org2.example.com | [575 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b90b4b0a]send state message COMPLETED +orderer.example.com | Af8wKQYDVR0OBCIEIPxyg8RiuCl5W+wOoXUqeRhWBcR2XF2JtWJ5qtJMQ3Y1MAoG +peer0.org2.example.com | [54e 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [654 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [576 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b90b4b0a]Received message COMPLETED from shim +orderer.example.com | CCqGSM49BAMCA0gAMEUCIQCoRrlZYPh0Qnsp3Z9KitmTDkRqi6JyR4RLiOyfv8Tf +peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=12155 +peer0.org1.example.com | [655 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2364d4f5]state is ready +peer0.org2.example.com | [54f 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | QgIgdHbFqXGTZ0HFQmknUFd5DD4TTltv8Ijmfm8J1skS4jc= +peer1.org2.example.com | [577 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b90b4b0a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | ] +peer0.org1.example.com | [656 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2364d4f5]Completed PUT_STATE. Sending RESPONSE +peer1.org2.example.com | [578 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b90b4b0aa642d0764bbe8fe13f947f2e698be26330c827b11c3bba79702762a9]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [550 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [536 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26158, bytesLength=12155] for tx ID: [] to index +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [657 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [2364d4f5]enterBusyState trigger event RESPONSE +peer1.org2.example.com | [579 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b90b4b0aa642d0764bbe8fe13f947f2e698be26330c827b11c3bba79702762a9, channelID: +peer0.org2.example.com | [551 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [537 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26158, bytesLength=12155] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org1.example.com | [658 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Move state message RESPONSE +orderer.example.com | [2ea 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [57a 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [552 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [659 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +orderer.example.com | MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +peer1.org1.example.com | [538 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40108], isChainEmpty=[false], lastBlockNumber=[2] +peer0.org1.example.com | [65a 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [539 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 2 +peer0.org1.example.com | [65b 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]sending state message RESPONSE +peer1.org2.example.com | [57b 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [553 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [65c 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Received message PUT_STATE from shim +peer1.org1.example.com | [53a 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 2 +peer0.org2.example.com | [554 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [65d 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org2.example.com | [57c 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [555 12-15 03:49:21.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [65e 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +peer1.org2.example.com | [57d 12-15 03:49:22.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:36176) +peer0.org1.example.com | [65f 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2364d4f5]state is ready +peer1.org1.example.com | [53b 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [2] with 1 transaction(s) +peer0.org2.example.com | [556 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:58178 +peer1.org2.example.com | [57e 12-15 03:49:23.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg -> WARN StateInfo message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\361uN\006\231\225\030\377\250\315 7\023\371V\224\227`>\363S\330\023;\270$Q\332E)\342\233" channel_MAC:",\307E3\272\205_\347u\255B\337\324-Yl\372\357\n\320\350\227\006\201w\255\367`%M\303\334" properties: > , Envelope: 109 bytes, Signature: 71 bytes is found invalid: PKIID wasn't found +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [660 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2364d4f5]Completed PUT_STATE. Sending RESPONSE +peer1.org2.example.com | [57f 12-15 03:49:23.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\361uN\006\231\225\030\377\250\315 7\023\371V\224\227`>\363S\330\023;\270$Q\332E)\342\233" channel_MAC:",\307E3\272\205_\347u\255B\337\324-Yl\372\357\n\320\350\227\006\201w\255\367`%M\303\334" properties: > , Envelope: 109 bytes, Signature: 71 bytes isn't valid +peer1.org1.example.com | [53c 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to state database +peer0.org1.example.com | [661 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [2364d4f5]enterBusyState trigger event RESPONSE +peer0.org2.example.com | [557 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422c68ff0 +peer1.org2.example.com | [580 12-15 03:49:23.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:EMPTY alive_msg:\363S\330\023;\270$Q\332E)\342\233" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes isn't valid +peer1.org1.example.com | [53d 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org1.example.com | [662 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Move state message RESPONSE +peer1.org2.example.com | [581 12-15 03:49:23.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:EMPTY alive_msg:\363S\330\023;\270$Q\332E)\342\233" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes isn't valid +peer0.org2.example.com | [558 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [663 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer1.org1.example.com | [53e 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +peer0.org1.example.com | [664 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [559 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [582 12-15 03:49:23.41 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer �uN����� 7�V��`>�S�;�$Q�E)�� message sent from l�r1k�v�y� R��Z9~$���‹Ć +peer1.org1.example.com | [53f 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer0.org2.example.com | [55a 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 73763341eb604cef734e4ac7c2ea77bc9d730c798fb96eb583c0637692a88acd} +peer0.org2.example.com | [55b 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | �a +orderer.example.com | ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org1.example.com | [540 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [55c 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [665 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]sending state message RESPONSE +peer1.org1.example.com | [541 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to history database +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +peer0.org1.example.com | [666 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Received message COMPLETED from shim +peer1.org2.example.com | [583 12-15 03:49:23.41 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer �uN����� 7�V��`>�S�;�$Q�E)�� message sent from m�� ���h,^]�����tq���"�}�5�qA +peer1.org1.example.com | [542 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +peer1.org2.example.com | [584 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] +orderer.example.com | Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +peer0.org2.example.com | [55d 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422afb8b0, header 0xc422c69020 +peer0.org1.example.com | [667 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [543 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org2.example.com | [55e 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +orderer.example.com | sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +peer0.org1.example.com | [668 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [544 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +peer1.org2.example.com | [585 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] +peer0.org2.example.com | [55f 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 90cadb653bc82ff533c7efc60684906456e9e0a49c0a4e035195f0364f4ba666 +peer0.org1.example.com | [669 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60, channelID:businesschannel +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [545 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org2.example.com | [586 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org2.example.com | [560 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 90cadb653bc82ff533c7efc60684906456e9e0a49c0a4e035195f0364f4ba666 channel id: +peer0.org1.example.com | [66a 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [546 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +orderer.example.com | [2eb 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [587 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org1.example.com | [547 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [561 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled +peer0.org1.example.com | [66b 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +peer1.org1.example.com | [548 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [66c 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org2.example.com | [562 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 90cadb653bc82ff533c7efc60684906456e9e0a49c0a4e035195f0364f4ba666 channel id: version: 1.1.0 +peer1.org2.example.com | [588 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4228e4140 env 0xc420356de0 txn 0 +peer1.org1.example.com | [549 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [66d 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] +peer0.org2.example.com | [563 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=90cadb653bc82ff533c7efc60684906456e9e0a49c0a4e035195f0364f4ba666,syscc=true,proposal=0xc422afb8b0,canname=lscc:1.1.0 +peer1.org1.example.com | [54a 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [589 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc420356de0 +peer0.org2.example.com | [564 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer0.org1.example.com | [66e 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org1.example.com | [54b 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [58a 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\302\214\315\321\005\020\330\373\345\362\001\"\017businesschannel*@2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A\nkokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl\nddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx\nOfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc\nbqEi6/lY2kK0EtGRnA==\n-----END CERTIFICATE-----\n\022\030\360\322\223\024\006\367v)\004\2763}\343\325\211>u\207\006\206\303J\267&" +peer0.org1.example.com | [66f 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 channel id: businesschannel chaincode id: name:"lscc" +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +peer0.org2.example.com | [565 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [58b 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [670 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +peer1.org1.example.com | [54c 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [566 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer0.org1.example.com | [671 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 channel id: businesschannel version: 1.1.0 +peer1.org2.example.com | [58c 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org1.example.com | [54d 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [672 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60,syscc=true,proposal=0xc422bbe190,canname=escc:1.1.0 +peer1.org2.example.com | [58d 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +orderer.example.com | zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +peer0.org2.example.com | [567 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [90cadb65]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [54e 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [673 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer1.org2.example.com | [58e 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org2.example.com | [568 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [54f 12-15 03:49:21.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:41248 +peer0.org1.example.com | [674 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [58f 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +peer0.org2.example.com | [569 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [550 12-15 03:49:21.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422dd8b10 +peer1.org2.example.com | [590 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4226b5500, header channel_header:"\010\003\032\014\010\302\214\315\321\005\020\330\373\345\362\001\"\017businesschannel*@2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A\nkokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl\nddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx\nOfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc\nbqEi6/lY2kK0EtGRnA==\n-----END CERTIFICATE-----\n\022\030\360\322\223\024\006\367v)\004\2763}\343\325\211>u\207\006\206\303J\267&" +peer0.org1.example.com | [675 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +orderer.example.com | Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +peer1.org1.example.com | [551 12-15 03:49:21.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +peer1.org1.example.com | [552 12-15 03:49:21.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [676 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2364d4f5]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [56a 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [90cadb65]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [553 12-15 03:49:21.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +peer1.org2.example.com | [591 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [677 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [56b 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90cadb65]Move state message TRANSACTION +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [592 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [678 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [554 12-15 03:49:21.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [56c 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [90cadb65]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [593 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +orderer.example.com | [2ec 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org1.example.com | [679 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2364d4f5]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [555 12-15 03:49:21.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [594 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer0.org2.example.com | [56d 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [2ed 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +peer1.org1.example.com | [556 12-15 03:49:21.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422d43a90, header 0xc422dd8b40 +peer0.org1.example.com | [67a 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Move state message TRANSACTION +peer1.org2.example.com | [595 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] +peer0.org2.example.com | [56e 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90cadb65]sending state message TRANSACTION +peer1.org1.example.com | [557 12-15 03:49:21.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer1.org2.example.com | [596 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +orderer.example.com | [2ee 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +peer0.org1.example.com | [67b 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [558 12-15 03:49:21.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 2c0cff126c8e05ffbdc642bf66cc994f700cfd7ae36a919cde0e918a45ffe832 +peer1.org2.example.com | [597 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc420356de0 envbytes 0xc421ed4000 +peer0.org1.example.com | [67c 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [56f 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90cadb65]Received message TRANSACTION from shim +orderer.example.com | [2ef 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +peer1.org1.example.com | [559 12-15 03:49:21.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 2c0cff126c8e05ffbdc642bf66cc994f700cfd7ae36a919cde0e918a45ffe832 channel id: +peer1.org2.example.com | [598 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc421ed4000 +peer0.org2.example.com | [570 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90cadb65]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [67d 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]sending state message TRANSACTION +peer1.org1.example.com | [55a 12-15 03:49:21.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled +orderer.example.com | [2f0 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +peer0.org2.example.com | [571 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [90cadb65]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [599 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [67e 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2364d4f5]Received message TRANSACTION from shim +peer1.org1.example.com | [55b 12-15 03:49:21.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 2c0cff126c8e05ffbdc642bf66cc994f700cfd7ae36a919cde0e918a45ffe832 channel id: version: 1.1.0 +peer0.org1.example.com | [67f 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2364d4f5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [2f1 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +peer0.org2.example.com | [572 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90cadb65]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [55c 12-15 03:49:21.13 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=2c0cff126c8e05ffbdc642bf66cc994f700cfd7ae36a919cde0e918a45ffe832,syscc=true,proposal=0xc422d43a90,canname=lscc:1.1.0 +peer1.org2.example.com | [59a 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] +peer0.org1.example.com | [680 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2364d4f5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [2f2 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +peer0.org1.example.com | [681 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org2.example.com | [59b 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=312cdc36-c0c6-46f6-affd-6aafbda17312,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer1.org1.example.com | [55d 12-15 03:49:21.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +orderer.example.com | [2f3 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +peer0.org2.example.com | [573 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90cadb65]Move state message COMPLETED +orderer.example.com | [2f4 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +peer0.org1.example.com | [682 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org2.example.com | [59c 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 chaindID businesschannel +peer1.org1.example.com | [55e 12-15 03:49:21.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [2f5 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +peer0.org2.example.com | [574 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90cadb65]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [55f 12-15 03:49:21.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer0.org1.example.com | [683 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2364d4f5]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [59d 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +orderer.example.com | [2f6 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +peer0.org1.example.com | [684 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2364d4f5]Move state message COMPLETED +peer1.org1.example.com | [560 12-15 03:49:21.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2c0cff12]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [575 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90cadb65]send state message COMPLETED +peer1.org2.example.com | [59e 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [2f7 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +peer1.org1.example.com | [561 12-15 03:49:21.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [685 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2364d4f5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [59f 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer0.org2.example.com | [576 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90cadb65]Received message COMPLETED from shim +peer0.org1.example.com | [686 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2364d4f5]send state message COMPLETED +peer1.org1.example.com | [562 12-15 03:49:21.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [2f8 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +peer1.org2.example.com | [5a0 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [312cdc36]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [577 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [90cadb65]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [687 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Received message COMPLETED from shim +peer1.org2.example.com | [5a1 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [578 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [90cadb653bc82ff533c7efc60684906456e9e0a49c0a4e035195f0364f4ba666]HandleMessage- COMPLETED. Notify +orderer.example.com | [2f9 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +peer1.org2.example.com | [5a2 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [312cdc36]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [688 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [563 12-15 03:49:21.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2c0cff12]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [5a3 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [312cdc36]Move state message TRANSACTION +peer0.org2.example.com | [579 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:90cadb653bc82ff533c7efc60684906456e9e0a49c0a4e035195f0364f4ba666, channelID: +orderer.example.com | [2fa 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +peer0.org1.example.com | [689 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [5a4 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [312cdc36]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [564 12-15 03:49:21.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2c0cff12]Move state message TRANSACTION +peer0.org2.example.com | [57a 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [2fb 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +peer1.org2.example.com | [5a5 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [68a 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60, channelID:businesschannel +peer1.org1.example.com | [565 12-15 03:49:21.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2c0cff12]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [5a6 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [312cdc36]sending state message TRANSACTION +peer0.org2.example.com | [57b 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [2fc 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +peer0.org1.example.com | [68b 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [566 12-15 03:49:21.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [5a7 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [312cdc36]Received message TRANSACTION from shim +orderer.example.com | [2fd 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +peer0.org1.example.com | [68c 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [567 12-15 03:49:21.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2c0cff12]sending state message TRANSACTION +peer1.org2.example.com | [5a8 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [312cdc36]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [68d 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org2.example.com | [57c 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org1.example.com | [568 12-15 03:49:21.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2c0cff12]Received message TRANSACTION from shim +orderer.example.com | [2fe 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +peer1.org2.example.com | [5a9 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [312cdc36]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [57d 12-15 03:49:21.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:58178) +peer0.org1.example.com | [68e 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] +orderer.example.com | [2ff 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +peer1.org1.example.com | [569 12-15 03:49:21.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2c0cff12]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [5aa 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org1.example.com | [68f 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40914) +peer0.org2.example.com | [57e 12-15 03:49:26.24 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Entering +peer1.org1.example.com | [56a 12-15 03:49:21.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2c0cff12]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [5ab 12-15 03:49:32.18 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 | [300 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +peer0.org1.example.com | [690 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] +peer1.org2.example.com | [5ac 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer0.org2.example.com | [57f 12-15 03:49:26.24 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Exiting +peer0.org1.example.com | [691 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] +orderer.example.com | [301 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +peer1.org1.example.com | [56b 12-15 03:49:21.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2c0cff12]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [5ad 12-15 03:49:32.18 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [302 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [692 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +orderer.example.com | [303 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org2.example.com | [5ae 12-15 03:49:32.18 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [56c 12-15 03:49:21.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2c0cff12]Move state message COMPLETED +peer1.org2.example.com | [5af 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer0.org1.example.com | [693 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +orderer.example.com | [304 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org1.example.com | [56d 12-15 03:49:21.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2c0cff12]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [5b0 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [2bd1630b-4a9f-4942-a8c4-d524c7aa5d60] +peer0.org2.example.com | [580 12-15 03:49:26.24 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel -> DEBU This peer will stop pass blocks from orderer service to other peers +peer0.org1.example.com | [694 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421dd8440 env 0xc421b84900 txn 0 +orderer.example.com | [305 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [56e 12-15 03:49:21.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2c0cff12]send state message COMPLETED +peer1.org2.example.com | [5b1 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [695 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421b84900 +peer0.org2.example.com | [581 12-15 03:49:26.24 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Entering +orderer.example.com | [306 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [5b2 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [2bd1630b-4a9f-4942-a8c4-d524c7aa5d60] +peer0.org2.example.com | [582 12-15 03:49:26.24 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Exiting +peer0.org1.example.com | [696 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\302\214\315\321\005\020\330\373\345\362\001\"\017businesschannel*@2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A\nkokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl\nddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx\nOfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc\nbqEi6/lY2kK0EtGRnA==\n-----END CERTIFICATE-----\n\022\030\360\322\223\024\006\367v)\004\2763}\343\325\211>u\207\006\206\303J\267&" +peer1.org2.example.com | [5b3 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +peer1.org1.example.com | [56f 12-15 03:49:21.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2c0cff12]Received message COMPLETED from shim +orderer.example.com | [307 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [5b4 12-15 03:49:32.18 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)(0x990ba0), deserializer:(*msp.mspManagerImpl)(0xc4226e8fa0)} +peer1.org1.example.com | [570 12-15 03:49:21.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2c0cff12]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [583 12-15 03:49:26.24 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try -> WARN Got error: rpc error: code = Unavailable desc = transport is closing ,at 1 attempt. Retrying in 1s +peer0.org1.example.com | [697 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [308 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [5b5 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org2.example.com | [584 12-15 03:49:26.24 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> WARN [businesschannel] Receive error: Client is closing +peer0.org1.example.com | [698 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [571 12-15 03:49:21.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2c0cff126c8e05ffbdc642bf66cc994f700cfd7ae36a919cde0e918a45ffe832]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [585 12-15 03:49:26.24 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Entering +orderer.example.com | [309 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org1.example.com | [699 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +peer1.org2.example.com | [5b6 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [312cdc36]Transaction completed. Sending COMPLETED +orderer.example.com | [30a 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [69a 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [586 12-15 03:49:26.24 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Exiting +peer1.org1.example.com | [572 12-15 03:49:21.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:2c0cff126c8e05ffbdc642bf66cc994f700cfd7ae36a919cde0e918a45ffe832, channelID: +peer1.org2.example.com | [5b7 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [312cdc36]Move state message COMPLETED +orderer.example.com | [30b 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org2.example.com | [587 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:58214 +peer0.org1.example.com | [69b 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [573 12-15 03:49:21.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [5b8 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [312cdc36]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [574 12-15 03:49:21.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [588 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421baa840 +orderer.example.com | [30c 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org1.example.com | [69c 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422478000, header channel_header:"\010\003\032\014\010\302\214\315\321\005\020\330\373\345\362\001\"\017businesschannel*@2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A\nkokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl\nddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx\nOfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc\nbqEi6/lY2kK0EtGRnA==\n-----END CERTIFICATE-----\n\022\030\360\322\223\024\006\367v)\004\2763}\343\325\211>u\207\006\206\303J\267&" +peer1.org2.example.com | [5b9 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [312cdc36]send state message COMPLETED +peer1.org1.example.com | [575 12-15 03:49:21.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [30d 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [69d 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org2.example.com | [5ba 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [312cdc36]Received message COMPLETED from shim +peer1.org1.example.com | [576 12-15 03:49:21.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:41248) +peer0.org2.example.com | [589 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [69e 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +orderer.example.com | [30e 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [5bb 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [312cdc36]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [577 12-15 03:49:22.59 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 | [58a 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [69f 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org2.example.com | [5bc 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [312cdc36-c0c6-46f6-affd-6aafbda17312]HandleMessage- COMPLETED. Notify +orderer.example.com | [30f 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org2.example.com | [58b 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 73763341eb604cef734e4ac7c2ea77bc9d730c798fb96eb583c0637692a88acd} +peer1.org2.example.com | [5bd 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:312cdc36-c0c6-46f6-affd-6aafbda17312, channelID:businesschannel +peer0.org1.example.com | [6a0 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [578 12-15 03:49:22.59 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 | [58c 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [310 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [579 12-15 03:49:23.03 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer �P ��C����a���zէ���Y1��p� message sent from l�r1k�v�y� R��Z9~$���‹Ć +peer0.org2.example.com | [58d 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [5be 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [58e 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421afa320, header 0xc421baa870 +orderer.example.com | [311 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org1.example.com | �a +peer1.org2.example.com | [5bf 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] +orderer.example.com | [312 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [6a1 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] +peer0.org2.example.com | [58f 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer1.org1.example.com | [57a 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +orderer.example.com | [313 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [6a2 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer0.org2.example.com | [590 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 00465bd6aaee8c7bd73c50086f70fb16a573a401d95a634523df2fbf3fd6b0bb +peer1.org2.example.com | [5c0 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc421ed4000 +peer0.org1.example.com | [6a3 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc421b84900 envbytes 0xc42294b600 +peer1.org1.example.com | [57b 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +orderer.example.com | [314 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [5c1 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc420356de0 envbytes 0xc421ed4000 +peer0.org2.example.com | [591 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [00465bd6aaee8c7bd73c50086f70fb16a573a401d95a634523df2fbf3fd6b0bb] +peer1.org1.example.com | [57c 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42276e080 env 0xc4203781e0 txn 0 +peer0.org1.example.com | [6a4 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc42294b600 +orderer.example.com | [315 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [57d 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4203781e0 +peer1.org2.example.com | [5c2 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4228e4140 env 0xc420356de0 txn 0 +peer0.org2.example.com | [592 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [6a5 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [5c3 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer1.org2.example.com | [5c4 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +orderer.example.com | [316 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [57e 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\302\214\315\321\005\020\330\373\345\362\001\"\017businesschannel*@2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A\nkokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl\nddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx\nOfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc\nbqEi6/lY2kK0EtGRnA==\n-----END CERTIFICATE-----\n\022\030\360\322\223\024\006\367v)\004\2763}\343\325\211>u\207\006\206\303J\267&" +peer1.org2.example.com | [5c5 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] +peer0.org2.example.com | [593 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [00465bd6aaee8c7bd73c50086f70fb16a573a401d95a634523df2fbf3fd6b0bb] +peer1.org1.example.com | [57f 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [317 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [6a6 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] +peer1.org2.example.com | [5c6 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [580 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [594 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 00465bd6aaee8c7bd73c50086f70fb16a573a401d95a634523df2fbf3fd6b0bb channel id: businesschannel +orderer.example.com | [318 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [6a7 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=cd0b29fb-dc46-4272-9d78-7ab610397024,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer1.org1.example.com | [581 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +peer1.org2.example.com | [5c7 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [3] +peer0.org2.example.com | [595 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 00465bd6aaee8c7bd73c50086f70fb16a573a401d95a634523df2fbf3fd6b0bb channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [6a8 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 chaindID businesschannel +orderer.example.com | [319 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [582 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [596 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.1.0,txid=00465bd6aaee8c7bd73c50086f70fb16a573a401d95a634523df2fbf3fd6b0bb,syscc=true,proposal=0xc421afa320,canname=cscc:1.1.0 +orderer.example.com | [31a 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [5c8 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org1.example.com | [6a9 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer0.org2.example.com | [597 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 +peer1.org1.example.com | [583 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [6aa 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [31b 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [5c9 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +peer1.org1.example.com | [584 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42260ea80, header channel_header:"\010\003\032\014\010\302\214\315\321\005\020\330\373\345\362\001\"\017businesschannel*@2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A\nkokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl\nddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx\nOfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc\nbqEi6/lY2kK0EtGRnA==\n-----END CERTIFICATE-----\n\022\030\360\322\223\024\006\367v)\004\2763}\343\325\211>u\207\006\206\303J\267&" +peer0.org2.example.com | [598 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [6ab 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer0.org2.example.com | [599 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +peer0.org1.example.com | [6ac 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cd0b29fb]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [5ca 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | [31c 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [59a 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [00465bd6]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [5cb 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) +peer1.org1.example.com | [585 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [6ad 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [59b 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [31d 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org1.example.com | [586 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [6ae 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cd0b29fb]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [31e 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [5cc 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] marked as valid by state validator +peer0.org2.example.com | [59c 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [6af 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd0b29fb]Move state message TRANSACTION +peer1.org1.example.com | [587 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +orderer.example.com | [31f 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [6b0 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cd0b29fb]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [5cd 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org1.example.com | [588 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +orderer.example.com | [320 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [59d 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [00465bd6]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [6b1 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [5ce 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer1.org1.example.com | [589 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] +orderer.example.com | [321 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org1.example.com | [58a 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [5cf 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org1.example.com | [6b2 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd0b29fb]sending state message TRANSACTION +orderer.example.com | [322 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [59e 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [00465bd6]Move state message TRANSACTION +peer1.org2.example.com | [5d0 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage +peer1.org1.example.com | [58b 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4203781e0 envbytes 0xc421b7c880 +peer0.org1.example.com | [6b3 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd0b29fb]Received message TRANSACTION from shim +peer0.org2.example.com | [59f 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [00465bd6]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [5d1 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [3] +peer0.org1.example.com | [6b4 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cd0b29fb]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [323 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org1.example.com | [58c 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc421b7c880 +peer1.org2.example.com | [5d2 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xbd, 0x1d, 0x3e, 0x71, 0x54, 0x7d, 0x18, 0xea, 0x68, 0xf5, 0xac, 0xe5, 0x8c, 0xfe, 0x88, 0x50, 0x5, 0xc9, 0x4a, 0xf7, 0x43, 0x38, 0xe6, 0x11, 0x25, 0x7e, 0xb7, 0xf4, 0xb1, 0x42, 0x13, 0xae} txOffsets= +peer0.org1.example.com | [6b5 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [cd0b29fb]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [324 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org2.example.com | txId=2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 locPointer=offset=70, bytesLength=3454 +peer0.org2.example.com | [5a0 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [58d 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [6b6 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org2.example.com | [5a1 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [00465bd6]sending state message TRANSACTION +peer1.org2.example.com | ] +peer0.org1.example.com | [6b7 12-15 03:49:32.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 | [58e 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] +peer0.org2.example.com | [5a2 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [00465bd6]Received message TRANSACTION from shim +orderer.example.com | [325 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org2.example.com | [5d3 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40178, bytesLength=3454] for tx ID: [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] to index +peer0.org1.example.com | [6b8 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +orderer.example.com | [326 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org1.example.com | [58f 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=fb338b48-3714-417e-a42b-ffef8a0e190f,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer0.org2.example.com | [5a3 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [00465bd6]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [5d4 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40178, bytesLength=3454] for tx number:[0] ID: [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] to blockNumTranNum index +peer0.org1.example.com | [6b9 12-15 03:49:32.20 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [327 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU Rejecting deliver for 172.21.0.8:57090 because channel businesschannel not found +peer1.org1.example.com | [590 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 chaindID businesschannel +peer1.org2.example.com | [5d5 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45427], isChainEmpty=[false], lastBlockNumber=[3] +peer0.org1.example.com | [6ba 12-15 03:49:32.20 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [328 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.21.0.8:57090 +peer1.org2.example.com | [5d6 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 3 +orderer.example.com | [329 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57090 +peer0.org1.example.com | [6bb 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer0.org2.example.com | [5a4 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [00465bd6]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [591 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +orderer.example.com | [32a 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.21.0.8:57092: rpc error: code = Canceled desc = context canceled +peer0.org1.example.com | [6bc 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [8a62bdc8-3435-4a32-8586-82819ba45d52] +peer1.org2.example.com | [5d7 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 3 +peer0.org2.example.com | [5a5 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: GetConfigTree +peer1.org1.example.com | [592 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [32b 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +peer1.org2.example.com | [5d8 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [3] with 1 transaction(s) +peer0.org1.example.com | [6bd 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org1.example.com | [593 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +orderer.example.com | [32c 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57090: rpc error: code = Canceled desc = context canceled +peer0.org2.example.com | [5a6 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [00465bd6]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [594 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fb338b48]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [5d9 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database +orderer.example.com | [32d 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org1.example.com | [6be 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [8a62bdc8-3435-4a32-8586-82819ba45d52] +peer1.org1.example.com | [595 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [32e 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [6bf 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +peer1.org1.example.com | [596 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fb338b48]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [5a7 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [00465bd6]Move state message COMPLETED +orderer.example.com | [32f 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [6c0 12-15 03:49:32.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)(0x990ba0), deserializer:(*msp.mspManagerImpl)(0xc4219851c0)} +peer1.org1.example.com | [597 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fb338b48]Move state message TRANSACTION +peer1.org2.example.com | [5da 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [5a8 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [00465bd6]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [330 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org1.example.com | [6c1 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer1.org1.example.com | [598 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fb338b48]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [5a9 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [00465bd6]send state message COMPLETED +orderer.example.com | [331 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer0.org1.example.com | [6c2 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd0b29fb]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [599 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [5aa 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [00465bd6]Received message COMPLETED from shim +peer1.org2.example.com | [5db 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | [332 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +peer0.org1.example.com | [6c3 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd0b29fb]Move state message COMPLETED +peer1.org1.example.com | [59a 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fb338b48]sending state message TRANSACTION +peer0.org2.example.com | [5ab 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [00465bd6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [333 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +peer0.org1.example.com | [6c4 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cd0b29fb]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [59b 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fb338b48]Received message TRANSACTION from shim +peer0.org2.example.com | [5ac 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [00465bd6aaee8c7bd73c50086f70fb16a573a401d95a634523df2fbf3fd6b0bb]HandleMessage- COMPLETED. Notify +orderer.example.com | [334 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +peer0.org1.example.com | [6c5 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd0b29fb]send state message COMPLETED +peer1.org1.example.com | [59c 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fb338b48]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [5ad 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:00465bd6aaee8c7bd73c50086f70fb16a573a401d95a634523df2fbf3fd6b0bb, channelID:businesschannel +orderer.example.com | [335 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +peer1.org1.example.com | [59d 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [fb338b48]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [5ae 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [5dc 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccmycc] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] +peer0.org1.example.com | [6c6 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd0b29fb]Received message COMPLETED from shim +orderer.example.com | [336 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +peer1.org1.example.com | [59e 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org2.example.com | [5af 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [337 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +peer1.org1.example.com | [59f 12-15 03:49:32.21 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 | [5b0 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | [338 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer1.org1.example.com | [5a0 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer0.org1.example.com | [6c7 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cd0b29fb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [5dd 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer0.org2.example.com | [5b1 12-15 03:49:30.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [00465bd6aaee8c7bd73c50086f70fb16a573a401d95a634523df2fbf3fd6b0bb] +orderer.example.com | [339 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org1.example.com | [5a1 12-15 03:49:32.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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [6c8 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cd0b29fb-dc46-4272-9d78-7ab610397024]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [5b2 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [33a 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer1.org2.example.com | [5de 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +peer1.org1.example.com | [5a2 12-15 03:49:32.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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [6c9 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:cd0b29fb-dc46-4272-9d78-7ab610397024, channelID:businesschannel +peer0.org2.example.com | [5b3 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 00465bd6aaee8c7bd73c50086f70fb16a573a401d95a634523df2fbf3fd6b0bb channel id: businesschannel chaincode id: name:"cscc" +orderer.example.com | [33b 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +peer1.org2.example.com | [5df 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [5a3 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer0.org1.example.com | [6ca 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [5b4 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"cscc" is escc +orderer.example.com | [33c 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +peer1.org1.example.com | [5a4 12-15 03:49:32.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 txid = [6ab5896d-4d58-40d9-9863-857668607da7] +peer1.org2.example.com | [5e0 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database +peer0.org1.example.com | [6cb 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] +peer0.org2.example.com | [5b5 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 00465bd6aaee8c7bd73c50086f70fb16a573a401d95a634523df2fbf3fd6b0bb channel id: businesschannel version: 1.1.0 +peer1.org1.example.com | [5a5 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | [33d 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +peer0.org1.example.com | [6cc 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc42294b600 +peer0.org2.example.com | [5b6 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=00465bd6aaee8c7bd73c50086f70fb16a573a401d95a634523df2fbf3fd6b0bb,syscc=true,proposal=0xc421afa320,canname=escc:1.1.0 +peer1.org2.example.com | [5e1 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +peer1.org1.example.com | [5a6 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [6ab5896d-4d58-40d9-9863-857668607da7] +peer0.org1.example.com | [6cd 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc421b84900 envbytes 0xc42294b600 +peer0.org2.example.com | [5b7 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer1.org2.example.com | [5e2 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +orderer.example.com | [33e 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +peer1.org1.example.com | [5a7 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +peer0.org1.example.com | [6ce 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421dd8440 env 0xc421b84900 txn 0 +peer0.org2.example.com | [5b8 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [5a8 12-15 03:49:32.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)(0x990ba0), deserializer:(*msp.mspManagerImpl)(0xc42276e9c0)} +peer0.org1.example.com | [6cf 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer1.org2.example.com | [5e3 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +orderer.example.com | [33f 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +peer0.org2.example.com | [5b9 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [6d0 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org2.example.com | [5e4 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 +peer1.org1.example.com | [5a9 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org2.example.com | [5ba 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [00465bd6]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [6d1 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] +orderer.example.com | [340 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer0.org1.example.com | [6d2 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [5bb 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [5e5 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org1.example.com | [5aa 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fb338b48]Transaction completed. Sending COMPLETED +orderer.example.com | [341 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +peer0.org1.example.com | [6d3 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [3] +peer0.org2.example.com | [5bc 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [5e6 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org1.example.com | [5ab 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fb338b48]Move state message COMPLETED +peer0.org1.example.com | [6d4 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +orderer.example.com | [342 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] +peer0.org2.example.com | [5bd 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [00465bd6]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [5e7 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [6d5 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +orderer.example.com | [343 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] does not exist +peer1.org1.example.com | [5ac 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fb338b48]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [6d6 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org1.example.com | [5ad 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fb338b48]send state message COMPLETED +peer0.org1.example.com | [6d7 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) +peer1.org2.example.com | [5e8 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [5be 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [00465bd6]Move state message TRANSACTION +orderer.example.com | [344 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] exists +peer1.org1.example.com | [5ae 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fb338b48]Received message COMPLETED from shim +peer0.org1.example.com | [6d8 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] marked as valid by state validator +peer1.org2.example.com | [5e9 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [5af 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fb338b48]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [5bf 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [00465bd6]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [6d9 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org2.example.com | [5ea 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | [345 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +peer1.org1.example.com | [5b0 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fb338b48-3714-417e-a42b-ffef8a0e190f]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [5eb 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [6da 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org2.example.com | [5c0 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [346 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +peer1.org1.example.com | [5b1 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:fb338b48-3714-417e-a42b-ffef8a0e190f, channelID:businesschannel +peer1.org2.example.com | [5ec 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [6db 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer1.org1.example.com | [5b2 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [5c1 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [00465bd6]sending state message TRANSACTION +orderer.example.com | [347 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +peer1.org2.example.com | [5ed 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | [5c2 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [00465bd6]Received message TRANSACTION from shim +peer0.org1.example.com | [6dc 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage +peer1.org1.example.com | [5b3 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] +peer1.org2.example.com | [5ee 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:36192 +orderer.example.com | [348 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +peer0.org2.example.com | [5c3 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [00465bd6]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [6dd 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [3] +orderer.example.com | [349 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +peer1.org1.example.com | [5b4 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc421b7c880 +peer1.org2.example.com | [5ef 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422fa9bc0 +peer0.org1.example.com | [6de 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xbd, 0x1d, 0x3e, 0x71, 0x54, 0x7d, 0x18, 0xea, 0x68, 0xf5, 0xac, 0xe5, 0x8c, 0xfe, 0x88, 0x50, 0x5, 0xc9, 0x4a, 0xf7, 0x43, 0x38, 0xe6, 0x11, 0x25, 0x7e, 0xb7, 0xf4, 0xb1, 0x42, 0x13, 0xae} txOffsets= +peer0.org2.example.com | [5c4 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [00465bd6]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [5b5 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4203781e0 envbytes 0xc421b7c880 +orderer.example.com | [34a 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +peer1.org2.example.com | [5f0 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [5c5 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org1.example.com | [5b6 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42276e080 env 0xc4203781e0 txn 0 +peer1.org2.example.com | [5f1 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [34b 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc420ba7c80)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +peer0.org1.example.com | txId=2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 locPointer=offset=70, bytesLength=3454 +peer0.org2.example.com | [5c6 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org2.example.com | [5f2 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 73763341eb604cef734e4ac7c2ea77bc9d730c798fb96eb583c0637692a88acd} +peer1.org1.example.com | [5b7 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org1.example.com | ] +peer1.org2.example.com | [5f3 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [5c7 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [00465bd6]Transaction completed. Sending COMPLETED +orderer.example.com | [34c 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [6df 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40178, bytesLength=3454] for tx ID: [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] to index +peer1.org2.example.com | [5f4 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [5b8 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org2.example.com | [5c8 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [00465bd6]Move state message COMPLETED +peer0.org1.example.com | [6e0 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40178, bytesLength=3454] for tx number:[0] ID: [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] to blockNumTranNum index +orderer.example.com | [34d 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57094 +peer1.org2.example.com | [5f5 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4230b82d0, header 0xc422fa9bf0 +peer1.org1.example.com | [5b9 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] +peer0.org2.example.com | [5c9 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [00465bd6]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [5f6 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" +peer0.org2.example.com | [5ca 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [00465bd6]send state message COMPLETED +orderer.example.com | [34e 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57094 +peer0.org1.example.com | [6e1 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45427], isChainEmpty=[false], lastBlockNumber=[3] +peer1.org1.example.com | [5ba 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org2.example.com | [5f7 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 10909b0f383d9daee5eadc992b3651196d18093b70fee6eebf966852152024cb +peer0.org1.example.com | [6e2 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 3 +peer0.org2.example.com | [5cb 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [00465bd6]Received message COMPLETED from shim +peer0.org1.example.com | [6e3 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 3 +peer1.org1.example.com | [5bb 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [3] +peer0.org2.example.com | [5cc 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [00465bd6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [5f8 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [10909b0f383d9daee5eadc992b3651196d18093b70fee6eebf966852152024cb] +orderer.example.com | [34f 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] +peer0.org2.example.com | [5cd 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [00465bd6aaee8c7bd73c50086f70fb16a573a401d95a634523df2fbf3fd6b0bb]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [5f9 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [5bc 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org1.example.com | [6e4 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [3] with 1 transaction(s) +orderer.example.com | [350 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xa1, 0x60, 0xe0, 0x48, 0x49, 0xa2, 0x7b, 0xd, 0x4, 0xe8, 0xa0, 0x11, 0xe6, 0xf7, 0x68, 0xce, 0x66, 0xf4, 0xbe, 0xa6, 0xb, 0xc5, 0x74, 0xd1, 0xf8, 0xc1, 0xc6, 0x60, 0xbf, 0x2c, 0xe0, 0x38} txOffsets= +peer1.org2.example.com | [5fa 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [10909b0f383d9daee5eadc992b3651196d18093b70fee6eebf966852152024cb] +peer1.org1.example.com | [5bd 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +peer0.org2.example.com | [5ce 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:00465bd6aaee8c7bd73c50086f70fb16a573a401d95a634523df2fbf3fd6b0bb, channelID:businesschannel +peer0.org1.example.com | [6e5 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database +peer1.org1.example.com | [5be 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org2.example.com | [5fb 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 10909b0f383d9daee5eadc992b3651196d18093b70fee6eebf966852152024cb channel id: businesschannel +orderer.example.com | txId= locPointer=offset=38, bytesLength=12083 +peer0.org2.example.com | [5cf 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [6e6 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +orderer.example.com | ] +peer1.org1.example.com | [5bf 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) +peer0.org2.example.com | [5d0 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [5fc 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=10909b0f383d9daee5eadc992b3651196d18093b70fee6eebf966852152024cb,syscc=true,proposal=0xc4230b82d0,canname=lscc:1.1.0 +peer0.org1.example.com | [6e7 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [5c0 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] marked as valid by state validator +orderer.example.com | [351 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12126], isChainEmpty=[false], lastBlockNumber=[0] +peer0.org1.example.com | [6e8 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccmycc] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] +peer0.org2.example.com | [5d1 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer1.org2.example.com | [5fd 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer1.org1.example.com | [5c1 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +orderer.example.com | [352 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +peer0.org1.example.com | [6e9 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer0.org2.example.com | [5d2 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [00465bd6aaee8c7bd73c50086f70fb16a573a401d95a634523df2fbf3fd6b0bb] +peer0.org1.example.com | [6ea 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +orderer.example.com | [353 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +peer0.org2.example.com | [5d3 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:58214) +peer1.org1.example.com | [5c2 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer1.org2.example.com | [5fe 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [6eb 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +orderer.example.com | [354 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[12126], Going to peek [8] bytes +peer0.org2.example.com | [5d4 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:58214 +peer1.org1.example.com | [5c3 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer1.org2.example.com | [5ff 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +orderer.example.com | [355 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12124], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +peer0.org1.example.com | [6ec 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database +peer0.org2.example.com | [5d5 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42266a840 +orderer.example.com | [356 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12124] read from file [0] +peer1.org1.example.com | [5c4 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage +peer0.org2.example.com | [5d6 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [6ed 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +peer1.org2.example.com | [600 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [10909b0f]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [5d7 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [357 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport.newBlockWriter -> DEBU [channel: businesschannel] Creating block writer for tip of chain (blockNumber=0, lastConfigBlockNum=0, lastConfigSeq=1) +peer0.org1.example.com | [6ee 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +peer1.org1.example.com | [5c5 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [3] +peer1.org2.example.com | [601 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [358 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport -> DEBU [channel: businesschannel] Done creating channel support resources +peer1.org1.example.com | [5c6 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xbd, 0x1d, 0x3e, 0x71, 0x54, 0x7d, 0x18, 0xea, 0x68, 0xf5, 0xac, 0xe5, 0x8c, 0xfe, 0x88, 0x50, 0x5, 0xc9, 0x4a, 0xf7, 0x43, 0x38, 0xe6, 0x11, 0x25, 0x7e, 0xb7, 0xf4, 0xb1, 0x42, 0x13, 0xae} txOffsets= +peer0.org2.example.com | [5d8 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 73763341eb604cef734e4ac7c2ea77bc9d730c798fb96eb583c0637692a88acd} +peer1.org2.example.com | [602 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [6ef 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org2.example.com | [5d9 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [359 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain -> INFO Created and starting new chain businesschannel +peer1.org1.example.com | txId=2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 locPointer=offset=70, bytesLength=3454 +peer0.org1.example.com | [6f0 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 +peer1.org2.example.com | [603 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [10909b0f]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | ] +peer0.org2.example.com | [5da 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [6f1 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +orderer.example.com | [35a 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [604 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10909b0f]Move state message TRANSACTION +peer1.org1.example.com | [5c7 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40178, bytesLength=3454] for tx ID: [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] to index +peer0.org2.example.com | [5db 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42196da90, header 0xc42266a870 +peer0.org1.example.com | [6f2 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [605 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10909b0f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [5c8 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40178, bytesLength=3454] for tx number:[0] ID: [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] to blockNumTranNum index +peer0.org2.example.com | [5dc 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org1.example.com | [6f3 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [5c9 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45427], isChainEmpty=[false], lastBlockNumber=[3] +peer1.org2.example.com | [606 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [5dd 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 +peer0.org1.example.com | [6f4 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [5ca 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 3 +orderer.example.com | [35b 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [5de 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] +peer1.org1.example.com | [5cb 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 3 +peer0.org1.example.com | [6f5 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [607 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10909b0f]sending state message TRANSACTION +orderer.example.com | [35c 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [5cc 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [3] with 1 transaction(s) +peer0.org2.example.com | [5df 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [608 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10909b0f]Received message TRANSACTION from shim +peer1.org1.example.com | [5cd 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database +peer1.org2.example.com | [609 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10909b0f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [35d 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [6f6 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [60a 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [10909b0f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [5e0 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] +orderer.example.com | [35e 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...B4BBBB86D3079290422234D114B76CBB +peer1.org1.example.com | [5ce 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [6f7 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [60b 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [10909b0f]Sending GET_STATE +orderer.example.com | [35f 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 8A49BC500CC6F705427084E779867A6845C2BFCA0FA6883B6D43D685B3E8BB10 +peer1.org1.example.com | [5cf 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [5e1 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 channel id: businesschannel +peer0.org1.example.com | [6f8 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +orderer.example.com | [360 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [6f9 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [60c 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10909b0f]Received message GET_STATE from shim +peer1.org1.example.com | [5d0 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer0.org1.example.com | [6fa 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] +peer0.org2.example.com | [5e2 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled +orderer.example.com | [361 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org2.example.com | [60d 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10909b0f]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [5d1 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +orderer.example.com | [362 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 +peer0.org2.example.com | [5e3 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [6fb 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] +peer1.org2.example.com | [60e 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [10909b0f]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [60f 12-15 03:49:38.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [6fc 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org2.example.com | [5e4 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218,syscc=true,proposal=0xc42196da90,canname=lscc:1.1.0 +peer1.org1.example.com | [5d2 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccmycc] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] +orderer.example.com | [363 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [6fd 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org2.example.com | [610 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [10909b0f] getting state for chaincode lscc, key mycc, channel businesschannel +peer0.org2.example.com | [5e5 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +orderer.example.com | [364 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [5d3 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer0.org1.example.com | [6fe 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421b99fa0 env 0xc422f68d50 txn 0 +peer1.org2.example.com | [611 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org2.example.com | [5e6 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [365 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...B4BBBB86D3079290422234D114B76CBB +peer1.org2.example.com | [612 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [10909b0f]Got state. Sending RESPONSE +peer1.org1.example.com | [5d4 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database +peer0.org1.example.com | [6ff 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422f68d50 +orderer.example.com | [366 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 10903617131318C52CCE1BA30BAAE4D09CA055E5F96A6F4F9B3211FBA6A0ACFA +peer0.org2.example.com | [5e7 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer1.org2.example.com | [613 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [10909b0f]handleGetState serial send RESPONSE +orderer.example.com | [367 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xd0, 0xfd, 0x9a, 0xa3, 0x30, 0xc3, 0x9f, 0xe5, 0x99, 0xe9, 0x1d, 0xfd, 0xf3, 0xed, 0x4d, 0x50, 0x9f, 0xfa, 0x6f, 0x8f, 0xf0, 0x9c, 0x9d, 0xa2, 0x6d, 0xe4, 0x4c, 0xa8, 0x6a, 0x22, 0x45, 0x47} txOffsets= +peer0.org1.example.com | [700 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\312\214\315\321\005\020\364\336\342\240\001\"\017businesschannel*@912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv\nVLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7\nYoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2\n8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0\nN5+z/fTTfchGfLaCtzM=\n-----END CERTIFICATE-----\n\022\030\326l\271@\240_\234\374\202\363\340\311\352\370z/\356\364\027\215~\330Da" +peer0.org2.example.com | [5e8 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [912d3bf8]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | txId= locPointer=offset=70, bytesLength=13005 +peer1.org1.example.com | [5d5 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +peer1.org2.example.com | [614 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10909b0f]Received message RESPONSE from shim +peer0.org1.example.com | [701 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [5e9 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [5d6 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +peer0.org1.example.com | [702 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | ] +peer1.org2.example.com | [615 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10909b0f]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org2.example.com | [5ea 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [368 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[24023], isChainEmpty=[false], lastBlockNumber=[1] +peer0.org1.example.com | [703 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 73763341eb604cef734e4ac7c2ea77bc9d730c798fb96eb583c0637692a88acd} +peer1.org2.example.com | [616 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [10909b0f]before send +peer1.org1.example.com | [5d7 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org2.example.com | [617 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [10909b0f]after send +peer0.org1.example.com | [704 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [369 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: testchainid] Wrote block 1 +peer0.org2.example.com | [5eb 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [912d3bf8]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [5d8 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 +peer1.org2.example.com | [618 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [10909b0f]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [705 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [5ec 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [912d3bf8]Move state message TRANSACTION +orderer.example.com | [36a 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer1.org2.example.com | [619 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [10909b0f]GetState received payload RESPONSE +peer1.org1.example.com | [5d9 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org2.example.com | [61a 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10909b0f]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [706 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422f06a80, header channel_header:"\010\003\032\014\010\312\214\315\321\005\020\364\336\342\240\001\"\017businesschannel*@912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv\nVLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7\nYoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2\n8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0\nN5+z/fTTfchGfLaCtzM=\n-----END CERTIFICATE-----\n\022\030\326l\271@\240_\234\374\202\363\340\311\352\370z/\356\364\027\215~\330Da" +orderer.example.com | [36b 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org2.example.com | [5ed 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [912d3bf8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [5da 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [61b 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10909b0f]Move state message COMPLETED +peer0.org1.example.com | [707 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +orderer.example.com | [36c 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org2.example.com | [5ee 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [61c 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10909b0f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [708 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org1.example.com | [5db 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | [36d 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org2.example.com | [61d 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10909b0f]send state message COMPLETED +peer0.org2.example.com | [5ef 12-15 03:49:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [912d3bf8]sending state message TRANSACTION +peer1.org1.example.com | [5dc 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [61e 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10909b0f]Received message COMPLETED from shim +orderer.example.com | [36e 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer0.org2.example.com | [5f0 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [912d3bf8]Received message TRANSACTION from shim +peer1.org2.example.com | [61f 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10909b0f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [709 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org2.example.com | [620 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10909b0f383d9daee5eadc992b3651196d18093b70fee6eebf966852152024cb]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [5f1 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [912d3bf8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [5dd 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +orderer.example.com | [36f 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer1.org2.example.com | [621 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:10909b0f383d9daee5eadc992b3651196d18093b70fee6eebf966852152024cb, channelID:businesschannel +peer0.org1.example.com | [70a 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [5de 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [5f2 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [912d3bf8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [622 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [370 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [5df 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [5f3 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [912d3bf8]Sending GET_STATE +peer0.org1.example.com | [70b 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] +peer1.org2.example.com | [623 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInsantiationPolicy.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [5e0 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [5f4 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [912d3bf8]Received message GET_STATE from shim +peer1.org2.example.com | [624 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 10909b0f383d9daee5eadc992b3651196d18093b70fee6eebf966852152024cb channel id: businesschannel version: 1.0 +peer0.org1.example.com | [70c 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [625 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=10909b0f383d9daee5eadc992b3651196d18093b70fee6eebf966852152024cb,syscc=false,proposal=0xc4230b82d0,canname=mycc:1.0 +peer1.org1.example.com | [5e1 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | [5f5 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [912d3bf8]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [626 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=10909b0f383d9daee5eadc992b3651196d18093b70fee6eebf966852152024cb,syscc=true,proposal=0xc4230b82d0,canname=lscc:1.1.0 +peer0.org1.example.com | [70d 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422f68d50 envbytes 0xc422f01b00 +peer0.org2.example.com | [5f6 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [912d3bf8]Received GET_STATE, invoking get state from ledger +peer1.org1.example.com | [5e2 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org2.example.com | [627 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer0.org1.example.com | [70e 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422f01b00 +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [5e3 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org2.example.com | [628 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [5f7 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [70f 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [629 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +peer1.org1.example.com | [5e4 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421d9fbe0 env 0xc4226c8120 txn 0 +peer1.org2.example.com | [62a 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [10909b0f]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [710 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] +peer0.org2.example.com | [5f8 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [912d3bf8] getting state for chaincode lscc, key mycc, channel businesschannel +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [62b 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [711 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=71ff1d64-76ae-49d3-88a7-6dbcc4e72c95,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer1.org1.example.com | [5e5 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4226c8120 +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [5f9 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org2.example.com | [62c 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [712 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 chaindID businesschannel +peer0.org2.example.com | [5fa 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [912d3bf8]No state associated with key: +peer1.org1.example.com | [5e6 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\312\214\315\321\005\020\364\336\342\240\001\"\017businesschannel*@912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv\nVLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7\nYoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2\n8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0\nN5+z/fTTfchGfLaCtzM=\n-----END CERTIFICATE-----\n\022\030\326l\271@\240_\234\374\202\363\340\311\352\370z/\356\364\027\215~\330Da" +peer1.org2.example.com | [62d 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [10909b0f]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +peer0.org1.example.com | [713 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer0.org2.example.com | mycc. Sending RESPONSE with an empty payload +peer1.org1.example.com | [5e7 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +peer1.org2.example.com | [62e 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10909b0f]Move state message TRANSACTION +peer0.org1.example.com | [714 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [5fb 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [912d3bf8]handleGetState serial send RESPONSE +peer1.org1.example.com | [5e8 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [5fc 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [912d3bf8]Received message RESPONSE from shim +peer0.org1.example.com | [715 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer1.org2.example.com | [62f 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10909b0f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [5e9 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 73763341eb604cef734e4ac7c2ea77bc9d730c798fb96eb583c0637692a88acd} +peer0.org1.example.com | [716 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [71ff1d64]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +peer0.org2.example.com | [5fd 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [912d3bf8]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org2.example.com | [630 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [5ea 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [5fe 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [912d3bf8]before send +orderer.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +peer0.org1.example.com | [717 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [5eb 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [631 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10909b0f]sending state message TRANSACTION +orderer.example.com | OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +peer0.org2.example.com | [5ff 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [912d3bf8]after send +peer1.org1.example.com | [5ec 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422e67500, header channel_header:"\010\003\032\014\010\312\214\315\321\005\020\364\336\342\240\001\"\017businesschannel*@912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv\nVLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7\nYoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2\n8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0\nN5+z/fTTfchGfLaCtzM=\n-----END CERTIFICATE-----\n\022\030\326l\271@\240_\234\374\202\363\340\311\352\370z/\356\364\027\215~\330Da" +peer0.org1.example.com | [718 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [71ff1d64]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [632 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10909b0f]Received message TRANSACTION from shim +orderer.example.com | bqEi6/lY2kK0EtGRnA== +peer0.org2.example.com | [600 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [912d3bf8]Received RESPONSE, communicated (state:ready) +peer1.org1.example.com | [5ed 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [719 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [71ff1d64]Move state message TRANSACTION +peer1.org2.example.com | [633 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10909b0f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [5ee 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org2.example.com | [601 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [912d3bf8]GetState received payload RESPONSE +peer0.org1.example.com | [71a 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [71ff1d64]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [634 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [10909b0f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [5ef 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [71b 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [635 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [10909b0f]Sending GET_STATE +peer1.org1.example.com | [5f0 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +orderer.example.com | [371 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000efe0 gate 1513309754534159800 evaluation starts +peer0.org2.example.com | [602 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [912d3bf8]Sending PUT_STATE +peer0.org1.example.com | [71c 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [71ff1d64]sending state message TRANSACTION +peer1.org2.example.com | [636 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10909b0f]Received message GET_STATE from shim +peer1.org1.example.com | [5f1 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] +peer0.org1.example.com | [71d 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71ff1d64]Received message TRANSACTION from shim +peer0.org2.example.com | [603 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [912d3bf8]Received message PUT_STATE from shim +orderer.example.com | [372 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000efe0 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [5f2 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [637 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10909b0f]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [71e 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [71ff1d64]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [5f3 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4226c8120 envbytes 0xc421b47600 +peer0.org2.example.com | [604 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [912d3bf8]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +orderer.example.com | [373 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000efe0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b78664b6f3271717459665054415039526b4136796f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455775768634e4d6a63784d6a457a4d444d7a4e5455770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424c493853704e726b4330415968693747496377353237505056364e75682b410a6b6f6b7670516355436746536d373374595a375141556c5446384e2f5642424e51436e464c326b72756b4f4c6431496f4237776e5a6e756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4376615250365a53446c0a64644a716e6e314d784c776b464f716d394d5877324c474f6b38584c72424e574d416f4743437147534d343942414d43413063414d455143494235334a6546780a4f665644446c692b4a6955636b463459376b4d64595550714778477373755948305570694169416f7159577a596a4f4c397071677874495430332f59717370630a62714569362f6c59326b4b30457447526e413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [638 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [10909b0f]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [71f 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [71ff1d64]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [5f4 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc421b47600 +orderer.example.com | [374 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000efe0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +peer0.org2.example.com | [605 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [639 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [606 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [912d3bf8]state is ready +peer1.org1.example.com | [5f5 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [63a 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [10909b0f] getting state for chaincode lscc, key mycc, channel businesschannel +peer0.org1.example.com | [720 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org1.example.com | [5f6 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] +peer0.org2.example.com | [607 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [912d3bf8]Completed PUT_STATE. Sending RESPONSE +peer1.org2.example.com | [63b 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | [375 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000efe0 principal evaluation fails +peer1.org1.example.com | [5f7 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=89949814-0d20-410b-81db-cc8c5cb81d9a,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer0.org1.example.com | [721 12-15 03:49:39.78 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 | [63c 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [10909b0f]Got state. Sending RESPONSE +peer0.org2.example.com | [608 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [912d3bf8]enterBusyState trigger event RESPONSE +peer0.org1.example.com | [722 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +orderer.example.com | [376 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000efe0 gate 1513309754534159800 evaluation fails +peer1.org1.example.com | [5f8 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 chaindID businesschannel +peer0.org2.example.com | [609 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [912d3bf8]Move state message RESPONSE +peer1.org2.example.com | [63d 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [10909b0f]handleGetState serial send RESPONSE +peer0.org1.example.com | [723 12-15 03:49:39.78 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [5f9 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +orderer.example.com | [377 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [60a 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [912d3bf8]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer1.org2.example.com | [63e 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10909b0f]Received message RESPONSE from shim +peer1.org1.example.com | [5fa 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [724 12-15 03:49:39.78 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [378 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [60b 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [63f 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10909b0f]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [725 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer1.org1.example.com | [5fb 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer0.org2.example.com | [60c 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [912d3bf8]sending state message RESPONSE +orderer.example.com | [379 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] +peer1.org2.example.com | [640 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [10909b0f]before send +peer0.org1.example.com | [726 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [2d5f42a8-487d-4290-a897-0e040f5b5915] +orderer.example.com | [37a 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers +peer0.org2.example.com | [60d 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [912d3bf8]Received message RESPONSE from shim +peer1.org1.example.com | [5fc 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [89949814]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [641 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [10909b0f]after send +peer0.org1.example.com | [727 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | [37b 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer1.org1.example.com | [5fd 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [643 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [10909b0f]GetState received payload RESPONSE +peer0.org2.example.com | [60e 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [912d3bf8]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [728 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [2d5f42a8-487d-4290-a897-0e040f5b5915] +orderer.example.com | [37c 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +peer1.org2.example.com | [644 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10909b0f]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [5fe 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [89949814]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [60f 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [912d3bf8]before send +peer0.org1.example.com | [729 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +orderer.example.com | [37d 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [5ff 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89949814]Move state message TRANSACTION +peer1.org2.example.com | [642 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [10909b0f]Received RESPONSE, communicated (state:ready) +peer0.org2.example.com | [610 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [912d3bf8]after send +peer0.org1.example.com | [72a 12-15 03:49:39.78 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)(0x990ba0), deserializer:(*msp.mspManagerImpl)(0xc4219851c0)} +orderer.example.com | [37e 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +peer1.org2.example.com | [645 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10909b0f]Move state message COMPLETED +peer1.org1.example.com | [600 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [89949814]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [72b 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated +peer0.org2.example.com | [611 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [912d3bf8]Received RESPONSE, communicated (state:ready) +peer1.org2.example.com | [646 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10909b0f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [37f 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000eff0 gate 1513309754535775100 evaluation starts +peer1.org1.example.com | [601 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [72c 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71ff1d64]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [612 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [912d3bf8]Received RESPONSE. Successfully updated state +orderer.example.com | [380 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eff0 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [647 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10909b0f]send state message COMPLETED +peer0.org1.example.com | [72d 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71ff1d64]Move state message COMPLETED +peer1.org1.example.com | [602 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89949814]sending state message TRANSACTION +orderer.example.com | [381 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eff0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b78664b6f3271717459665054415039526b4136796f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455775768634e4d6a63784d6a457a4d444d7a4e5455770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424c493853704e726b4330415968693747496377353237505056364e75682b410a6b6f6b7670516355436746536d373374595a375141556c5446384e2f5642424e51436e464c326b72756b4f4c6431496f4237776e5a6e756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4376615250365a53446c0a64644a716e6e314d784c776b464f716d394d5877324c474f6b38584c72424e574d416f4743437147534d343942414d43413063414d455143494235334a6546780a4f665644446c692b4a6955636b463459376b4d64595550714778477373755948305570694169416f7159577a596a4f4c397071677874495430332f59717370630a62714569362f6c59326b4b30457447526e413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org2.example.com | [613 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [912d3bf8]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [648 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10909b0f]Received message COMPLETED from shim +peer0.org1.example.com | [72e 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [71ff1d64]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [382 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +peer1.org1.example.com | [603 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89949814]Received message TRANSACTION from shim +peer0.org2.example.com | [614 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [912d3bf8]Move state message COMPLETED +peer1.org2.example.com | [649 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10909b0f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [72f 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71ff1d64]send state message COMPLETED +orderer.example.com | [383 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +peer1.org1.example.com | [604 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [89949814]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [615 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [912d3bf8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [384 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eff0 principal matched by identity 0 +peer0.org1.example.com | [730 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [71ff1d64]Received message COMPLETED from shim +peer1.org2.example.com | [64a 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10909b0f383d9daee5eadc992b3651196d18093b70fee6eebf966852152024cb]HandleMessage- COMPLETED. Notify +orderer.example.com | [385 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 b9 f4 55 f2 a0 9d 14 bf 79 c6 f7 a1 99 72 de 0d |..U.....y....r..| +peer1.org1.example.com | [605 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [89949814]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [616 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [912d3bf8]send state message COMPLETED +peer1.org2.example.com | [64b 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:10909b0f383d9daee5eadc992b3651196d18093b70fee6eebf966852152024cb, channelID:businesschannel +peer0.org1.example.com | [731 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [71ff1d64]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [606 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +orderer.example.com | 00000010 a3 5c bf 1f eb 0f d7 16 b4 ce 46 93 6e 17 bd 75 |.\........F.n..u| +peer0.org1.example.com | [732 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [71ff1d64-76ae-49d3-88a7-6dbcc4e72c95]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [64c 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [617 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [912d3bf8]Received message COMPLETED from shim +orderer.example.com | [386 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 05 76 56 b0 c9 aa 7a d9 23 3e 53 62 |0D. .vV...z.#>Sb| +peer0.org2.example.com | [618 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [912d3bf8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [607 12-15 03:49:39.81 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 | [733 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:71ff1d64-76ae-49d3-88a7-6dbcc4e72c95, channelID:businesschannel +orderer.example.com | 00000010 df 54 c2 42 68 1f 71 32 9c 70 a1 69 1c 86 18 18 |.T.Bh.q2.p.i....| +peer1.org1.example.com | [608 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer0.org2.example.com | [619 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [64d 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched +peer0.org1.example.com | [734 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | 00000020 85 dd dd 97 02 20 55 c9 7b dc f5 b1 33 a5 f7 0a |..... U.{...3...| +peer0.org2.example.com | [61a 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218, channelID:businesschannel +peer1.org2.example.com | [64e 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer1.org1.example.com | [609 12-15 03:49:39.82 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [735 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218, error Chaincode mycc is already instantiated +peer1.org2.example.com | [64f 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org2.example.com | [61b 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [736 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] +peer1.org2.example.com | [650 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=mycc:1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +orderer.example.com | 00000030 40 7a 84 37 8c cf d5 90 6e 8a 51 6d c2 69 2b ae |@z.7....n.Qm.i+.| +peer1.org2.example.com | [651 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +orderer.example.com | 00000040 85 ed e9 93 5f 5a |...._Z| +peer0.org2.example.com | [61c 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218,syscc=false,proposal=0xc42196da90,canname=mycc:1.0 +peer0.org1.example.com | [737 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422f01b00 +peer1.org2.example.com | [652 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer1.org2.example.com) +orderer.example.com | [387 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eff0 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [738 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422f68d50 envbytes 0xc422f01b00 +peer1.org1.example.com | [60a 12-15 03:49:39.82 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [61d 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU launchAndWaitForRegister fetched 1826 bytes from file system +orderer.example.com | [388 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000eff0 gate 1513309754535775100 evaluation succeeds +peer1.org1.example.com | [60b 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer1.org2.example.com | [653 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +peer0.org1.example.com | [739 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 returned error Chaincode mycc is already instantiated +orderer.example.com | [389 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [60c 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [8d0b5bc9-c3ad-40db-bdd2-fadc4e1a43d6] +peer0.org1.example.com | [73b 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 +peer0.org2.example.com | [61e 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched +orderer.example.com | [38a 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [60d 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [73c 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org2.example.com | [654 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer0.org2.example.com | [61f 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +orderer.example.com | [38b 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +peer1.org1.example.com | [60e 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [8d0b5bc9-c3ad-40db-bdd2-fadc4e1a43d6] +peer0.org1.example.com | [73d 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] +orderer.example.com | [38c 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=mycc:1.0 +peer1.org1.example.com | [60f 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +peer0.org1.example.com | [73e 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | [38d 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer0.org2.example.com | [620 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +peer1.org1.example.com | [610 12-15 03:49:39.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)(0x990ba0), deserializer:(*msp.mspManagerImpl)(0xc42276e9c0)} +peer0.org1.example.com | [73f 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] +orderer.example.com | [38e 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | [611 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated +peer0.org1.example.com | [740 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +orderer.example.com | [38f 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4204f3ea0) start: > stop: > from 172.21.0.8:57094 +peer1.org1.example.com | [612 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89949814]Transaction completed. Sending COMPLETED +peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer0.org2.example.com | [621 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=mycc:1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +peer0.org1.example.com | [741 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> WARN Channel [businesschannel]: Block [4] Transaction index [0] TxId [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] +orderer.example.com | [390 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +peer1.org1.example.com | [613 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89949814]Move state message COMPLETED +peer0.org1.example.com | [742 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org1.example.com | [614 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [89949814]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [391 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +peer0.org2.example.com | [622 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +peer0.org1.example.com | [743 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer1.org1.example.com | [615 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89949814]send state message COMPLETED +orderer.example.com | [392 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[12126], Going to peek [8] bytes +peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer0.org1.example.com | [744 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org2.example.com | [623 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer0.org2.example.com) +peer1.org1.example.com | [616 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89949814]Received message COMPLETED from shim +orderer.example.com | [393 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12124], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org1.example.com | [745 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage +peer1.org1.example.com | [617 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [89949814]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [394 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12124] read from file [0] +peer0.org1.example.com | [73a 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421b99fa0 env 0xc422f68d50 txn 0 +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | [618 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [89949814-0d20-410b-81db-cc8c5cb81d9a]HandleMessage- COMPLETED. Notify +orderer.example.com | [395 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4204f3ea0) for 172.21.0.8:57094 +peer0.org2.example.com | [624 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer0.org1.example.com | [746 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [4] +peer1.org1.example.com | [619 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:89949814-0d20-410b-81db-cc8c5cb81d9a, channelID:businesschannel +orderer.example.com | [396 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.21.0.8:57094 for (0xc4204f3ea0) +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org2.example.com | [625 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer0.org1.example.com | [747 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x16, 0x8f, 0x87, 0x62, 0x56, 0x57, 0x56, 0x27, 0xf7, 0xf4, 0x70, 0xdb, 0x81, 0x94, 0xc0, 0xac, 0xf4, 0x6c, 0x89, 0xd9, 0x2e, 0x92, 0x8f, 0x5e, 0xb2, 0xa6, 0x41, 0xed, 0x97, 0x77, 0x61, 0xc3} txOffsets= +peer1.org1.example.com | [61a 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [397 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.21.0.8:57094 +peer0.org1.example.com | txId=912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 locPointer=offset=70, bytesLength=3454 +peer1.org1.example.com | [61b 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218, error Chaincode mycc is already instantiated +orderer.example.com | [398 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57094 +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 | CORE_CHAINCODE_ID_NAME=mycc:1.0 +peer0.org1.example.com | ] +peer1.org1.example.com | [61c 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] +orderer.example.com | [399 12-15 03:49:14.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57094: rpc error: code = Canceled desc = context canceled +peer0.org1.example.com | [748 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45497, bytesLength=3454] for tx ID: [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] to index +orderer.example.com | [39a 12-15 03:49:14.54 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer1.org1.example.com | [61d 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc421b47600 +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | [749 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45497, bytesLength=3454] for tx number:[0] ID: [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] to blockNumTranNum index +orderer.example.com | [39b 12-15 03:49:15.67 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [74a 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50747], isChainEmpty=[false], lastBlockNumber=[4] +peer1.org2.example.com | [655 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org2.example.com-mycc-1.0) lock +peer1.org1.example.com | [61e 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4226c8120 envbytes 0xc421b47600 +orderer.example.com | [39c 12-15 03:49:15.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57104 +peer0.org1.example.com | [74b 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 4 +peer1.org1.example.com | [61f 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 returned error Chaincode mycc is already instantiated +peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer1.org2.example.com | [656 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org2.example.com-mycc-1.0) lock +peer0.org1.example.com | [74c 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 4 +peer1.org1.example.com | [620 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421d9fbe0 env 0xc4226c8120 txn 0 +orderer.example.com | [39d 12-15 03:49:15.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57104 +peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer1.org1.example.com | [621 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 +peer0.org1.example.com | [74d 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) +orderer.example.com | [39e 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +peer1.org2.example.com | [657 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer1.org2.example.com-mycc-1.0 +peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org1.example.com | [622 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org1.example.com | [74e 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database +peer1.org2.example.com | [658 12-15 03:49:38.05 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer1.org2.example.com-mycc-1.0(No such container: dev-peer1.org2.example.com-mycc-1.0) +peer1.org1.example.com | [623 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [74f 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +orderer.example.com | [39f 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.21.0.8:57106 +peer1.org2.example.com | [659 12-15 03:49:38.06 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer1.org2.example.com-mycc-1.0 (No such container: dev-peer1.org2.example.com-mycc-1.0) +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org1.example.com | [750 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | [3a0 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.21.0.8:57106 +peer1.org1.example.com | [624 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org2.example.com | [65a 12-15 03:49:38.06 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org2.example.com-mycc-1.0 (No such container: dev-peer1.org2.example.com-mycc-1.0) +orderer.example.com | [3a1 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update message for channel businesschannel +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 | [751 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [625 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] +peer1.org2.example.com | [65b 12-15 03:49:38.06 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org2.example.com-mycc-1.0 +orderer.example.com | [3a2 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +peer0.org1.example.com | [752 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to history database +peer0.org2.example.com | [626 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org2.example.com-mycc-1.0) lock +peer1.org2.example.com | [65c 12-15 03:49:38.06 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default +peer1.org1.example.com | [626 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org1.example.com | [753 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +peer0.org2.example.com | [627 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org2.example.com-mycc-1.0) lock +peer1.org2.example.com | [65d 12-15 03:49:38.06 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-mycc-1.0 +orderer.example.com | [3a3 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [627 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> WARN Channel [businesschannel]: Block [4] Transaction index [0] TxId [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] +peer1.org2.example.com | [65e 12-15 03:49:38.06 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 | [754 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +peer1.org1.example.com | [628 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer0.org2.example.com | [628 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org2.example.com-mycc-1.0 +orderer.example.com | [3a4 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +peer0.org1.example.com | [755 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +peer0.org2.example.com | [629 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org2.example.com-mycc-1.0(No such container: dev-peer0.org2.example.com-mycc-1.0) +orderer.example.com | [3a5 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [629 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org2.example.com | [62a 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org2.example.com-mycc-1.0 (No such container: dev-peer0.org2.example.com-mycc-1.0) +peer1.org2.example.com | [65f 12-15 03:49:38.06 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +peer0.org1.example.com | [756 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org2.example.com | [62b 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org2.example.com-mycc-1.0 (No such container: dev-peer0.org2.example.com-mycc-1.0) +peer1.org1.example.com | [62a 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +orderer.example.com | [3a6 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +peer0.org1.example.com | [757 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 +peer0.org2.example.com | [62c 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org2.example.com-mycc-1.0 +orderer.example.com | [3a7 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c040 gate 1513309755692677800 evaluation starts peer1.org2.example.com | FROM hyperledger/fabric-baseos:x86_64-0.4.2 -peer0.org1.example.com | [6a6 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -peer1.org1.example.com | [751 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -peer0.org2.example.com | [610 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2b3c0599]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [6a7 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -orderer.example.com | 0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= +peer1.org1.example.com | [62b 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage +peer0.org2.example.com | [62d 12-15 03:49:30.34 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default +orderer.example.com | [3a8 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c040 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [62e 12-15 03:49:30.35 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-mycc-1.0 peer1.org2.example.com | ADD binpackage.tar /usr/local/bin -peer1.org1.example.com | [753 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: f93b8a8b234c0861a2a63634a0b3f6f4c9d32ad20af95675c0fa62f4b68a057c channel id: businesschannel chaincode id: name:"mycc" -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [752 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [6a8 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d -peer0.org2.example.com | [611 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2b3c0599]Move state message COMPLETED -orderer.example.com | [38f 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [758 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org2.example.com | [62f 12-15 03:49:30.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 +peer1.org1.example.com | [62c 12-15 03:49:39.83 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [4] +orderer.example.com | [3a9 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c040 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b78664b6f3271717459665054415039526b4136796f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455775768634e4d6a63784d6a457a4d444d7a4e5455770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424c493853704e726b4330415968693747496377353237505056364e75682b410a6b6f6b7670516355436746536d373374595a375141556c5446384e2f5642424e51436e464c326b72756b4f4c6431496f4237776e5a6e756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4376615250365a53446c0a64644a716e6e314d784c776b464f716d394d5877324c474f6b38584c72424e574d416f4743437147534d343942414d43413063414d455143494235334a6546780a4f665644446c692b4a6955636b463459376b4d64595550714778477373755948305570694169416f7159577a596a4f4c397071677874495430332f59717370630a62714569362f6c59326b4b30457447526e413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a peer1.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ -peer1.org1.example.com | [755 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer0.org2.example.com | [612 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2b3c0599]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [759 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [630 12-15 03:49:30.35 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +orderer.example.com | [3aa 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP peer1.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -peer0.org1.example.com | [6a9 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [756 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +peer0.org1.example.com | [75a 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | FROM hyperledger/fabric-baseos:x86_64-0.4.2 +peer1.org1.example.com | [62d 12-15 03:49:39.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x16, 0x8f, 0x87, 0x62, 0x56, 0x57, 0x56, 0x27, 0xf7, 0xf4, 0x70, 0xdb, 0x81, 0x94, 0xc0, 0xac, 0xf4, 0x6c, 0x89, 0xd9, 0x2e, 0x92, 0x8f, 0x5e, 0xb2, 0xa6, 0x41, 0xed, 0x97, 0x77, 0x61, 0xc3} txOffsets= +orderer.example.com | [3ab 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +peer0.org2.example.com | ADD binpackage.tar /usr/local/bin peer1.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -peer0.org2.example.com | [613 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2b3c0599]send state message COMPLETED -peer0.org1.example.com | [6aa 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org1.example.com | txId=912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 locPointer=offset=70, bytesLength=3454 +orderer.example.com | [3ac 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c040 principal matched by identity 0 +peer0.org1.example.com | [75b 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ peer1.org2.example.com | org.hyperledger.fabric.version="1.1.0" \ -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -peer1.org1.example.com | [754 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -peer0.org1.example.com | [6ab 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [614 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2b3c0599]Received message COMPLETED from shim -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | [3ad 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 6b e0 92 f3 cb 45 17 6d e4 b4 61 9b 40 f0 6c f0 |k....E.m..a.@.l.| +peer0.org1.example.com | [75c 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ peer1.org2.example.com | org.hyperledger.fabric.base.version="0.4.2" -peer0.org2.example.com | [615 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2b3c0599]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [757 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: f93b8a8b234c0861a2a63634a0b3f6f4c9d32ad20af95675c0fa62f4b68a057c channel id: businesschannel version: 1.1.0 -peer0.org1.example.com | [6ac 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org1.example.com | [758 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=f93b8a8b234c0861a2a63634a0b3f6f4c9d32ad20af95675c0fa62f4b68a057c,syscc=true,proposal=0xc42036d770,canname=escc:1.1.0 +peer0.org1.example.com | [75d 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +orderer.example.com | 00000010 d6 e3 85 a4 59 06 ce f9 e6 38 b3 07 0a 6e 92 b9 |....Y....8...n..| +peer1.org1.example.com | ] +peer0.org1.example.com | [75e 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | org.hyperledger.fabric.version="1.1.0" \ +orderer.example.com | [3ae 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 1a f0 b6 85 95 1e 58 ac ad b8 36 a5 |0D. ......X...6.| peer1.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.1.0 -peer0.org1.example.com | [6ad 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -peer0.org2.example.com | [616 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2b3c0599-3f5b-45f2-ad1e-cfaa140f3478]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [66a 12-12 14:20:03.81 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' -peer1.org1.example.com | [759 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org1.example.com | [6ae 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [617 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:2b3c0599-3f5b-45f2-ad1e-cfaa140f3478, channelID:businesschannel -peer1.org1.example.com | [75a 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -peer1.org2.example.com | [66b 12-12 14:20:03.81 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: -peer0.org2.example.com | [618 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [75c 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer0.org1.example.com | [6af 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -peer1.org2.example.com | [66c 12-12 14:20:03.81 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.1.0 -peer0.org2.example.com | [619 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] -peer1.org1.example.com | [75b 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [6b0 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [66d 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org2.example.com | [61a 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422828380 -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -peer0.org1.example.com | [6b1 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [66e 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [75d 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f93b8a8b]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [61b 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc42316cb40 envbytes 0xc422828380 -peer1.org2.example.com | [66f 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422f69a00 env 0xc422c39a10 txn 0 -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [6b2 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org1.example.com | [75e 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [670 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422c39a10 -orderer.example.com | [390 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [6b3 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [760 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [671 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\215\313\277\321\005\020\254\341\337\036\"\017businesschannel*@21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea:\010\022\006\022\004lscc" signature_header:"\n\236\006\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk\nEEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT\n6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB\n9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf\nZM8rwLlgV6XUeTLW\n-----END CERTIFICATE-----\n\022\030gg\245 ,^sl\007N\340**\"Z YL^\277m\034&\326" -peer0.org2.example.com | [61c 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc423161ce0 env 0xc42316cb40 txn 0 -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | [761 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f93b8a8b]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [6b4 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422d75580 env 0xc422b44690 txn 0 -peer0.org2.example.com | [61d 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [762 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f93b8a8b]Move state message TRANSACTION -peer0.org1.example.com | [6b5 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422b44690 -peer1.org1.example.com | [75f 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org2.example.com | [672 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [61e 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org1.example.com | [764 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -peer0.org1.example.com | [6b6 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\215\313\277\321\005\020\254\341\337\036\"\017businesschannel*@21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea:\010\022\006\022\004lscc" signature_header:"\n\236\006\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk\nEEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT\n6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB\n9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf\nZM8rwLlgV6XUeTLW\n-----END CERTIFICATE-----\n\022\030gg\245 ,^sl\007N\340**\"Z YL^\277m\034&\326" -peer0.org2.example.com | [61f 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -peer1.org2.example.com | [673 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [6b7 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [763 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f93b8a8b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org2.example.com | [674 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP cec57e02e224c3efa1075c97d8c3172cd78fec768b3b75afcf280ac60a493411} -peer0.org2.example.com | [620 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [765 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [6b8 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [621 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [3] -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org2.example.com | [675 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [6b9 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP cec57e02e224c3efa1075c97d8c3172cd78fec768b3b75afcf280ac60a493411} -peer1.org1.example.com | [766 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f93b8a8b]sending state message TRANSACTION -peer0.org2.example.com | [622 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org1.example.com | [6ba 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -peer1.org1.example.com | [767 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f93b8a8b]Received message TRANSACTION from shim -peer0.org2.example.com | [623 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -peer0.org1.example.com | [6bb 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [676 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org1.example.com | [768 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f93b8a8b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [624 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -peer0.org1.example.com | [6bc 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4227b8a80, header channel_header:"\010\003\032\013\010\215\313\277\321\005\020\254\341\337\036\"\017businesschannel*@21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea:\010\022\006\022\004lscc" signature_header:"\n\236\006\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk\nEEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT\n6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB\n9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf\nZM8rwLlgV6XUeTLW\n-----END CERTIFICATE-----\n\022\030gg\245 ,^sl\007N\340**\"Z YL^\277m\034&\326" -peer0.org2.example.com | [625 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -peer1.org2.example.com | [677 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4218b4a80, header channel_header:"\010\003\032\013\010\215\313\277\321\005\020\254\341\337\036\"\017businesschannel*@21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea:\010\022\006\022\004lscc" signature_header:"\n\236\006\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk\nEEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT\n6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB\n9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf\nZM8rwLlgV6XUeTLW\n-----END CERTIFICATE-----\n\022\030gg\245 ,^sl\007N\340**\"Z YL^\277m\034&\326" -peer0.org2.example.com | [626 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] marked as valid by state validator -peer0.org1.example.com | [6bd 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -peer0.org2.example.com | [627 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org2.example.com | [678 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org1.example.com | [769 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f93b8a8b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [628 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org1.example.com | [6be 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [679 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [629 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [76a 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [6bf 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [62a 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage -peer1.org2.example.com | [67a 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [62b 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [3] -peer0.org1.example.com | [6c0 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [76b 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [6c1 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] -orderer.example.com | [391 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -peer0.org2.example.com | [62c 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x34, 0x2, 0x99, 0xb0, 0xd2, 0xb, 0x90, 0x75, 0x7, 0xf4, 0x2a, 0xad, 0x5e, 0xc7, 0xb9, 0xc7, 0x6c, 0xe1, 0x51, 0x1a, 0xa2, 0xad, 0x31, 0x80, 0x80, 0x54, 0x30, 0x62, 0x36, 0xf4, 0xaf, 0xeb} txOffsets= -peer1.org1.example.com | [76c 12-12 14:20:17.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f93b8a8b]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [67b 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -orderer.example.com | [392 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org2.example.com | txId=d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d locPointer=offset=70, bytesLength=3454 -peer1.org1.example.com | [76d 12-12 14:20:17.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f93b8a8b]Move state message COMPLETED -peer0.org1.example.com | [6c2 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [67c 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] -peer0.org2.example.com | ] -peer0.org1.example.com | [6c3 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422b44690 envbytes 0xc420378880 -peer1.org1.example.com | [76e 12-12 14:20:17.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f93b8a8b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [393 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [62d 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40157, bytesLength=3454] for tx ID: [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] to index -peer1.org2.example.com | [67d 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | [76f 12-12 14:20:17.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f93b8a8b]send state message COMPLETED -peer0.org2.example.com | [62e 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40157, bytesLength=3454] for tx number:[0] ID: [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] to blockNumTranNum index -peer0.org1.example.com | [6c4 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc420378880 -peer0.org2.example.com | [62f 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45405], isChainEmpty=[false], lastBlockNumber=[3] -orderer.example.com | [394 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [770 12-12 14:20:17.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f93b8a8b]Received message COMPLETED from shim -peer1.org2.example.com | [67e 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422c39a10 envbytes 0xc421a92000 -peer0.org2.example.com | [630 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 3 -orderer.example.com | [395 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [67f 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc421a92000 -peer1.org1.example.com | [771 12-12 14:20:17.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f93b8a8b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [6c5 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [631 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 3 -orderer.example.com | [396 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [680 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [632 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [3] with 1 transaction(s) -orderer.example.com | [397 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [772 12-12 14:20:17.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f93b8a8b234c0861a2a63634a0b3f6f4c9d32ad20af95675c0fa62f4b68a057c]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [633 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database -peer0.org1.example.com | [6c6 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] -peer1.org2.example.com | [681 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] -peer1.org1.example.com | [773 12-12 14:20:17.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f93b8a8b234c0861a2a63634a0b3f6f4c9d32ad20af95675c0fa62f4b68a057c, channelID:businesschannel -orderer.example.com | [398 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -peer0.org2.example.com | [634 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [6c7 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=224674f0-8b51-49af-a591-b6f947a8266a,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org2.example.com | [635 12-12 14:20:02.65 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org2.example.com-mycc-1.0-15b571b3ce849066b7ec74497da3b27e54e0df1345daff3951b94245ce09c42b -orderer.example.com | [399 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [774 12-12 14:20:17.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [682 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=307440b3-1fb2-43ca-bbf9-1f62fa660b0a,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org1.example.com | [6c8 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea chaindID businesschannel -peer0.org2.example.com | [636 12-12 14:20:02.65 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -orderer.example.com | [39a 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org1.example.com | [775 12-12 14:20:17.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [637 12-12 14:20:02.65 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-mycc-1.0 -peer1.org2.example.com | [683 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea chaindID businesschannel -peer0.org1.example.com | [6c9 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer1.org1.example.com | [776 12-12 14:20:17.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org2.example.com | [638 12-12 14:20:02.74 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org2.example.com-mycc-1.0-15b571b3ce849066b7ec74497da3b27e54e0df1345daff3951b94245ce09c42b -orderer.example.com | [39b 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org1.example.com | [6ca 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [639 12-12 14:20:03.39 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org2.example.com-mycc-1.0 -peer1.org1.example.com | [777 12-12 14:20:17.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [f93b8a8b234c0861a2a63634a0b3f6f4c9d32ad20af95675c0fa62f4b68a057c] -peer0.org1.example.com | [6cb 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer1.org2.example.com | [684 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer0.org2.example.com | [63a 12-12 14:20:03.39 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org2.example.com-mycc-1.0) -orderer.example.com | [39c 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -peer1.org1.example.com | [778 12-12 14:20:17.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:52104) -peer1.org2.example.com | [685 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [63b 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.authenticate)-fm.authenticate -> DEBU Chaincode mycc:1.0 's authentication is authorized -peer0.org1.example.com | [6cc 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [224674f0]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [779 12-12 14:20:17.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -peer0.org2.example.com | [63c 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -orderer.example.com | [39d 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [686 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer1.org1.example.com | [77a 12-12 14:20:17.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [6cd 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [63d 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [687 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [307440b3]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [63e 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [77b 12-12 14:20:17.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 -peer0.org1.example.com | [6ce 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [224674f0]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [688 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [63f 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [6cf 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [224674f0]Move state message TRANSACTION -peer0.org2.example.com | [640 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 -peer1.org1.example.com | [77c 12-12 14:20:17.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [689 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [307440b3]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -peer0.org2.example.com | [641 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED -peer1.org1.example.com | [77d 12-12 14:20:17.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [68a 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [307440b3]Move state message TRANSACTION -peer0.org1.example.com | [6d0 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [224674f0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [642 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org1.example.com | [77e 12-12 14:20:17.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [68b 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [307440b3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [6d1 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [643 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed -peer1.org1.example.com | [77f 12-12 14:20:17.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [68c 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [644 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org1.example.com | [6d2 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [224674f0]sending state message TRANSACTION -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org2.example.com | [645 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [68d 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [307440b3]sending state message TRANSACTION -peer1.org1.example.com | [780 12-12 14:20:17.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [646 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [6d3 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [224674f0]Received message TRANSACTION from shim -peer0.org2.example.com | [647 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21a29b04]Move state message READY -orderer.example.com | BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -peer1.org1.example.com | [781 12-12 14:20:17.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [6d4 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [224674f0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [648 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [21a29b04]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [68e 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [307440b3]Received message TRANSACTION from shim -peer1.org1.example.com | [782 12-12 14:20:17.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [6d5 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [224674f0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [649 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [21a29b04]Entered state ready -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -peer1.org1.example.com | [783 12-12 14:20:17.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [68f 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [307440b3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [6d6 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org2.example.com | [64a 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea, channelID:businesschannel -orderer.example.com | GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -peer1.org1.example.com | [784 12-12 14:20:17.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [690 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [307440b3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [6d7 12-12 14:20:05.50 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 | [64b 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21a29b04]sending state message READY -peer1.org2.example.com | [691 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -peer1.org1.example.com | [785 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] -peer0.org1.example.com | [6d8 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer0.org2.example.com | [64c 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU sending init completed -peer1.org1.example.com | [786 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] -orderer.example.com | xEFWkMtGbgY= -peer1.org2.example.com | [692 12-12 14:20:05.49 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 | [64d 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org1.example.com | [787 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org1.example.com | [6d9 12-12 14:20:05.50 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [64e 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [693 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer0.org2.example.com | [64f 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer0.org1.example.com | [6da 12-12 14:20:05.50 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [788 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [694 12-12 14:20:05.49 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [650 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [21a29b04]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [6db 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org1.example.com | [789 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422495920 env 0xc421c958f0 txn 0 -peer1.org1.example.com | [78a 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421c958f0 -orderer.example.com | [39e 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [651 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [78b 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\241\313\277\321\005\020\250\211\347\344\001\"\017businesschannel*@d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a:\010\022\006\022\004mycc" signature_header:"\n\236\006\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk\nEEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT\n6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB\n9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf\nZM8rwLlgV6XUeTLW\n-----END CERTIFICATE-----\n\022\030\322\371\2771\000\220_B\361\026\262\240y{\306\361\223D\301~\251G\266\034" -peer0.org1.example.com | [6dc 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [7e688c1b-bf35-47d8-9ad2-83e0863dd346] -peer1.org2.example.com | [695 12-12 14:20:05.49 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [78c 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [652 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -peer1.org2.example.com | [696 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org1.example.com | [78d 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [6dd 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org1.example.com | [78e 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP cec57e02e224c3efa1075c97d8c3172cd78fec768b3b75afcf280ac60a493411} -peer0.org2.example.com | [653 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [21a29b04]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [697 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [cc1ab275-4c0c-4133-b7f6-af1979699f07] -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | [78f 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [6de 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [7e688c1b-bf35-47d8-9ad2-83e0863dd346] -peer1.org2.example.com | [698 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | [654 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21a29b04]Move state message INIT -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -peer1.org1.example.com | [790 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [6df 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer1.org2.example.com | [699 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [cc1ab275-4c0c-4133-b7f6-af1979699f07] -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | [791 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc420280000, header channel_header:"\010\003\032\014\010\241\313\277\321\005\020\250\211\347\344\001\"\017businesschannel*@d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a:\010\022\006\022\004mycc" signature_header:"\n\236\006\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk\nEEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT\n6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB\n9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf\nZM8rwLlgV6XUeTLW\n-----END CERTIFICATE-----\n\022\030\322\371\2771\000\220_B\361\026\262\240y{\306\361\223D\301~\251G\266\034" -peer0.org1.example.com | [6e0 12-12 14:20:05.50 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)(0x990b90), deserializer:(*msp.mspManagerImpl)(0xc421bab900)} -peer0.org2.example.com | [655 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [21a29b04]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [69a 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer1.org1.example.com | [792 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [6e1 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated -peer1.org1.example.com | [793 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [656 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -peer1.org2.example.com | [69b 12-12 14:20:05.49 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)(0x990b90), deserializer:(*msp.mspManagerImpl)(0xc42267b8c0)} -peer1.org1.example.com | [794 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [6e2 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [224674f0]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [69c 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated -peer1.org1.example.com | [795 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -peer0.org2.example.com | [657 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21a29b04]sending state message INIT -peer1.org2.example.com | [69d 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [307440b3]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [796 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] -peer0.org1.example.com | [6e3 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [224674f0]Move state message COMPLETED -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -peer1.org2.example.com | [69e 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [307440b3]Move state message COMPLETED -peer0.org2.example.com | [658 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21a29b04]Received message PUT_STATE from shim -peer1.org1.example.com | [797 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [69f 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [307440b3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [659 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [21a29b04]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -peer0.org1.example.com | [6e4 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [224674f0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [798 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc421c958f0 envbytes 0xc42183bc00 -peer1.org2.example.com | [6a0 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [307440b3]send state message COMPLETED -peer0.org1.example.com | [6e5 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [224674f0]send state message COMPLETED -peer0.org2.example.com | [65a 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [799 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [c15fa496-1191-4a6e-afba-0214850833ee] -peer1.org2.example.com | [6a1 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [307440b3]Received message COMPLETED from shim -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -peer0.org2.example.com | [65b 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [21a29b04]state is ready -peer1.org1.example.com | [79a 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [6e6 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [224674f0]Received message COMPLETED from shim -peer1.org2.example.com | [6a2 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [307440b3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [65c 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [21a29b04]Completed PUT_STATE. Sending RESPONSE -peer1.org1.example.com | [79b 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [c15fa496-1191-4a6e-afba-0214850833ee] -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -peer1.org2.example.com | [6a3 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [307440b3-1fb2-43ca-bbf9-1f62fa660b0a]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [6e7 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [224674f0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [79c 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc42183bc00 -peer0.org2.example.com | [65d 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [21a29b04]enterBusyState trigger event RESPONSE -peer1.org2.example.com | [6a4 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:307440b3-1fb2-43ca-bbf9-1f62fa660b0a, channelID:businesschannel -orderer.example.com | OwJpoynNCyKsWozuVw== -peer0.org1.example.com | [6e8 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [224674f0-8b51-49af-a591-b6f947a8266a]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [79d 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [6a5 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [6e9 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:224674f0-8b51-49af-a591-b6f947a8266a, channelID:businesschannel -peer0.org1.example.com | [6ea 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [79e 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] -peer0.org1.example.com | [6eb 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea, error Chaincode mycc is already instantiated -peer1.org2.example.com | [6a6 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea, error Chaincode mycc is already instantiated -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [65e 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21a29b04]Move state message RESPONSE -peer0.org1.example.com | [6ec 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] -peer1.org2.example.com | [6a7 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] -orderer.example.com | [39f 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [79f 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=f183ae52-dca0-46a6-88b5-9e6f084c7665,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org1.example.com | [6ed 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc420378880 -peer0.org2.example.com | [65f 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [21a29b04]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org2.example.com | [6a8 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc421a92000 -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [6ee 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422b44690 envbytes 0xc420378880 -peer1.org1.example.com | [7a0 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a chaindID businesschannel -peer0.org2.example.com | [660 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [6a9 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422c39a10 envbytes 0xc421a92000 -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [6ef 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea returned error Chaincode mycc is already instantiated -peer1.org2.example.com | [6aa 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea returned error Chaincode mycc is already instantiated -peer1.org1.example.com | [7a1 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer0.org2.example.com | [661 12-12 14:20:03.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21a29b04]sending state message RESPONSE -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | [6ab 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422f69a00 env 0xc422c39a10 txn 0 -peer0.org1.example.com | [6f0 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422d75580 env 0xc422b44690 txn 0 -peer1.org2.example.com | [6ac 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 -peer1.org1.example.com | [7a2 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [662 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21a29b04]Received message PUT_STATE from shim -peer1.org2.example.com | [6ad 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -peer1.org1.example.com | [7a3 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer1.org2.example.com | [6ae 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] -peer0.org1.example.com | [6f1 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 -peer0.org2.example.com | [663 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [21a29b04]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | [7a4 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f183ae52]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [6af 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [664 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [6f2 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -peer1.org1.example.com | [7a5 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [6f3 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] -peer0.org2.example.com | [665 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [21a29b04]state is ready -peer1.org2.example.com | [6b0 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] -peer1.org2.example.com | [6b1 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -peer0.org2.example.com | [666 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [21a29b04]Completed PUT_STATE. Sending RESPONSE -peer0.org1.example.com | [6f4 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [7a6 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f183ae52]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [6b2 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> WARN Channel [businesschannel]: Block [4] Transaction index [0] TxId [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] -peer0.org2.example.com | [667 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [21a29b04]enterBusyState trigger event RESPONSE -peer0.org1.example.com | [6f5 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -peer1.org2.example.com | [6b3 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org2.example.com | [668 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21a29b04]Move state message RESPONSE -peer1.org1.example.com | [7a7 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f183ae52]Move state message TRANSACTION -peer1.org2.example.com | [6b4 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org1.example.com | [6f6 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -peer0.org2.example.com | [669 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [21a29b04]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org2.example.com | [6b5 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org1.example.com | [6f7 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> WARN Channel [businesschannel]: Block [4] Transaction index [0] TxId [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] -peer1.org1.example.com | [7a8 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f183ae52]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [7a9 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -peer0.org1.example.com | [6f8 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org1.example.com | [6f9 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org2.example.com | [66a 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [6b6 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage -peer0.org1.example.com | [6fa 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org1.example.com | [7aa 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f183ae52]sending state message TRANSACTION -peer0.org2.example.com | [66b 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21a29b04]sending state message RESPONSE -peer1.org2.example.com | [6b7 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [4] -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -peer0.org1.example.com | [6fb 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage -peer1.org1.example.com | [7ab 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f183ae52]Received message TRANSACTION from shim -peer0.org2.example.com | [66c 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21a29b04]Received message COMPLETED from shim -peer0.org1.example.com | [6fc 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [4] -peer1.org2.example.com | [6b8 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x39, 0x2e, 0x71, 0x22, 0x2a, 0x60, 0xa4, 0x53, 0x7, 0x31, 0x12, 0xb7, 0x15, 0xa2, 0xa0, 0xb7, 0xc6, 0x75, 0x17, 0x40, 0x71, 0xfa, 0xe4, 0x1f, 0xf9, 0x2a, 0xc1, 0x5a, 0xc1, 0x3b, 0xd1, 0xa6} txOffsets= -peer1.org1.example.com | [7ac 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f183ae52]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | OwJpoynNCyKsWozuVw== -peer0.org2.example.com | [66d 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [21a29b04]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [6fd 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x39, 0x2e, 0x71, 0x22, 0x2a, 0x60, 0xa4, 0x53, 0x7, 0x31, 0x12, 0xb7, 0x15, 0xa2, 0xa0, 0xb7, 0xc6, 0x75, 0x17, 0x40, 0x71, 0xfa, 0xe4, 0x1f, 0xf9, 0x2a, 0xc1, 0x5a, 0xc1, 0x3b, 0xd1, 0xa6} txOffsets= -peer1.org1.example.com | [7ad 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f183ae52]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | txId=21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea locPointer=offset=70, bytesLength=3442 -peer0.org2.example.com | [66e 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | txId=21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea locPointer=offset=70, bytesLength=3442 -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [66f 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea, channelID:businesschannel +peer1.org1.example.com | [62e 12-15 03:49:39.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45497, bytesLength=3454] for tx ID: [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] to index +peer0.org2.example.com | org.hyperledger.fabric.base.version="0.4.2" +orderer.example.com | 00000010 bc b9 d8 60 73 93 e4 67 d7 48 bc a7 1a a8 c2 a9 |...`s..g.H......| +peer0.org1.example.com | [75f 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [62f 12-15 03:49:39.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45497, bytesLength=3454] for tx number:[0] ID: [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] to blockNumTranNum index +peer0.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.1.0 +peer1.org2.example.com | [660 12-15 03:49:38.06 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' +peer1.org1.example.com | [630 12-15 03:49:39.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50747], isChainEmpty=[false], lastBlockNumber=[4] +peer0.org2.example.com | [631 12-15 03:49:30.35 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' +peer0.org1.example.com | [760 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [631 12-15 03:49:39.83 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 4 +peer0.org2.example.com | [632 12-15 03:49:30.35 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: +peer1.org2.example.com | [661 12-15 03:49:38.06 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: +orderer.example.com | 00000020 ec 6f 95 cf 02 20 1b 6d 19 da cd 0c ec 08 c6 df |.o... .m........| +peer1.org1.example.com | [632 12-15 03:49:39.84 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 4 +peer0.org2.example.com | [633 12-15 03:49:30.35 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.1.0 +peer1.org2.example.com | [662 12-15 03:49:38.06 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.1.0 +orderer.example.com | 00000030 67 52 f9 2a db 47 4b 1b 35 1b cd 49 fc 6d 1b 9c |gR.*.GK.5..I.m..| +peer0.org1.example.com | [761 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40932 +peer1.org1.example.com | [633 12-15 03:49:39.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) +peer0.org2.example.com | [634 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org1.example.com | [634 12-15 03:49:39.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database +orderer.example.com | 00000040 56 6f 58 b5 d9 24 |VoX..$| +peer1.org2.example.com | [663 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] +peer0.org1.example.com | [762 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422734870 +peer0.org2.example.com | [635 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org1.example.com | [635 12-15 03:49:39.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +orderer.example.com | [3af 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c040 principal evaluation succeeds for identity 0 +peer1.org2.example.com | [664 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] +peer0.org1.example.com | [763 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [636 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4223bd540 env 0xc422e4b1d0 txn 0 +peer1.org1.example.com | [636 12-15 03:49:39.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | [764 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [637 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422e4b1d0 +peer1.org2.example.com | [665 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org1.example.com | [637 12-15 03:49:39.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer0.org1.example.com | [765 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +peer0.org2.example.com | [638 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\302\214\315\321\005\020\330\373\345\362\001\"\017businesschannel*@2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A\nkokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl\nddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx\nOfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc\nbqEi6/lY2kK0EtGRnA==\n-----END CERTIFICATE-----\n\022\030\360\322\223\024\006\367v)\004\2763}\343\325\211>u\207\006\206\303J\267&" +orderer.example.com | [3b0 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c040 gate 1513309755692677800 evaluation succeeds +peer1.org1.example.com | [638 12-15 03:49:39.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to history database +peer0.org2.example.com | [639 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [666 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +orderer.example.com | [3b1 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [639 12-15 03:49:39.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +peer0.org2.example.com | [63a 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [3b2 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [766 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [667 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421f68800 env 0xc421b25830 txn 0 +peer1.org1.example.com | [63a 12-15 03:49:39.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +peer0.org2.example.com | [63b 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +orderer.example.com | [3b3 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +peer1.org2.example.com | [668 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421b25830 +peer1.org1.example.com | [63b 12-15 03:49:39.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +peer0.org2.example.com | [63c 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [63c 12-15 03:49:39.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org2.example.com | [63d 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [3b4 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +peer0.org1.example.com | [767 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [669 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\312\214\315\321\005\020\364\336\342\240\001\"\017businesschannel*@912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv\nVLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7\nYoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2\n8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0\nN5+z/fTTfchGfLaCtzM=\n-----END CERTIFICATE-----\n\022\030\326l\271@\240_\234\374\202\363\340\311\352\370z/\356\364\027\215~\330Da" +peer1.org1.example.com | [63d 12-15 03:49:39.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 +peer0.org1.example.com | [768 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42273e1e0, header 0xc4227348a0 +peer0.org2.example.com | [63e 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422edd500, header channel_header:"\010\003\032\014\010\302\214\315\321\005\020\330\373\345\362\001\"\017businesschannel*@2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A\nkokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl\nddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx\nOfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc\nbqEi6/lY2kK0EtGRnA==\n-----END CERTIFICATE-----\n\022\030\360\322\223\024\006\367v)\004\2763}\343\325\211>u\207\006\206\303J\267&" +peer1.org1.example.com | [63e 12-15 03:49:39.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +orderer.example.com | [3b5 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +peer1.org2.example.com | [66a 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [769 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" +peer1.org1.example.com | [63f 12-15 03:49:39.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [66b 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [63f 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +orderer.example.com | [3b6 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +peer0.org1.example.com | [76a 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e +peer1.org1.example.com | [640 12-15 03:49:39.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [66c 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 73763341eb604cef734e4ac7c2ea77bc9d730c798fb96eb583c0637692a88acd} +peer0.org1.example.com | [76b 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] +peer0.org2.example.com | [640 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +orderer.example.com | [3b7 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org1.example.com | [641 12-15 03:49:39.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [66d 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [3b8 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org1.example.com | [642 12-15 03:49:39.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [76c 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [641 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org2.example.com | [66e 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [643 12-15 03:49:39.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [642 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer1.org2.example.com | [66f 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422754a80, header channel_header:"\010\003\032\014\010\312\214\315\321\005\020\364\336\342\240\001\"\017businesschannel*@912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv\nVLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7\nYoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2\n8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0\nN5+z/fTTfchGfLaCtzM=\n-----END CERTIFICATE-----\n\022\030\326l\271@\240_\234\374\202\363\340\311\352\370z/\356\364\027\215~\330Da" +orderer.example.com | [3b9 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org1.example.com | [644 12-15 03:49:39.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [76d 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] +peer1.org2.example.com | [670 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org2.example.com | [643 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] +peer1.org1.example.com | [645 12-15 03:49:39.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [671 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [76e 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e channel id: businesschannel +peer0.org2.example.com | [644 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer1.org1.example.com | [646 12-15 03:49:39.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [672 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [76f 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e,syscc=true,proposal=0xc42273e1e0,canname=lscc:1.1.0 +peer1.org1.example.com | [647 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:41316 +peer0.org2.example.com | [645 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422e4b1d0 envbytes 0xc4228ba880 +orderer.example.com | [3ba 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [673 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [770 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer0.org2.example.com | [646 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc4228ba880 +peer1.org1.example.com | [648 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421fbaba0 +orderer.example.com | [3bb 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [771 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [674 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] +peer1.org1.example.com | [649 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [647 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [3bc 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [772 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer1.org1.example.com | [64a 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [648 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] +peer1.org2.example.com | [675 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +orderer.example.com | [3bd 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [649 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=a1cb6cfc-b307-4e49-bd7c-2cbfde82d510,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer1.org1.example.com | [64b 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +peer1.org2.example.com | [676 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc421b25830 envbytes 0xc422758d80 +peer0.org1.example.com | [773 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [522aba04]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [3be 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org1.example.com | [64c 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [677 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422758d80 +peer0.org2.example.com | [64a 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 chaindID businesschannel +orderer.example.com | [3bf 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [774 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [678 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [3c0 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org2.example.com | [64b 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer0.org1.example.com | [775 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [64d 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [64c 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [679 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] +orderer.example.com | [3c1 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [64e 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422b2ed70, header 0xc421fbabd0 +peer0.org1.example.com | [776 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [522aba04]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [3c2 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org2.example.com | [64d 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer1.org2.example.com | [67a 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=66a766f4-ea5a-4616-9be2-d0771f6c0322,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer1.org1.example.com | [64f 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" +peer1.org2.example.com | [67b 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 chaindID businesschannel +peer1.org1.example.com | [650 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: e9bb883c5817b66047a119003f67cb51ed0a4074bf562ffa0a3fd6958d38874d +peer0.org1.example.com | [777 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Move state message TRANSACTION +orderer.example.com | [3c3 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [64e 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a1cb6cfc]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [67c 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer0.org1.example.com | [778 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [651 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [e9bb883c5817b66047a119003f67cb51ed0a4074bf562ffa0a3fd6958d38874d] +orderer.example.com | [3c4 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [67d 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [779 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [77a 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]sending state message TRANSACTION +peer1.org2.example.com | [67e 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer0.org2.example.com | [64f 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [650 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a1cb6cfc]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [651 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1cb6cfc]Move state message TRANSACTION +peer1.org1.example.com | [652 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [67f 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66a766f4]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [77b 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [522aba04]Received message TRANSACTION from shim +peer0.org2.example.com | [652 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a1cb6cfc]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [680 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [3c5 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [77c 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [522aba04]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [653 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [e9bb883c5817b66047a119003f67cb51ed0a4074bf562ffa0a3fd6958d38874d] +peer1.org2.example.com | [681 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66a766f4]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [653 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [3c6 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [77d 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [522aba04]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [3c7 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP +peer1.org1.example.com | [654 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: e9bb883c5817b66047a119003f67cb51ed0a4074bf562ffa0a3fd6958d38874d channel id: businesschannel +peer1.org2.example.com | [682 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66a766f4]Move state message TRANSACTION +peer0.org1.example.com | [77e 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [522aba04]Sending GET_STATE +orderer.example.com | [3c8 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins +peer0.org2.example.com | [654 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1cb6cfc]sending state message TRANSACTION +peer1.org2.example.com | [683 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66a766f4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [655 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1cb6cfc]Received message TRANSACTION from shim +peer1.org1.example.com | [655 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=e9bb883c5817b66047a119003f67cb51ed0a4074bf562ffa0a3fd6958d38874d,syscc=true,proposal=0xc422b2ed70,canname=lscc:1.1.0 +peer0.org1.example.com | [77f 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Received message GET_STATE from shim +orderer.example.com | [3c9 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +peer1.org2.example.com | [684 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [780 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [685 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66a766f4]sending state message TRANSACTION +peer1.org2.example.com | [686 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66a766f4]Received message TRANSACTION from shim +peer0.org1.example.com | [781 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [522aba04]Received GET_STATE, invoking get state from ledger +peer1.org1.example.com | [656 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer1.org2.example.com | [687 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66a766f4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [3ca 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +peer0.org2.example.com | [656 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a1cb6cfc]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [783 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [522aba04] getting state for chaincode lscc, key mycc, channel businesschannel +peer1.org1.example.com | [657 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [688 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [66a766f4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [657 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a1cb6cfc]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [3cb 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +peer1.org1.example.com | [658 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer0.org1.example.com | [784 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | [3cc 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +peer0.org2.example.com | [658 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org2.example.com | [689 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org1.example.com | [659 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e9bb883c]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [785 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [522aba04]Got state. Sending RESPONSE +orderer.example.com | [3cd 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +peer1.org1.example.com | [65a 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [659 12-15 03:49:32.18 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 | [68a 12-15 03:49:39.78 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 | [786 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [522aba04]handleGetState serial send RESPONSE +peer1.org1.example.com | [65b 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [3ce 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +peer0.org2.example.com | [65a 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer1.org2.example.com | [68b 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer0.org1.example.com | [787 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [522aba04]Received message RESPONSE from shim +peer1.org1.example.com | [65c 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e9bb883c]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [3cf 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org1MSP] +peer1.org2.example.com | [68c 12-15 03:49:39.78 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [788 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [522aba04]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org1.example.com | [65d 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e9bb883c]Move state message TRANSACTION +orderer.example.com | [3d0 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP +peer0.org2.example.com | [65b 12-15 03:49:32.19 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [68d 12-15 03:49:39.78 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [3d1 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP +peer0.org1.example.com | [789 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [522aba04]before send +peer1.org1.example.com | [65e 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e9bb883c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [68e 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer0.org2.example.com | [65c 12-15 03:49:32.19 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [3d2 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org1MSP looking up path [] +peer1.org1.example.com | [65f 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [78a 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [522aba04]after send +peer1.org2.example.com | [68f 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [4af93a2e-3337-468f-a9a4-56f080b3dbd3] +orderer.example.com | [3d3 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +peer1.org2.example.com | [690 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [78b 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [522aba04]Received RESPONSE, communicated (state:ready) +peer1.org1.example.com | [660 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e9bb883c]sending state message TRANSACTION +peer1.org1.example.com | [661 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e9bb883c]Received message TRANSACTION from shim +peer0.org2.example.com | [65d 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer0.org1.example.com | [78c 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [522aba04]GetState received payload RESPONSE +peer1.org1.example.com | [662 12-15 03:49:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e9bb883c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [3d4 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42026c2a0 gate 1513309755703050700 evaluation starts +peer1.org2.example.com | [691 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [4af93a2e-3337-468f-a9a4-56f080b3dbd3] +peer0.org1.example.com | [78d 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [522aba04]Transaction completed. Sending COMPLETED +orderer.example.com | [3d5 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c2a0 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [65e 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [f6059647-df3c-45b8-8072-d2e6b7bd962b] +peer1.org1.example.com | [663 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e9bb883c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [3d6 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c2a0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b78664b6f3271717459665054415039526b4136796f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455775768634e4d6a63784d6a457a4d444d7a4e5455770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424c493853704e726b4330415968693747496377353237505056364e75682b410a6b6f6b7670516355436746536d373374595a375141556c5446384e2f5642424e51436e464c326b72756b4f4c6431496f4237776e5a6e756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4376615250365a53446c0a64644a716e6e314d784c776b464f716d394d5877324c474f6b38584c72424e574d416f4743437147534d343942414d43413063414d455143494235334a6546780a4f665644446c692b4a6955636b463459376b4d64595550714778477373755948305570694169416f7159577a596a4f4c397071677874495430332f59717370630a62714569362f6c59326b4b30457447526e413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [692 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +peer0.org2.example.com | [65f 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [78e 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [522aba04]Move state message COMPLETED +peer1.org1.example.com | [664 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [e9bb883c]Sending GET_STATE +peer1.org2.example.com | [693 12-15 03:49:39.78 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)(0x990ba0), deserializer:(*msp.mspManagerImpl)(0xc4226e8fa0)} +orderer.example.com | [3d7 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +peer0.org2.example.com | [660 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [f6059647-df3c-45b8-8072-d2e6b7bd962b] +peer1.org2.example.com | [694 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated +peer1.org1.example.com | [665 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e9bb883c]Received message GET_STATE from shim +peer0.org1.example.com | [78f 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [522aba04]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [3d8 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c2a0 principal matched by identity 0 +peer1.org2.example.com | [695 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66a766f4]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [666 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e9bb883c]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | [3d9 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 bd 5c 5b b3 5f 33 24 75 a7 5c 33 ff c3 a0 2e 60 |.\[._3$u.\3....`| +peer0.org1.example.com | [790 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [522aba04]send state message COMPLETED +peer0.org2.example.com | [661 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +peer1.org2.example.com | [696 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66a766f4]Move state message COMPLETED +orderer.example.com | 00000010 02 b6 b3 e3 12 8b ad 19 4b 55 e5 75 b0 8c 87 4e |........KU.u...N| +peer1.org1.example.com | [667 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [e9bb883c]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [697 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66a766f4]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [782 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [662 12-15 03:49:32.19 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)(0x990ba0), deserializer:(*msp.mspManagerImpl)(0xc422750e80)} +orderer.example.com | [3da 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 9b ec d5 2a d3 c0 d4 32 36 55 ba |0E.!....*...26U.| +peer1.org2.example.com | [698 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66a766f4]send state message COMPLETED +peer0.org1.example.com | [791 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Received message COMPLETED from shim +peer1.org2.example.com | [699 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66a766f4]Received message COMPLETED from shim +orderer.example.com | 00000010 22 54 79 79 1d c0 4e e9 ae 42 41 f3 2b 73 e8 b0 |"Tyy..N..BA.+s..| +peer1.org1.example.com | [668 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [663 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer1.org2.example.com | [69a 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66a766f4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 00000020 6c 0c 1a d2 15 02 20 69 e5 c0 5c 04 19 3d 97 8f |l..... i..\..=..| +peer0.org1.example.com | [792 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [669 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e9bb883c] getting state for chaincode lscc, key mycc, channel businesschannel +orderer.example.com | 00000030 f4 7b 2d 6a 1d 03 19 73 27 9e 52 a9 5d b9 65 75 |.{-j...s'.R.].eu| +peer0.org2.example.com | [664 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1cb6cfc]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [69b 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66a766f4-ea5a-4616-9be2-d0771f6c0322]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [793 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e]HandleMessage- COMPLETED. Notify +orderer.example.com | 00000040 5a 08 1a d4 4b bf da |Z...K..| +peer1.org1.example.com | [66a 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org2.example.com | [665 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1cb6cfc]Move state message COMPLETED +peer1.org2.example.com | [69c 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:66a766f4-ea5a-4616-9be2-d0771f6c0322, channelID:businesschannel +orderer.example.com | [3db 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c2a0 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [794 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e, channelID:businesschannel +orderer.example.com | [3dc 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42026c2a0 gate 1513309755703050700 evaluation succeeds +peer1.org2.example.com | [69d 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [66b 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e9bb883c]Got state. Sending RESPONSE +peer0.org1.example.com | [795 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [3dd 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [666 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a1cb6cfc]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [69e 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218, error Chaincode mycc is already instantiated +peer0.org1.example.com | [796 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInsantiationPolicy.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer1.org1.example.com | [66c 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [e9bb883c]handleGetState serial send RESPONSE +orderer.example.com | [3de 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [69f 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] +peer0.org2.example.com | [667 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1cb6cfc]send state message COMPLETED +peer1.org1.example.com | [66d 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e9bb883c]Received message RESPONSE from shim +orderer.example.com | [3df 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [6a0 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422758d80 +peer0.org1.example.com | [797 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e channel id: businesschannel version: 1.0 +peer0.org2.example.com | [668 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1cb6cfc]Received message COMPLETED from shim +orderer.example.com | [3e0 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [6a1 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc421b25830 envbytes 0xc422758d80 +peer1.org1.example.com | [66e 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e9bb883c]Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | [3e1 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [798 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e,syscc=false,proposal=0xc42273e1e0,canname=mycc:1.0 +peer1.org2.example.com | [6a2 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 returned error Chaincode mycc is already instantiated +peer0.org2.example.com | [669 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a1cb6cfc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [3e2 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [799 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 +peer1.org2.example.com | [6a3 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421f68800 env 0xc421b25830 txn 0 +orderer.example.com | [3e3 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [66f 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [e9bb883c]before send +peer0.org2.example.com | [66a 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a1cb6cfc-b307-4e49-bd7c-2cbfde82d510]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [79a 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [6a4 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 +orderer.example.com | [3e4 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [670 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [e9bb883c]after send +peer0.org2.example.com | [66b 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:a1cb6cfc-b307-4e49-bd7c-2cbfde82d510, channelID:businesschannel +peer1.org2.example.com | [6a5 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +orderer.example.com | [3e5 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer0.org1.example.com | [79b 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +peer1.org2.example.com | [6a6 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] +orderer.example.com | [3e6 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [671 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [e9bb883c]Received RESPONSE, communicated (state:ready) +peer0.org2.example.com | [66c 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [6a7 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | [3e7 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [672 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [e9bb883c]GetState received payload RESPONSE +peer1.org2.example.com | [6a8 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] +peer0.org2.example.com | [66d 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] +peer0.org1.example.com | [79c 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [522aba04]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [3e8 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [6a9 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org2.example.com | [66e 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc4228ba880 +peer0.org1.example.com | [79d 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [673 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e9bb883c]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [6aa 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> WARN Channel [businesschannel]: Block [4] Transaction index [0] TxId [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] +peer0.org2.example.com | [66f 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422e4b1d0 envbytes 0xc4228ba880 +orderer.example.com | [3e9 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org1.example.com | [79e 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [6ab 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org1.example.com | [674 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e9bb883c]Move state message COMPLETED +peer0.org2.example.com | [670 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4223bd540 env 0xc422e4b1d0 txn 0 +orderer.example.com | [3ea 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org2.example.com | [6ac 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org2.example.com | [671 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org1.example.com | [79f 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [522aba04]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [7a0 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Move state message TRANSACTION +orderer.example.com | [3eb 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org2.example.com | [6ad 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org2.example.com | [672 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org1.example.com | [675 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e9bb883c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [7a1 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [3ec 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [6ae 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage +peer0.org2.example.com | [673 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] +peer1.org1.example.com | [676 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e9bb883c]send state message COMPLETED +peer0.org1.example.com | [7a2 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [674 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | [3ed 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [6af 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [4] +peer1.org1.example.com | [677 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e9bb883c]Received message COMPLETED from shim +peer0.org1.example.com | [7a3 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]sending state message TRANSACTION +peer0.org2.example.com | [675 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [3] +peer1.org2.example.com | [6b0 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x16, 0x8f, 0x87, 0x62, 0x56, 0x57, 0x56, 0x27, 0xf7, 0xf4, 0x70, 0xdb, 0x81, 0x94, 0xc0, 0xac, 0xf4, 0x6c, 0x89, 0xd9, 0x2e, 0x92, 0x8f, 0x5e, 0xb2, 0xa6, 0x41, 0xed, 0x97, 0x77, 0x61, 0xc3} txOffsets= +orderer.example.com | [3ee 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [678 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e9bb883c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [7a4 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Received message GET_STATE from shim +orderer.example.com | [3ef 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [676 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer1.org2.example.com | txId=912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 locPointer=offset=70, bytesLength=3454 +peer1.org1.example.com | [679 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e9bb883c5817b66047a119003f67cb51ed0a4074bf562ffa0a3fd6958d38874d]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [7a5 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [677 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +orderer.example.com | [3f0 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [67a 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e9bb883c5817b66047a119003f67cb51ed0a4074bf562ffa0a3fd6958d38874d, channelID:businesschannel +peer0.org1.example.com | [7a6 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [522aba04]Received GET_STATE, invoking get state from ledger +peer0.org2.example.com | [678 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc peer1.org2.example.com | ] -peer0.org1.example.com | ] -peer1.org1.example.com | [7ae 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | [3a0 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | [7af 12-12 14:20:19.54 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 | [6fe 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45475, bytesLength=3442] for tx ID: [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] to index -peer1.org2.example.com | [6b9 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45475, bytesLength=3442] for tx ID: [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] to index -peer0.org2.example.com | [670 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [6ff 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45475, bytesLength=3442] for tx number:[0] ID: [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] to blockNumTranNum index -peer1.org1.example.com | [7b0 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | [3a1 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [700 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50711], isChainEmpty=[false], lastBlockNumber=[4] -peer1.org2.example.com | [6ba 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45475, bytesLength=3442] for tx number:[0] ID: [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] to blockNumTranNum index -peer1.org1.example.com | [7b1 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f183ae52]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [671 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [701 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 4 -orderer.example.com | [3a2 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [6bb 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50711], isChainEmpty=[false], lastBlockNumber=[4] -peer0.org1.example.com | [702 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 4 -peer0.org2.example.com | [672 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org1.example.com | [7b2 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f183ae52]Move state message COMPLETED -peer0.org1.example.com | [703 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) -peer1.org2.example.com | [6bc 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 4 -orderer.example.com | [3a3 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [704 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database -peer0.org2.example.com | [673 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] -peer1.org2.example.com | [6bd 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 4 -peer0.org1.example.com | [705 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [7b3 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f183ae52]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [674 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [706 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -orderer.example.com | [3a4 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [6be 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) -peer0.org2.example.com | [675 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea channel id: businesschannel chaincode id: name:"lscc" -orderer.example.com | [3a5 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org1.example.com | [707 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [7b4 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f183ae52]send state message COMPLETED -peer1.org2.example.com | [6bf 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database -peer0.org2.example.com | [676 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -orderer.example.com | [3a6 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [708 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to history database -peer1.org1.example.com | [7b5 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f183ae52]Received message COMPLETED from shim -peer1.org2.example.com | [6c0 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [677 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea channel id: businesschannel version: 1.1.0 -orderer.example.com | [3a7 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [709 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -peer1.org1.example.com | [7b6 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f183ae52]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [678 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea,syscc=true,proposal=0xc422d90e10,canname=escc:1.1.0 -peer0.org1.example.com | [70a 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -peer0.org2.example.com | [679 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -orderer.example.com | [3a8 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer1.org2.example.com | [6c1 12-12 14:20:09.77 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer1.org2.example.com-mycc-1.0-26c2ef32838554aac4f7ad6f100aca865e87959c9a126e86d764c8d01f8346ab -peer0.org1.example.com | [70b 12-12 14:20:05.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -peer1.org1.example.com | [7b7 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f183ae52-dca0-46a6-88b5-9e6f084c7665]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [6c2 12-12 14:20:09.77 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -orderer.example.com | [3a9 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -peer0.org1.example.com | [70c 12-12 14:20:05.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org2.example.com | [67a 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [7b8 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f183ae52-dca0-46a6-88b5-9e6f084c7665, channelID:businesschannel -orderer.example.com | [3aa 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [70d 12-12 14:20:05.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea -peer0.org2.example.com | [67b 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer1.org2.example.com | [6c3 12-12 14:20:09.77 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-mycc-1.0 -orderer.example.com | MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -peer1.org1.example.com | [7b9 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [70e 12-12 14:20:05.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [7ba 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] -peer0.org1.example.com | [70f 12-12 14:20:05.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [67c 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [21a29b04]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [6c4 12-12 14:20:09.85 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org2.example.com-mycc-1.0-26c2ef32838554aac4f7ad6f100aca865e87959c9a126e86d764c8d01f8346ab -peer1.org1.example.com | [7bb 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc42183bc00 -peer0.org2.example.com | [67d 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [710 12-12 14:20:05.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | [67e 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [6c5 12-12 14:20:10.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org2.example.com-mycc-1.0 -peer0.org1.example.com | [711 12-12 14:20:05.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [7bc 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc421c958f0 envbytes 0xc42183bc00 -peer0.org2.example.com | [67f 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [21a29b04]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [6c6 12-12 14:20:10.33 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org2.example.com-mycc-1.0) -peer0.org1.example.com | [712 12-12 14:20:05.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [6c7 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.authenticate)-fm.authenticate -> DEBU Chaincode mycc:1.0 's authentication is authorized -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer1.org1.example.com | [7bd 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422495920 env 0xc421c958f0 txn 0 -peer0.org1.example.com | [713 12-12 14:20:05.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [680 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21a29b04]Move state message TRANSACTION -peer1.org2.example.com | [6c8 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [7be 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org1.example.com | [714 12-12 14:20:05.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [6c9 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | [7bf 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer1.org2.example.com | [6ca 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org1.example.com | [715 12-12 14:20:05.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [681 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [21a29b04]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [7c0 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer1.org2.example.com | [6cb 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org1.example.com | [716 12-12 14:20:05.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -peer0.org2.example.com | [682 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [7c1 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [6cc 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 -peer0.org1.example.com | [717 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36752 -peer0.org2.example.com | [683 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21a29b04]sending state message TRANSACTION -peer1.org2.example.com | [6cd 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED -orderer.example.com | +8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer1.org1.example.com | [7c2 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [6] -peer1.org2.example.com | [6ce 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org1.example.com | [718 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422fd4570 -peer1.org1.example.com | [7c3 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -peer1.org2.example.com | [6cf 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed -peer0.org2.example.com | [684 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [7c4 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -orderer.example.com | SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -peer0.org2.example.com | [685 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccmycc] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] -peer1.org2.example.com | [6d0 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org1.example.com | [7c5 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -peer0.org1.example.com | [719 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [6d1 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | cNvAXU8LlQ== -peer0.org2.example.com | [686 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer1.org1.example.com | [7c6 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer0.org1.example.com | [71a 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [7c7 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=a -peer1.org2.example.com | [6d2 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [687 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [6d3 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [675dcac4]Move state message READY -peer1.org1.example.com | [7c8 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -peer0.org2.example.com | [688 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [21a29b04]Received message TRANSACTION from shim -peer0.org1.example.com | [71b 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -peer1.org2.example.com | [6d4 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [675dcac4]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | [3ab 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [689 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [21a29b04]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [7c9 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=b -peer0.org1.example.com | [71c 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [68a 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [21a29b04]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [6d5 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [675dcac4]Entered state ready -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [68b 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [71d 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [7ca 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -peer0.org2.example.com | [68c 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [6d6 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:675dcac41df7f9d767dd5ca35ac0e8e37e788658288f44ec7c98739b55a584c0, channelID:businesschannel -peer0.org1.example.com | [71e 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422fd23c0, header 0xc422fd45a0 -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | [7cb 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] marked as valid by state validator -peer0.org2.example.com | [68d 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [21a29b04]Transaction completed. Sending COMPLETED -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer0.org1.example.com | [71f 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -peer1.org2.example.com | [6d7 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [675dcac4]sending state message READY -peer1.org1.example.com | [7cc 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org2.example.com | [68e 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [21a29b04]Move state message COMPLETED -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | [6d8 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU sending init completed -peer0.org1.example.com | [720 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer1.org1.example.com | [7cd 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org2.example.com | [68f 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [21a29b04]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [6d9 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [690 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [21a29b04]send state message COMPLETED -peer1.org1.example.com | [7ce 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org1.example.com | [721 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] -peer1.org2.example.com | [6da 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [7cf 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage -peer0.org1.example.com | [722 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -peer0.org2.example.com | [691 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21a29b04]Received message COMPLETED from shim -peer1.org2.example.com | [6db 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer0.org1.example.com | [723 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] -peer1.org1.example.com | [7d0 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [6] -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -peer0.org2.example.com | [692 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [21a29b04]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [6dc 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [675dcac4]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [7d1 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x1b, 0x80, 0x67, 0xcc, 0xf8, 0xad, 0x90, 0xca, 0xc9, 0x3a, 0x94, 0x5b, 0x5c, 0x45, 0x7f, 0xc3, 0xbc, 0xd9, 0x89, 0x55, 0xf6, 0xf7, 0xb, 0x3d, 0x1f, 0x3b, 0xee, 0xd0, 0x48, 0xdd, 0x9e, 0xe0} txOffsets= -peer0.org1.example.com | [724 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 channel id: businesschannel -peer0.org2.example.com | [693 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea]HandleMessage- COMPLETED. Notify -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -peer1.org2.example.com | [6dd 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | txId=d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a locPointer=offset=70, bytesLength=2907 -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -peer0.org1.example.com | [725 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7,syscc=true,proposal=0xc422fd23c0,canname=lscc:1.1.0 -peer1.org2.example.com | [6de 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -peer0.org2.example.com | [694 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea, channelID:businesschannel -peer1.org1.example.com | ] -orderer.example.com | ZM8rwLlgV6XUeTLW -peer0.org1.example.com | [726 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org2.example.com | [695 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [727 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [728 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer1.org1.example.com | [7d2 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55561, bytesLength=2907] for tx ID: [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] to index -peer0.org2.example.com | [696 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [6df 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [675dcac4]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [729 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [772505a9]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [697 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | [3ac 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [72a 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [6e0 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [675dcac4]Move state message TRANSACTION -peer1.org1.example.com | [7d3 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55561, bytesLength=2907] for tx number:[0] ID: [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] to blockNumTranNum index -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [698 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] -peer1.org2.example.com | [6e1 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [675dcac4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [72b 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [6e2 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [7d4 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60263], isChainEmpty=[false], lastBlockNumber=[6] -peer1.org2.example.com | [6e3 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [675dcac4]sending state message TRANSACTION -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [72c 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [772505a9]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [699 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:34934) -peer1.org1.example.com | [7d5 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 6 -peer1.org2.example.com | [6e4 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [675dcac4]Received message GET_STATE from shim -peer0.org2.example.com | [69a 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [72d 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Move state message TRANSACTION -peer0.org2.example.com | [69b 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer1.org1.example.com | [7d6 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 6 -peer1.org2.example.com | [6e5 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [675dcac4]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [69c 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -peer0.org1.example.com | [72e 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | [6e6 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [675dcac4]Received GET_STATE, invoking get state from ledger -peer1.org1.example.com | [7d7 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) -peer0.org2.example.com | [69d 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [72f 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [7d8 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database -peer1.org2.example.com | [6e7 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [69e 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -peer0.org1.example.com | [730 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]sending state message TRANSACTION -peer0.org2.example.com | [69f 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d -peer1.org1.example.com | [7d9 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [6e8 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [675dcac4] getting state for chaincode mycc, key a, channel businesschannel -peer0.org1.example.com | [731 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [772505a9]Received message TRANSACTION from shim -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -peer0.org1.example.com | [732 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [772505a9]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [6e9 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=a -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -peer0.org1.example.com | [733 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [772505a9]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [6a0 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -peer1.org1.example.com | [7da 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [734 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [772505a9]Sending GET_STATE -peer0.org2.example.com | [6a1 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [6ea 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [675dcac4]Got state. Sending RESPONSE -peer0.org1.example.com | [735 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Received message GET_STATE from shim -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -peer1.org1.example.com | [7db 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer1.org2.example.com | [6eb 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [675dcac4]handleGetState serial send RESPONSE -peer0.org1.example.com | [736 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [6a2 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [6ec 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [675dcac4]Received message COMPLETED from shim -peer1.org1.example.com | [7dc 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer0.org2.example.com | [6a3 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [737 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [772505a9]Received GET_STATE, invoking get state from ledger -orderer.example.com | ZM8rwLlgV6XUeTLW -peer1.org2.example.com | [6ed 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [675dcac4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [6a4 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [7dd 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [6ee 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [675dcac41df7f9d767dd5ca35ac0e8e37e788658288f44ec7c98739b55a584c0]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [738 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [6a5 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [7de 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database -orderer.example.com | [3ad 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org2.example.com | [6a6 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [6ef 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:675dcac41df7f9d767dd5ca35ac0e8e37e788658288f44ec7c98739b55a584c0, channelID:businesschannel -peer0.org1.example.com | [739 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [772505a9] getting state for chaincode lscc, key mycc, channel businesschannel -peer1.org1.example.com | [7df 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -peer0.org2.example.com | [6a7 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [6f0 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [73a 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | [3ae 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -peer1.org1.example.com | [7e0 12-12 14:20:19.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -peer0.org2.example.com | [6a8 12-12 14:20:03.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [73b 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [772505a9]Got state. Sending RESPONSE -peer1.org2.example.com | [6f1 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | [3af 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer0.org2.example.com | [6a9 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] -peer1.org2.example.com | [6f2 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | [3b0 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -peer0.org2.example.com | [6aa 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] -peer0.org1.example.com | [73c 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [772505a9]handleGetState serial send RESPONSE -peer1.org1.example.com | [7e1 12-12 14:20:19.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [6f3 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [675dcac41df7f9d767dd5ca35ac0e8e37e788658288f44ec7c98739b55a584c0] -orderer.example.com | [3b1 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -peer0.org2.example.com | [6ab 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org1.example.com | [73d 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [772505a9]Received message RESPONSE from shim -peer1.org2.example.com | [6f4 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [3b2 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -peer0.org2.example.com | [6ac 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [7e2 12-12 14:20:19.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a -peer0.org1.example.com | [73e 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [772505a9]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org1.example.com | [7e3 12-12 14:20:19.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [6ad 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421d27760 env 0xc421c34de0 txn 0 -peer1.org2.example.com | [6f6 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 675dcac41df7f9d767dd5ca35ac0e8e37e788658288f44ec7c98739b55a584c0 channel id: businesschannel chaincode id: name:"mycc" -orderer.example.com | [3b3 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -peer0.org1.example.com | [73f 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [772505a9]before send -peer0.org2.example.com | [6ae 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421c34de0 -peer1.org1.example.com | [7e4 12-12 14:20:19.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [3b4 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -peer1.org2.example.com | [6f7 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -peer0.org1.example.com | [740 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [772505a9]after send -peer0.org2.example.com | [6af 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\215\313\277\321\005\020\254\341\337\036\"\017businesschannel*@21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea:\010\022\006\022\004lscc" signature_header:"\n\236\006\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk\nEEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT\n6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB\n9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf\nZM8rwLlgV6XUeTLW\n-----END CERTIFICATE-----\n\022\030gg\245 ,^sl\007N\340**\"Z YL^\277m\034&\326" -orderer.example.com | [3b5 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -peer1.org2.example.com | [6f8 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 675dcac41df7f9d767dd5ca35ac0e8e37e788658288f44ec7c98739b55a584c0 channel id: businesschannel version: 1.1.0 -peer1.org1.example.com | [7e5 12-12 14:20:19.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [6b0 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [742 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [772505a9]GetState received payload RESPONSE -orderer.example.com | [3b6 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -peer0.org2.example.com | [6b1 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [743 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [772505a9]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [6b2 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP cec57e02e224c3efa1075c97d8c3172cd78fec768b3b75afcf280ac60a493411} -peer1.org1.example.com | [7e6 12-12 14:20:19.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [6f9 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=675dcac41df7f9d767dd5ca35ac0e8e37e788658288f44ec7c98739b55a584c0,syscc=true,proposal=0xc4203cac80,canname=escc:1.1.0 -peer0.org1.example.com | [741 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [772505a9]Received RESPONSE, communicated (state:ready) -peer0.org2.example.com | [6b3 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [3b7 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -peer1.org1.example.com | [7e7 12-12 14:20:19.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [744 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [772505a9]Move state message COMPLETED -peer1.org2.example.com | [6f5 12-12 14:20:10.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [6b4 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [3b8 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -peer1.org2.example.com | [6fa 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer0.org1.example.com | [745 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [772505a9]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [7e8 12-12 14:20:19.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [6b5 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc423020000, header channel_header:"\010\003\032\013\010\215\313\277\321\005\020\254\341\337\036\"\017businesschannel*@21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea:\010\022\006\022\004lscc" signature_header:"\n\236\006\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk\nEEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT\n6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB\n9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf\nZM8rwLlgV6XUeTLW\n-----END CERTIFICATE-----\n\022\030gg\245 ,^sl\007N\340**\"Z YL^\277m\034&\326" -peer0.org1.example.com | [746 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [772505a9]send state message COMPLETED -peer1.org2.example.com | [6fb 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [3b9 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -peer0.org2.example.com | [6b6 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org1.example.com | [7e9 12-12 14:20:19.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [6b7 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [6fc 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -orderer.example.com | [3ba 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -peer0.org2.example.com | [6b8 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org1.example.com | [7ea 12-12 14:20:19.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [747 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Received message COMPLETED from shim -peer1.org2.example.com | [6fd 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [675dcac4]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [6b9 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -orderer.example.com | [3bb 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -peer0.org1.example.com | [748 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [7eb 12-12 14:20:19.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [6ba 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] -peer1.org2.example.com | [6fe 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [749 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [6bb 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -orderer.example.com | [3bc 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -peer0.org2.example.com | [6bc 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc421c34de0 envbytes 0xc422dedb00 -peer1.org2.example.com | [700 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [6bd 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422dedb00 -peer0.org1.example.com | [74a 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7, channelID:businesschannel -peer0.org2.example.com | [6be 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [3bd 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy ChannelCreationPolicy for Channel/Application -peer1.org2.example.com | [701 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [675dcac4]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [6bf 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] -peer1.org2.example.com | [6ff 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [74b 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [6c0 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=f098da6a-8406-4b91-8795-187c56e9310b,syscc=true,proposal=0x0,canname=vscc:1.1.0 -orderer.example.com | [3be 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins -peer1.org2.example.com | [703 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to history database -peer0.org2.example.com | [6c1 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea chaindID businesschannel -orderer.example.com | [3bf 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -peer0.org1.example.com | [74c 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInsantiationPolicy.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer0.org2.example.com | [6c2 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer1.org2.example.com | [704 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -peer0.org1.example.com | [74d 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 channel id: businesschannel version: 1.0 -orderer.example.com | [3c0 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Application/Readers -peer0.org2.example.com | [6c3 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [6c4 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer1.org2.example.com | [705 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -orderer.example.com | [3c1 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -peer0.org1.example.com | [74e 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7,syscc=false,proposal=0xc422fd23c0,canname=mycc:1.0 -peer1.org2.example.com | [702 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [675dcac4]Move state message TRANSACTION -peer0.org2.example.com | [6c5 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f098da6a]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [3c2 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Application/Writers -peer1.org2.example.com | [706 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [675dcac4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [6c6 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [74f 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 -orderer.example.com | [3c3 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -peer1.org2.example.com | [707 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [6c7 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f098da6a]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [3c4 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [708 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [675dcac4]sending state message TRANSACTION -orderer.example.com | [3c5 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [3c6 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [750 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [709 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [675dcac4]Received message TRANSACTION from shim -orderer.example.com | [3c7 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [70a 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [675dcac4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [6c8 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f098da6a]Move state message TRANSACTION -orderer.example.com | [3c8 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [70b 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [675dcac4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [751 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -orderer.example.com | [3c9 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [70c 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org2.example.com | [6c9 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f098da6a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [752 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [772505a9]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [3ca 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [70d 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | [3cb 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org2.example.com | [70e 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [675dcac4]Transaction completed. Sending COMPLETED -orderer.example.com | [3cc 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | [3cd 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org2.example.com | [70f 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [675dcac4]Move state message COMPLETED -peer0.org1.example.com | [753 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [6ca 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [3ce 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [710 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [675dcac4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [3cf 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [711 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [675dcac4]send state message COMPLETED -orderer.example.com | [3d0 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [712 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [675dcac4]Received message COMPLETED from shim -peer0.org1.example.com | [754 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [3d1 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org2.example.com | [713 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [675dcac4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [6cb 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f098da6a]sending state message TRANSACTION -orderer.example.com | [3d2 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [714 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [675dcac41df7f9d767dd5ca35ac0e8e37e788658288f44ec7c98739b55a584c0]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [755 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [772505a9]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [715 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:675dcac41df7f9d767dd5ca35ac0e8e37e788658288f44ec7c98739b55a584c0, channelID:businesschannel -peer0.org2.example.com | [6cc 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f098da6a]Received message TRANSACTION from shim -orderer.example.com | [3d3 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org1.example.com | [756 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Move state message TRANSACTION -peer1.org2.example.com | [716 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [6cd 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f098da6a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [717 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [3d4 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [757 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [6ce 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f098da6a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [718 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [758 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [6cf 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org2.example.com | [719 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [675dcac41df7f9d767dd5ca35ac0e8e37e788658288f44ec7c98739b55a584c0] -peer1.org2.example.com | [71a 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:42382) -peer0.org2.example.com | [6d0 12-12 14:20:05.47 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 | [6d1 12-12 14:20:05.47 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -orderer.example.com | [3d5 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [6d2 12-12 14:20:05.47 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [71b 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -peer1.org2.example.com | [71c 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [759 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]sending state message TRANSACTION -peer1.org2.example.com | [71d 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea -peer0.org2.example.com | [6d3 12-12 14:20:05.47 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [3d6 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [71e 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [71f 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [720 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [721 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [6d4 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org2.example.com | [722 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [6d5 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [676deb07-ecc3-4e9d-8806-b86d5cc36d23] -orderer.example.com | [3d7 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [75a 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Received message GET_STATE from shim -peer1.org2.example.com | [723 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [6d6 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | [6d7 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [676deb07-ecc3-4e9d-8806-b86d5cc36d23] -peer1.org2.example.com | [724 12-12 14:20:10.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [6d8 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer0.org1.example.com | [75b 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [6d9 12-12 14:20:05.48 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)(0x990b90), deserializer:(*msp.mspManagerImpl)(0xc42197b680)} -orderer.example.com | [3d8 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [6da 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated -peer0.org1.example.com | [75c 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [772505a9]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [725 12-12 14:20:10.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [3d9 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [75d 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [726 12-12 14:20:10.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [6db 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f098da6a]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [75e 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [772505a9] getting state for chaincode mycc, key a, channel businesschannel -peer1.org2.example.com | [727 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -orderer.example.com | [3da 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [6dc 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f098da6a]Move state message COMPLETED -peer0.org1.example.com | [75f 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=a -peer1.org2.example.com | [728 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | [3db 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [6dd 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f098da6a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [760 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [772505a9]Got state. Sending RESPONSE -orderer.example.com | [3dc 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [729 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42277f640 env 0xc4203902d0 txn 0 -peer0.org2.example.com | [6de 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f098da6a]send state message COMPLETED -peer0.org1.example.com | [761 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [772505a9]handleGetState serial send RESPONSE -orderer.example.com | [3dd 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [72a 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4203902d0 -peer0.org2.example.com | [6df 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f098da6a]Received message COMPLETED from shim -peer0.org1.example.com | [762 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Received message GET_STATE from shim -orderer.example.com | [3de 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [72b 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\232\313\277\321\005\020\200\347\372\352\001\"\017businesschannel*@772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv\npydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS\nq+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c\ngHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf\nOwJpoynNCyKsWozuVw==\n-----END CERTIFICATE-----\n\022\030d\361\325j\375\325\225\313\300\373I\037\306\310\345\235>\177Y_\360_\301w" -peer0.org2.example.com | [6e0 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f098da6a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [763 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [72c 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | [3df 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -peer0.org2.example.com | [6e1 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f098da6a-8406-4b91-8795-187c56e9310b]HandleMessage- COMPLETED. Notify -orderer.example.com | [3e0 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org1.example.com | [764 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [772505a9]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [72d 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [3e1 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org1.example.com | [765 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [72e 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -peer0.org2.example.com | [6e2 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f098da6a-8406-4b91-8795-187c56e9310b, channelID:businesschannel -peer0.org1.example.com | [766 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [772505a9] getting state for chaincode mycc, key b, channel businesschannel -peer1.org2.example.com | [72f 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [6e3 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [3e2 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org1.example.com | [767 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=b -peer1.org2.example.com | [730 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [6e4 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea, error Chaincode mycc is already instantiated -orderer.example.com | [3e3 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org2.example.com | [731 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422c5e000, header channel_header:"\010\003\032\014\010\232\313\277\321\005\020\200\347\372\352\001\"\017businesschannel*@772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv\npydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS\nq+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c\ngHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf\nOwJpoynNCyKsWozuVw==\n-----END CERTIFICATE-----\n\022\030d\361\325j\375\325\225\313\300\373I\037\306\310\345\235>\177Y_\360_\301w" -peer0.org1.example.com | [768 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [772505a9]Got state. Sending RESPONSE -orderer.example.com | [3e4 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [769 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [772505a9]handleGetState serial send RESPONSE -peer0.org2.example.com | [6e5 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] -peer1.org2.example.com | [732 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | [3e5 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [733 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [6e6 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422dedb00 -orderer.example.com | [3e6 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [76a 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Received message PUT_STATE from shim -peer0.org2.example.com | [6e7 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc421c34de0 envbytes 0xc422dedb00 -orderer.example.com | [3e7 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [734 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [76b 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org2.example.com | [6e8 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea returned error Chaincode mycc is already instantiated -orderer.example.com | [3e8 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [735 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [76c 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [736 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] -orderer.example.com | [3e9 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [6ea 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 -peer1.org2.example.com | [737 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [76d 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [772505a9]state is ready -orderer.example.com | [3ea 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [76e 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [772505a9]Completed PUT_STATE. Sending RESPONSE -peer1.org2.example.com | [738 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4203902d0 envbytes 0xc422da5000 -peer0.org1.example.com | [76f 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [772505a9]enterBusyState trigger event RESPONSE -peer0.org2.example.com | [6eb 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -orderer.example.com | [3eb 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [739 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [fa9e15c2-5b60-42a3-a01d-773a3fc220da] -peer0.org2.example.com | [6ec 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] -orderer.example.com | [3ec 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [6ed 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [73a 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [73b 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [fa9e15c2-5b60-42a3-a01d-773a3fc220da] -peer0.org2.example.com | [6ee 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] -peer1.org2.example.com | [73c 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422da5000 -orderer.example.com | [3ed 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [6ef 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org1.example.com | [770 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Move state message RESPONSE -peer0.org2.example.com | [6f0 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> WARN Channel [businesschannel]: Block [4] Transaction index [0] TxId [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] -peer1.org2.example.com | [73d 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [771 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -orderer.example.com | [3ee 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [6f1 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org1.example.com | [772 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [6f2 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -orderer.example.com | [3ef 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [73e 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] -orderer.example.com | [3f0 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [6f3 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org2.example.com | [73f 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=34007a8b-b526-4936-afc3-a8e3810f72ff,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org1.example.com | [773 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]sending state message RESPONSE -orderer.example.com | [3f1 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org2.example.com | [6f4 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage -peer1.org2.example.com | [740 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 chaindID businesschannel -peer0.org1.example.com | [774 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Received message PUT_STATE from shim -orderer.example.com | [3f2 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org2.example.com | [6e9 12-12 14:20:05.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421d27760 env 0xc421c34de0 txn 0 -orderer.example.com | [3f3 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [6f5 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [4] -peer1.org2.example.com | [741 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer0.org2.example.com | [6f6 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x39, 0x2e, 0x71, 0x22, 0x2a, 0x60, 0xa4, 0x53, 0x7, 0x31, 0x12, 0xb7, 0x15, 0xa2, 0xa0, 0xb7, 0xc6, 0x75, 0x17, 0x40, 0x71, 0xfa, 0xe4, 0x1f, 0xf9, 0x2a, 0xc1, 0x5a, 0xc1, 0x3b, 0xd1, 0xa6} txOffsets= -orderer.example.com | [3f4 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | txId=21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea locPointer=offset=70, bytesLength=3442 +peer0.org2.example.com | [679 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) +peer1.org1.example.com | [67b 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [3f1 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [6b1 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45497, bytesLength=3454] for tx ID: [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] to index +peer1.org1.example.com | [67c 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInsantiationPolicy.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer1.org1.example.com | [67d 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: e9bb883c5817b66047a119003f67cb51ed0a4074bf562ffa0a3fd6958d38874d channel id: businesschannel version: 1.0 +peer0.org2.example.com | [67a 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] marked as valid by state validator +orderer.example.com | [3f2 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org1.example.com | [67e 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=e9bb883c5817b66047a119003f67cb51ed0a4074bf562ffa0a3fd6958d38874d,syscc=false,proposal=0xc422b2ed70,canname=mycc:1.0 +peer0.org2.example.com | [67b 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +orderer.example.com | [3f3 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [7a7 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [6b2 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45497, bytesLength=3454] for tx number:[0] ID: [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] to blockNumTranNum index +peer0.org2.example.com | [67c 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer1.org1.example.com | [67f 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=e9bb883c5817b66047a119003f67cb51ed0a4074bf562ffa0a3fd6958d38874d,syscc=true,proposal=0xc422b2ed70,canname=lscc:1.1.0 +peer0.org2.example.com | [67d 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +orderer.example.com | [3f4 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [680 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer0.org1.example.com | [7a8 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [522aba04] getting state for chaincode mycc, key a, channel businesschannel +peer1.org2.example.com | [6b3 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50747], isChainEmpty=[false], lastBlockNumber=[4] +orderer.example.com | [3f5 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [681 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [7a9 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=a +peer0.org2.example.com | [67e 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage +peer1.org1.example.com | [682 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer1.org2.example.com | [6b4 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 4 +peer0.org1.example.com | [7aa 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [522aba04]Got state. Sending RESPONSE +orderer.example.com | [3f6 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [6b5 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 4 +peer0.org2.example.com | [67f 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [3] +peer1.org1.example.com | [683 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e9bb883c]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [3f7 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [7ab 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [522aba04]handleGetState serial send RESPONSE +peer1.org2.example.com | [6b6 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) +peer1.org1.example.com | [684 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [3f8 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org2.example.com | [680 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xbd, 0x1d, 0x3e, 0x71, 0x54, 0x7d, 0x18, 0xea, 0x68, 0xf5, 0xac, 0xe5, 0x8c, 0xfe, 0x88, 0x50, 0x5, 0xc9, 0x4a, 0xf7, 0x43, 0x38, 0xe6, 0x11, 0x25, 0x7e, 0xb7, 0xf4, 0xb1, 0x42, 0x13, 0xae} txOffsets= +orderer.example.com | [3f9 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org1.example.com | [685 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [6b7 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database +peer0.org1.example.com | [7ac 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Received message GET_STATE from shim +orderer.example.com | [3fa 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org2.example.com | [6b8 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | txId=2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 locPointer=offset=70, bytesLength=3454 +peer1.org1.example.com | [686 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e9bb883c]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [7ad 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [6b9 12-15 03:49:44.34 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer1.org2.example.com-mycc-1.0-26c2ef32838554aac4f7ad6f100aca865e87959c9a126e86d764c8d01f8346ab +orderer.example.com | [3fb 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [687 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e9bb883c]Move state message TRANSACTION +peer0.org1.example.com | [7ae 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [522aba04]Received GET_STATE, invoking get state from ledger peer0.org2.example.com | ] -orderer.example.com | [3f5 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org1.example.com | [775 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org1.example.com | [776 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [3f6 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -orderer.example.com | [3f7 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy ChannelCreationPolicy -peer1.org2.example.com | [742 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [777 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [772505a9]state is ready -peer0.org1.example.com | [778 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [772505a9]Completed PUT_STATE. Sending RESPONSE -peer0.org2.example.com | [6f7 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45475, bytesLength=3442] for tx ID: [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] to index -orderer.example.com | [3f8 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] -peer0.org1.example.com | [779 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [772505a9]enterBusyState trigger event RESPONSE -peer1.org2.example.com | [743 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer0.org1.example.com | [77a 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Move state message RESPONSE -orderer.example.com | [3f9 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -peer0.org2.example.com | [6f8 12-12 14:20:05.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45475, bytesLength=3442] for tx number:[0] ID: [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] to blockNumTranNum index -peer1.org2.example.com | [744 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [34007a8b]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [77b 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -orderer.example.com | [3fa 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -peer0.org2.example.com | [6f9 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50711], isChainEmpty=[false], lastBlockNumber=[4] -peer0.org1.example.com | [77c 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [745 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [77d 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]sending state message RESPONSE -peer1.org2.example.com | [746 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [34007a8b]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [3fb 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -peer0.org1.example.com | [77e 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Received message COMPLETED from shim -peer0.org2.example.com | [6fa 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 4 -peer1.org2.example.com | [747 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [34007a8b]Move state message TRANSACTION -peer1.org2.example.com | [748 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [34007a8b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [3fc 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -peer0.org2.example.com | [6fb 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 4 -peer0.org1.example.com | [77f 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [749 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [6fc 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) -orderer.example.com | [3fd 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -peer0.org1.example.com | [780 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [74a 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [34007a8b]sending state message TRANSACTION -peer0.org2.example.com | [6fd 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database -peer0.org1.example.com | [781 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7, channelID:businesschannel -orderer.example.com | [3fe 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -peer0.org1.example.com | [782 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [783 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [74b 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [34007a8b]Received message TRANSACTION from shim -orderer.example.com | [3ff 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -peer0.org1.example.com | [784 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org2.example.com | [6fe 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [74c 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [34007a8b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [785 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] -orderer.example.com | [400 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -peer1.org2.example.com | [74d 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [34007a8b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [6ff 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [786 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [401 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy == -peer0.org2.example.com | [700 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [787 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 channel id: businesschannel chaincode id: name:"mycc" -peer1.org2.example.com | [74e 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | [402 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [788 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -peer0.org2.example.com | [701 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to history database -peer0.org1.example.com | [789 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 channel id: businesschannel version: 1.1.0 -peer1.org2.example.com | [74f 12-12 14:20:12.55 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 | [702 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -peer0.org1.example.com | [78a 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7,syscc=true,proposal=0xc422fd23c0,canname=escc:1.1.0 -peer1.org2.example.com | [750 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | [403 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -peer0.org2.example.com | [703 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -peer0.org1.example.com | [78b 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer0.org2.example.com | [704 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -peer1.org2.example.com | [751 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [34007a8b]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [78c 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [404 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org2.example.com | [705 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [78d 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer1.org2.example.com | [752 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [34007a8b]Move state message COMPLETED -peer0.org2.example.com | [706 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea -orderer.example.com | [405 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [753 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [34007a8b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [78e 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [772505a9]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [707 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [754 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [34007a8b]send state message COMPLETED -peer1.org2.example.com | [755 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [34007a8b]Received message COMPLETED from shim -peer0.org2.example.com | [708 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | [709 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [756 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [34007a8b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -peer0.org1.example.com | [78f 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [70a 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [757 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [34007a8b-b526-4936-afc3-a8e3810f72ff]HandleMessage- COMPLETED. Notify -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -peer0.org2.example.com | [70b 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [790 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [758 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:34007a8b-b526-4936-afc3-a8e3810f72ff, channelID:businesschannel -peer0.org2.example.com | [70c 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -peer0.org1.example.com | [791 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [772505a9]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [759 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [70d 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [792 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Move state message TRANSACTION -peer1.org2.example.com | [75a 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -peer0.org2.example.com | [70e 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [75b 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422da5000 -peer0.org1.example.com | [793 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [75c 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4203902d0 envbytes 0xc422da5000 -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -peer0.org1.example.com | [794 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [70f 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [75d 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42277f640 env 0xc4203902d0 txn 0 -peer1.org2.example.com | [75e 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org2.example.com | [75f 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org2.example.com | [760 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] -peer1.org2.example.com | [761 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [795 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]sending state message TRANSACTION -peer1.org2.example.com | [762 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -peer0.org2.example.com | [710 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] -peer1.org2.example.com | [763 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org2.example.com | [711 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] -peer0.org1.example.com | [796 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [772505a9]Received message TRANSACTION from shim -peer1.org2.example.com | [764 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -peer1.org2.example.com | [765 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -peer0.org2.example.com | [712 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org1.example.com | [797 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [772505a9]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [766 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -orderer.example.com | OwJpoynNCyKsWozuVw== -peer0.org1.example.com | [798 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [772505a9]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [713 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org2.example.com | [767 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=a -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [714 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4218f3e20 env 0xc4232115f0 txn 0 -peer1.org2.example.com | [768 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -orderer.example.com | [406 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e768 gate 1513088379721699300 evaluation starts -peer0.org1.example.com | [799 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org2.example.com | [769 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=b -peer0.org2.example.com | [715 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4232115f0 -orderer.example.com | [407 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e768 signed by 0 principal evaluation starts (used [false]) -peer1.org2.example.com | [76a 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer1.org2.example.com | [76b 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] marked as valid by state validator -peer0.org2.example.com | [716 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\232\313\277\321\005\020\200\347\372\352\001\"\017businesschannel*@772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv\npydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS\nq+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c\ngHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf\nOwJpoynNCyKsWozuVw==\n-----END CERTIFICATE-----\n\022\030d\361\325j\375\325\225\313\300\373I\037\306\310\345\235>\177Y_\360_\301w" -peer1.org2.example.com | [76c 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -orderer.example.com | [408 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e768 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org2.example.com | [76d 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org1.example.com | [79a 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org2.example.com | [717 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | [409 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -peer1.org2.example.com | [76e 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org1.example.com | [79b 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [772505a9]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [718 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [40a 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e768 principal matched by identity 0 -peer0.org1.example.com | [79c 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [772505a9]Move state message COMPLETED -peer1.org2.example.com | [76f 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage -peer0.org2.example.com | [719 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -orderer.example.com | [40b 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 74 62 55 84 54 84 d3 fc 37 ff 1b d1 3a a6 30 c2 |tbU.T...7...:.0.| -peer1.org2.example.com | [770 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [5] -orderer.example.com | 00000010 81 70 dd d3 d0 d5 9e 9b e5 34 4d 83 a6 6d d3 c1 |.p.......4M..m..| -peer0.org2.example.com | [71a 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [79d 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [772505a9]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [771 12-12 14:20:12.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x2b, 0x97, 0x1a, 0x34, 0xe0, 0x9f, 0x84, 0x93, 0x97, 0xdf, 0x58, 0xc6, 0xd5, 0xf6, 0xb, 0xf, 0x1d, 0x2f, 0xf, 0xde, 0x2, 0xc2, 0xdb, 0x15, 0x97, 0x87, 0x7d, 0x95, 0xfd, 0x8d, 0x4a, 0x56} txOffsets= -orderer.example.com | [40c 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 cb cd 0b 64 09 7d 04 72 03 4b 1d |0E.!....d.}.r.K.| -peer0.org2.example.com | [71b 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [79e 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [772505a9]send state message COMPLETED -orderer.example.com | 00000010 53 72 05 21 21 5b 16 61 dd 54 2e 2e c4 b6 05 2f |Sr.!![.a.T...../| -peer1.org2.example.com | txId=772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 locPointer=offset=70, bytesLength=2916 -peer0.org2.example.com | [71c 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421b4c000, header channel_header:"\010\003\032\014\010\232\313\277\321\005\020\200\347\372\352\001\"\017businesschannel*@772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv\npydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS\nq+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c\ngHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf\nOwJpoynNCyKsWozuVw==\n-----END CERTIFICATE-----\n\022\030d\361\325j\375\325\225\313\300\373I\037\306\310\345\235>\177Y_\360_\301w" -orderer.example.com | 00000020 8f 3e 7e ce ff 02 20 16 94 de b8 6e 43 f6 89 bd |.>~... ....nC...| +peer1.org1.example.com | [688 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e9bb883c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [3fc 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | [681 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40178, bytesLength=3454] for tx ID: [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] to index +peer1.org2.example.com | [6ba 12-15 03:49:44.34 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +peer1.org1.example.com | [689 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [7af 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [3fd 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [682 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40178, bytesLength=3454] for tx number:[0] ID: [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] to blockNumTranNum index +peer0.org1.example.com | [7b0 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [522aba04] getting state for chaincode mycc, key b, channel businesschannel +orderer.example.com | [3fe 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [68a 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e9bb883c]sending state message TRANSACTION +peer1.org2.example.com | [6bb 12-15 03:49:44.34 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-mycc-1.0 +peer0.org2.example.com | [683 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45427], isChainEmpty=[false], lastBlockNumber=[3] +peer0.org1.example.com | [7b1 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=b +peer1.org2.example.com | [6bc 12-15 03:49:44.41 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org2.example.com-mycc-1.0-26c2ef32838554aac4f7ad6f100aca865e87959c9a126e86d764c8d01f8346ab +orderer.example.com | [3ff 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [7b2 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [522aba04]Got state. Sending RESPONSE +peer1.org1.example.com | [68b 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e9bb883c]Received message TRANSACTION from shim +peer0.org2.example.com | [684 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 3 +peer0.org1.example.com | [7b3 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [522aba04]handleGetState serial send RESPONSE +peer1.org2.example.com | [6bd 12-15 03:49:45.02 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org2.example.com-mycc-1.0 +peer1.org1.example.com | [68c 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e9bb883c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [400 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [7b4 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Received message PUT_STATE from shim +peer0.org2.example.com | [685 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 3 +peer1.org2.example.com | [6be 12-15 03:49:45.02 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org2.example.com-mycc-1.0) +peer0.org1.example.com | [7b5 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer1.org1.example.com | [68d 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e9bb883c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [686 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [3] with 1 transaction(s) +peer1.org2.example.com | [6bf 12-15 03:49:45.04 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.authenticate)-fm.authenticate -> DEBU Chaincode mycc:1.0 's authentication is authorized +peer0.org1.example.com | [7b6 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [401 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [7b7 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [522aba04]state is ready +peer1.org2.example.com | [6c0 12-15 03:49:45.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [7b8 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [522aba04]Completed PUT_STATE. Sending RESPONSE +peer1.org1.example.com | [68e 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [e9bb883c]Sending GET_STATE +orderer.example.com | [402 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org2.example.com | [687 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database +peer0.org1.example.com | [7b9 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [522aba04]enterBusyState trigger event RESPONSE +peer1.org1.example.com | [68f 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e9bb883c]Received message GET_STATE from shim +peer1.org2.example.com | [6c1 12-15 03:49:45.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [7ba 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Move state message RESPONSE +peer0.org2.example.com | [688 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +orderer.example.com | [403 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org2.example.com | [6c2 12-15 03:49:45.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [7bb 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer1.org1.example.com | [690 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e9bb883c]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [689 12-15 03:49:37.03 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org2.example.com-mycc-1.0-15b571b3ce849066b7ec74497da3b27e54e0df1345daff3951b94245ce09c42b +peer0.org1.example.com | [7bc 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [6c3 12-15 03:49:45.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org1.example.com | [691 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [e9bb883c]Received GET_STATE, invoking get state from ledger +orderer.example.com | [404 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +peer0.org1.example.com | [7bd 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]sending state message RESPONSE +peer0.org2.example.com | [68a 12-15 03:49:37.03 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +peer1.org2.example.com | [6c4 12-15 03:49:45.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 +orderer.example.com | [405 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [692 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [7be 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Received message PUT_STATE from shim +orderer.example.com | MIICLzCCAdWgAwIBAgIQGXf5zEgjlejkE1rJW2znwDAKBggqhkjOPQQDAjBpMQsw +peer0.org2.example.com | [68b 12-15 03:49:37.03 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-mycc-1.0 +peer0.org1.example.com | [7bf 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer1.org1.example.com | [693 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e9bb883c] getting state for chaincode lscc, key mycc, channel businesschannel +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [6c5 12-15 03:49:45.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED +peer0.org2.example.com | [68c 12-15 03:49:37.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org2.example.com-mycc-1.0-15b571b3ce849066b7ec74497da3b27e54e0df1345daff3951b94245ce09c42b +peer1.org1.example.com | [694 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [7c1 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [522aba04]state is ready +peer1.org2.example.com | [6c6 12-15 03:49:45.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org1.example.com | [695 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e9bb883c]Got state. Sending RESPONSE +peer0.org2.example.com | [68d 12-15 03:49:37.72 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org2.example.com-mycc-1.0 +peer0.org1.example.com | [7c2 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [522aba04]Completed PUT_STATE. Sending RESPONSE +peer1.org1.example.com | [696 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [e9bb883c]handleGetState serial send RESPONSE +peer1.org2.example.com | [6c7 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed +peer0.org1.example.com | [7c3 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [522aba04]enterBusyState trigger event RESPONSE +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowaTELMAkGA1UE +peer0.org2.example.com | [68e 12-15 03:49:37.72 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org2.example.com-mycc-1.0) +peer0.org1.example.com | [7c0 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [6c8 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org1.example.com | [697 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e9bb883c]Received message RESPONSE from shim +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org2.example.com | [68f 12-15 03:49:37.74 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.authenticate)-fm.authenticate -> DEBU Chaincode mycc:1.0 's authentication is authorized +peer0.org1.example.com | [7c4 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Move state message RESPONSE +peer1.org1.example.com | [698 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e9bb883c]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org2.example.com | [6c9 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [690 12-15 03:49:37.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +peer0.org1.example.com | [7c5 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer0.org2.example.com | [691 12-15 03:49:37.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | [6ca 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [7c6 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [699 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [e9bb883c]before send +orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFSKPRsXnXvaTTqRKjkTRYYoPjGg +peer0.org2.example.com | [692 12-15 03:49:37.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [7c7 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]sending state message RESPONSE +peer1.org1.example.com | [69a 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [e9bb883c]after send +peer1.org2.example.com | [6cb 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10909b0f]Move state message READY +peer0.org1.example.com | [7c8 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Received message COMPLETED from shim +orderer.example.com | TgXRAoMQwI+9AaLXTSL+AsApwlxedr+PJ+UgfBNcxey226YSZRJqLeiH/TajXzBd +peer1.org1.example.com | [69b 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [e9bb883c]GetState received payload RESPONSE +peer0.org2.example.com | [693 12-15 03:49:37.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org2.example.com | [6cc 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10909b0f]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org2.example.com | [694 12-15 03:49:37.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 +peer0.org1.example.com | [7c9 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [69c 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e9bb883c]Transaction completed. Sending COMPLETED +orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +peer1.org2.example.com | [6cd 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [10909b0f]Entered state ready +orderer.example.com | Af8wKQYDVR0OBCIEIPxyg8RiuCl5W+wOoXUqeRhWBcR2XF2JtWJ5qtJMQ3Y1MAoG +peer0.org2.example.com | [695 12-15 03:49:37.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED +peer0.org1.example.com | [7ca 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [69d 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [e9bb883c]Received RESPONSE, communicated (state:ready) +peer1.org2.example.com | [6ce 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:10909b0f383d9daee5eadc992b3651196d18093b70fee6eebf966852152024cb, channelID:businesschannel +peer0.org1.example.com | [7cb 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e, channelID:businesschannel +orderer.example.com | CCqGSM49BAMCA0gAMEUCIQCoRrlZYPh0Qnsp3Z9KitmTDkRqi6JyR4RLiOyfv8Tf +peer1.org2.example.com | [6cf 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10909b0f]sending state message READY +peer0.org2.example.com | [696 12-15 03:49:37.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org1.example.com | [69e 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e9bb883c]Move state message COMPLETED +peer0.org1.example.com | [7cc 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | QgIgdHbFqXGTZ0HFQmknUFd5DD4TTltv8Ijmfm8J1skS4jc= +peer1.org2.example.com | [6d0 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [7cd 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [697 12-15 03:49:37.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed +peer1.org1.example.com | [69f 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e9bb883c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [6d1 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | [698 12-15 03:49:37.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org1.example.com | [7ce 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | [406 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [6a0 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e9bb883c]send state message COMPLETED +peer1.org2.example.com | [6d2 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [7cf 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] +peer0.org2.example.com | [699 12-15 03:49:37.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +peer1.org2.example.com | [6d3 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +peer0.org2.example.com | [69a 12-15 03:49:37.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [6a1 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e9bb883c]Received message COMPLETED from shim +peer1.org2.example.com | [6d4 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [10909b0f]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [7d0 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org1.example.com | [6a2 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e9bb883c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [69b 12-15 03:49:37.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [912d3bf8]Move state message READY +peer1.org2.example.com | [6d5 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [6a3 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e9bb883c5817b66047a119003f67cb51ed0a4074bf562ffa0a3fd6958d38874d]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [7d1 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e channel id: businesschannel chaincode id: name:"mycc" +peer0.org2.example.com | [69c 12-15 03:49:37.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [912d3bf8]Fabric side Handling ChaincodeMessage of type: READY in state established +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org2.example.com | [69d 12-15 03:49:37.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [912d3bf8]Entered state ready +peer1.org2.example.com | [6d6 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [7d2 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +peer1.org1.example.com | [6a4 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e9bb883c5817b66047a119003f67cb51ed0a4074bf562ffa0a3fd6958d38874d, channelID:businesschannel +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +peer0.org2.example.com | [69e 12-15 03:49:37.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218, channelID:businesschannel +peer0.org1.example.com | [7d3 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e channel id: businesschannel version: 1.1.0 +peer1.org1.example.com | [6a5 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [6d7 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [10909b0f]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [69f 12-15 03:49:37.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [912d3bf8]sending state message READY +peer0.org1.example.com | [7d4 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e,syscc=true,proposal=0xc42273e1e0,canname=escc:1.1.0 +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org2.example.com | [6a0 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU sending init completed +peer1.org1.example.com | [6a6 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched +peer0.org1.example.com | [7d5 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org2.example.com | [6a1 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org2.example.com | [6d8 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10909b0f]Move state message TRANSACTION +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org1.example.com | [6a7 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer0.org1.example.com | [7d6 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [6a2 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [6d9 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10909b0f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +peer1.org1.example.com | [6a8 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +peer1.org2.example.com | [6da 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [6a9 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=mycc:1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +peer0.org2.example.com | [6a3 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +peer0.org1.example.com | [7d7 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer1.org1.example.com | [6aa 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +orderer.example.com | ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org2.example.com | [6a4 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [912d3bf8]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [6db 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10909b0f]sending state message TRANSACTION +peer0.org1.example.com | [7d8 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [522aba04]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +peer0.org2.example.com | [6a5 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [6ab 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer1.org1.example.com) +peer1.org2.example.com | [6dc 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10909b0f]Received message GET_STATE from shim +peer0.org2.example.com | [6a6 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [6ac 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +orderer.example.com | Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +peer0.org2.example.com | [6a7 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [912d3bf8]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [7d9 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [6dd 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10909b0f]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [6ad 12-15 03:49:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer0.org2.example.com | [6a8 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [912d3bf8]Move state message INIT +peer0.org1.example.com | [7da 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +peer1.org2.example.com | [6de 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [10909b0f]Received GET_STATE, invoking get state from ledger +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=mycc:1.0 +peer0.org2.example.com | [6a9 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [912d3bf8]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [6df 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | [7db 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [522aba04]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [6aa 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [6e0 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [10909b0f] getting state for chaincode mycc, key a, channel businesschannel +peer0.org2.example.com | [6ab 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [912d3bf8]sending state message INIT +peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer0.org1.example.com | [7dc 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Move state message TRANSACTION +orderer.example.com | [407 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [6e1 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=a +peer0.org2.example.com | [6ac 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [912d3bf8]Received message PUT_STATE from shim +peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org2.example.com | [6e2 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [10909b0f]Got state. Sending RESPONSE +orderer.example.com | MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [7dd 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org2.example.com | [6ad 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [912d3bf8]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer1.org2.example.com | [6e3 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [10909b0f]handleGetState serial send RESPONSE +peer0.org1.example.com | [7de 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org2.example.com | [6ae 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [6e4 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10909b0f]Received message COMPLETED from shim +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +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 | [6af 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [912d3bf8]state is ready +peer0.org1.example.com | [7df 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]sending state message TRANSACTION +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +peer1.org1.example.com | [6ae 12-15 03:49:45.33 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org1.example.com-mycc-1.0) lock +peer0.org2.example.com | [6b0 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [912d3bf8]Completed PUT_STATE. Sending RESPONSE +peer1.org2.example.com | [6e5 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10909b0f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org1.example.com | [6af 12-15 03:49:45.33 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org1.example.com-mycc-1.0) lock +peer1.org2.example.com | [6e6 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10909b0f383d9daee5eadc992b3651196d18093b70fee6eebf966852152024cb]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [6b1 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [912d3bf8]enterBusyState trigger event RESPONSE +peer0.org1.example.com | [7e0 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [522aba04]Received message TRANSACTION from shim +peer1.org1.example.com | [6b0 12-15 03:49:45.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer1.org1.example.com-mycc-1.0 +peer1.org2.example.com | [6e7 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:10909b0f383d9daee5eadc992b3651196d18093b70fee6eebf966852152024cb, channelID:businesschannel +peer0.org2.example.com | [6b2 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [912d3bf8]Move state message RESPONSE +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org1.example.com | [7e1 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [522aba04]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [6b1 12-15 03:49:45.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer1.org1.example.com-mycc-1.0(No such container: dev-peer1.org1.example.com-mycc-1.0) +peer1.org2.example.com | [6e8 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [6b3 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [912d3bf8]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer1.org1.example.com | [6b2 12-15 03:49:45.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer1.org1.example.com-mycc-1.0 (No such container: dev-peer1.org1.example.com-mycc-1.0) +peer0.org1.example.com | [7e2 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [522aba04]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +peer1.org2.example.com | [6e9 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [6b3 12-15 03:49:45.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org1.example.com-mycc-1.0 (No such container: dev-peer1.org1.example.com-mycc-1.0) +peer0.org2.example.com | [6b4 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [7e3 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org1.example.com | [6b4 12-15 03:49:45.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org1.example.com-mycc-1.0 +peer1.org2.example.com | [6ea 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [7e4 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org1.example.com | [6b5 12-15 03:49:45.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +peer0.org2.example.com | [6b5 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [912d3bf8]sending state message RESPONSE +peer1.org2.example.com | [6eb 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [10909b0f383d9daee5eadc992b3651196d18093b70fee6eebf966852152024cb] +peer0.org1.example.com | [7e5 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [522aba04]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [6b6 12-15 03:49:45.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-mycc-1.0 +orderer.example.com | Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +peer1.org2.example.com | [6ec 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [6b6 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [912d3bf8]Received message PUT_STATE from shim +peer1.org1.example.com | [6b7 12-15 03:49:45.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 +peer0.org1.example.com | [7e6 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [522aba04]Move state message COMPLETED +peer1.org2.example.com | [6ed 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 10909b0f383d9daee5eadc992b3651196d18093b70fee6eebf966852152024cb channel id: businesschannel chaincode id: name:"mycc" +peer0.org2.example.com | [6b7 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [912d3bf8]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +orderer.example.com | sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +peer1.org1.example.com | [6b8 12-15 03:49:45.34 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +peer1.org2.example.com | [6ee 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +peer1.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.4.2 +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [6b8 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [6ef 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 10909b0f383d9daee5eadc992b3651196d18093b70fee6eebf966852152024cb channel id: businesschannel version: 1.1.0 +peer1.org1.example.com | ADD binpackage.tar /usr/local/bin +peer0.org1.example.com | [7e7 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [522aba04]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [408 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [409 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | [40a 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [6f0 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=10909b0f383d9daee5eadc992b3651196d18093b70fee6eebf966852152024cb,syscc=true,proposal=0xc4230b82d0,canname=escc:1.1.0 +peer1.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ +orderer.example.com | [40b 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [7e8 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [522aba04]send state message COMPLETED +peer1.org2.example.com | [6f1 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org2.example.com | [6b9 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [912d3bf8]state is ready +peer1.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +peer0.org1.example.com | [7e9 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Received message COMPLETED from shim +peer1.org2.example.com | [6f2 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [6ba 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [912d3bf8]Completed PUT_STATE. Sending RESPONSE +orderer.example.com | [40c 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [40d 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [40e 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +peer1.org2.example.com | [6f3 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org2.example.com | [6bb 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [912d3bf8]enterBusyState trigger event RESPONSE +peer0.org1.example.com | [7ea 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | org.hyperledger.fabric.version="1.1.0" \ +orderer.example.com | [40f 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org2.example.com | [6f4 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [10909b0f]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [6bc 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [912d3bf8]Move state message RESPONSE +peer1.org1.example.com | org.hyperledger.fabric.base.version="0.4.2" +peer0.org1.example.com | [7eb 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [6f5 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.1.0 +peer0.org1.example.com | [7ec 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e, channelID:businesschannel +peer0.org2.example.com | [6bd 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [912d3bf8]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +orderer.example.com | [410 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [6f6 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [6b9 12-15 03:49:45.34 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' +peer0.org1.example.com | [7ed 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [6be 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [411 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org1.example.com | [6ba 12-15 03:49:45.34 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: +peer1.org2.example.com | [6f7 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [10909b0f]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [7ee 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [6bb 12-15 03:49:45.34 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.1.0 +peer0.org2.example.com | [6bf 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [912d3bf8]sending state message RESPONSE +peer1.org2.example.com | [6f8 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10909b0f]Move state message TRANSACTION +orderer.example.com | [412 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org1.example.com | [7ef 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer1.org1.example.com | [6bc 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org2.example.com | [6f9 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10909b0f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [6c0 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [912d3bf8]Received message COMPLETED from shim +orderer.example.com | [413 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +peer0.org1.example.com | [7f0 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] +peer1.org1.example.com | [6bd 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org2.example.com | [6c1 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [912d3bf8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [7f1 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40932) +peer1.org2.example.com | [6fb 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [414 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [6be 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422b05620 env 0xc422b008a0 txn 0 +peer0.org1.example.com | [7f2 12-15 03:49:48.14 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] +orderer.example.com | MIICQzCCAemgAwIBAgIQShjAwe+6sxoSMZ8UrYKOcTAKBggqhkjOPQQDAjBzMQsw +peer1.org1.example.com | [6bf 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422b008a0 +peer0.org2.example.com | [6c2 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [6fc 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10909b0f]sending state message TRANSACTION +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | [6c0 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\331\214\315\321\005\020\310\246\227[\"\017businesschannel*@522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A\nkokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl\nddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx\nOfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc\nbqEi6/lY2kK0EtGRnA==\n-----END CERTIFICATE-----\n\022\030A\n\203\264\360\3758X\277\365\242\315\221\0251\263\3737\315b\265\026\026S" +peer0.org1.example.com | [7f3 12-15 03:49:48.15 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] +peer0.org2.example.com | [6c3 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218, channelID:businesschannel +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org2.example.com | [6fa 12-15 03:49:45.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [6c4 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [6c1 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [7f4 12-15 03:49:48.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org2.example.com | [6fd 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10909b0f]Received message TRANSACTION from shim +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa +peer0.org2.example.com | [6c5 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [6fe 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10909b0f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [6c2 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [7f5 12-15 03:49:48.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org2.example.com | [6c6 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | GwyyfDLH07dFVkEvxJDGOKGevUcaYHphZvhzV78MBXVwIEGIENk7Zs8x+dx6iwIK +orderer.example.com | LOGmXxq/Wqd4qLs6kFyZvqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgsK9pE/plIOV10mqefUzE +peer0.org1.example.com | [7f6 12-15 03:49:48.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4233e7060 env 0xc423399ef0 txn 0 +peer0.org1.example.com | [7f7 12-15 03:49:48.15 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423399ef0 +peer1.org2.example.com | [6ff 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [10909b0f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [6c7 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] +peer1.org1.example.com | [6c3 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +orderer.example.com | vCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAL7xXrYD1fkzcpxi +peer0.org1.example.com | [7f8 12-15 03:49:48.16 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\331\214\315\321\005\020\310\246\227[\"\017businesschannel*@522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A\nkokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl\nddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx\nOfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc\nbqEi6/lY2kK0EtGRnA==\n-----END CERTIFICATE-----\n\022\030A\n\203\264\360\3758X\277\365\242\315\221\0251\263\3737\315b\265\026\026S" +peer0.org1.example.com | [7f9 12-15 03:49:48.16 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [700 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [6c8 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [6c4 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [702 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | yyZhFfEvMDWCoUicQw2b+c3GQ6OuAiA0KtNuH4yS4+c13W9Lsd28XNQK88FkwB2J +peer0.org2.example.com | [6c9 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccmycc] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] +peer0.org1.example.com | [7fa 12-15 03:49:48.16 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [6c5 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | QR9yhJE7rA== +peer0.org1.example.com | [7fb 12-15 03:49:48.16 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +peer1.org2.example.com | [701 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to history database +peer0.org2.example.com | [6ca 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer1.org1.example.com | [6c6 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422c33000, header channel_header:"\010\003\032\013\010\331\214\315\321\005\020\310\246\227[\"\017businesschannel*@522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A\nkokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl\nddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx\nOfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc\nbqEi6/lY2kK0EtGRnA==\n-----END CERTIFICATE-----\n\022\030A\n\203\264\360\3758X\277\365\242\315\221\0251\263\3737\315b\265\026\026S" +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [7fc 12-15 03:49:48.16 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [703 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +peer0.org2.example.com | [6cb 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +orderer.example.com | [415 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [704 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +peer0.org1.example.com | [7fd 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [6c7 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org2.example.com | [6cc 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org2.example.com | [705 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [7fe 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc423422000, header channel_header:"\010\003\032\013\010\331\214\315\321\005\020\310\246\227[\"\017businesschannel*@522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A\nkokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl\nddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx\nOfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc\nbqEi6/lY2kK0EtGRnA==\n-----END CERTIFICATE-----\n\022\030A\n\203\264\360\3758X\277\365\242\315\221\0251\263\3737\315b\265\026\026S" +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [6cd 12-15 03:49:37.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 channel id: businesschannel chaincode id: name:"lscc" +peer1.org1.example.com | [6c8 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org2.example.com | [706 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10909b0f]Transaction completed. Sending COMPLETED +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [7ff 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org1.example.com | [6c9 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org2.example.com | [6cf 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [708 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +peer0.org1.example.com | [800 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [6ca 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer0.org2.example.com | [6d0 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database +peer1.org2.example.com | [709 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org1.example.com | [6cb 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +peer1.org2.example.com | [70a 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 +peer0.org1.example.com | [801 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org2.example.com | [6d1 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +peer1.org2.example.com | [70b 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org1.example.com | [802 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [70c 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org1.example.com | [6cc 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer0.org2.example.com | [6ce 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +peer1.org2.example.com | [70d 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [803 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [6cd 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422b008a0 envbytes 0xc422e0b000 +peer0.org2.example.com | [6d2 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 channel id: businesschannel version: 1.1.0 +peer1.org2.example.com | [70e 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +peer1.org1.example.com | [6ce 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [54a89d2c-9404-4888-906b-062784993b33] +peer0.org1.example.com | [804 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [70f 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +orderer.example.com | kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +peer1.org1.example.com | [6cf 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org2.example.com | [6d3 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218,syscc=true,proposal=0xc42196da90,canname=escc:1.1.0 +peer0.org1.example.com | [805 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc423399ef0 envbytes 0xc423409c00 +peer1.org2.example.com | [710 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +peer0.org1.example.com | [806 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [d00111bc-e79c-4ec6-9be1-fe674fedc1d4] +peer0.org2.example.com | [6d5 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer1.org2.example.com | [711 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +peer1.org1.example.com | [6d0 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [54a89d2c-9404-4888-906b-062784993b33] +peer1.org2.example.com | [712 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [6d4 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +peer0.org1.example.com | [807 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +peer1.org1.example.com | [6d1 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422e0b000 +peer1.org2.example.com | [713 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | [6d7 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +orderer.example.com | bqEi6/lY2kK0EtGRnA== +peer0.org1.example.com | [808 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [d00111bc-e79c-4ec6-9be1-fe674fedc1d4] +peer1.org2.example.com | [707 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10909b0f]Move state message COMPLETED +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [6d2 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [809 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc423409c00 +peer1.org2.example.com | [714 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10909b0f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [6d8 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 +orderer.example.com | [416 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [715 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10909b0f]send state message COMPLETED +peer0.org2.example.com | [6d9 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org1.example.com | [6d3 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] +peer1.org2.example.com | [716 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10909b0f]Received message COMPLETED from shim +peer0.org1.example.com | [80a 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [717 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10909b0f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [6da 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [80b 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [6d4 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=6ffeba7c-2073-4bf4-b679-5d276435545d,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer1.org2.example.com | [718 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10909b0f383d9daee5eadc992b3651196d18093b70fee6eebf966852152024cb]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [80c 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=17e87bac-3892-40e1-a26e-9311e0d94996,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer0.org2.example.com | [6db 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [719 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:10909b0f383d9daee5eadc992b3651196d18093b70fee6eebf966852152024cb, channelID:businesschannel +peer1.org1.example.com | [6d5 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e chaindID businesschannel +peer0.org1.example.com | [80d 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e chaindID businesschannel +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +peer0.org2.example.com | [6dc 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [71a 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [71b 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [80e 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [71c 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org2.example.com | [6dd 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [6d6 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer1.org2.example.com | [71d 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [10909b0f383d9daee5eadc992b3651196d18093b70fee6eebf966852152024cb] +peer0.org1.example.com | [80f 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [6de 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +peer1.org2.example.com | [71e 12-15 03:49:45.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:36192) +peer1.org1.example.com | [6d7 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [6df 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [71f 12-15 03:49:48.10 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] +orderer.example.com | kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +peer0.org1.example.com | [810 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer0.org2.example.com | [6e0 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [6d8 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer1.org2.example.com | [720 12-15 03:49:48.11 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] +peer0.org1.example.com | [811 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [17e87bac]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +peer0.org2.example.com | [6e1 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [721 12-15 03:49:48.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org1.example.com | [6d9 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [6ffeba7c]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [6d6 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +peer1.org2.example.com | [722 12-15 03:49:48.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org1.example.com | [812 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [6da 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +peer0.org2.example.com | [6e2 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer1.org2.example.com | [723 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4202f48c0 env 0xc42262e300 txn 0 +peer1.org1.example.com | [6db 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [6ffeba7c]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [813 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [17e87bac]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | bqEi6/lY2kK0EtGRnA== +peer1.org1.example.com | [6dc 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6ffeba7c]Move state message TRANSACTION +peer1.org2.example.com | [724 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42262e300 +peer0.org2.example.com | [6e3 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [912d3bf8]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [814 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17e87bac]Move state message TRANSACTION +peer1.org2.example.com | [725 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\331\214\315\321\005\020\310\246\227[\"\017businesschannel*@522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A\nkokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl\nddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx\nOfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc\nbqEi6/lY2kK0EtGRnA==\n-----END CERTIFICATE-----\n\022\030A\n\203\264\360\3758X\277\365\242\315\221\0251\263\3737\315b\265\026\026S" +peer1.org1.example.com | [6dd 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6ffeba7c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [6e4 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [726 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [6de 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [815 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [17e87bac]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [6e5 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [727 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [6df 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6ffeba7c]sending state message TRANSACTION +peer0.org1.example.com | [816 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [6e6 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [912d3bf8]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [417 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org2.example.com | [728 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +peer1.org1.example.com | [6e0 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ffeba7c]Received message TRANSACTION from shim +peer0.org2.example.com | [6e7 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [912d3bf8]Move state message TRANSACTION +peer0.org1.example.com | [817 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17e87bac]sending state message TRANSACTION +peer1.org2.example.com | [729 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [6e1 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6ffeba7c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [6e8 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [912d3bf8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [818 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17e87bac]Received message TRANSACTION from shim +orderer.example.com | [418 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [72a 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [6e2 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [6ffeba7c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [419 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [819 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17e87bac]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [6e9 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [6e3 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org2.example.com | [72b 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42256e800, header channel_header:"\010\003\032\013\010\331\214\315\321\005\020\310\246\227[\"\017businesschannel*@522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A\nkokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl\nddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx\nOfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc\nbqEi6/lY2kK0EtGRnA==\n-----END CERTIFICATE-----\n\022\030A\n\203\264\360\3758X\277\365\242\315\221\0251\263\3737\315b\265\026\026S" +orderer.example.com | [41a 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [6e4 12-15 03:49:48.20 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 | [6ea 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [912d3bf8]sending state message TRANSACTION +peer0.org1.example.com | [81a 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [17e87bac]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [41b 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [72c 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org2.example.com | [6eb 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [912d3bf8]Received message TRANSACTION from shim +peer0.org1.example.com | [81b 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +orderer.example.com | [41c 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org1.example.com | [6e5 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer1.org2.example.com | [72d 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org2.example.com | [6ec 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [912d3bf8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [81c 12-15 03:49:48.21 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 | [41d 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [72e 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org1.example.com | [6e6 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ffeba7c]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [6ed 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [912d3bf8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [41e 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org1.example.com | [6e7 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ffeba7c]Move state message COMPLETED +peer0.org1.example.com | [81d 12-15 03:49:48.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +orderer.example.com | [41f 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org2.example.com | [72f 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [81e 12-15 03:49:48.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17e87bac]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [6ee 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [420 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +peer1.org1.example.com | [6e8 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6ffeba7c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [730 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] +peer0.org2.example.com | [6ef 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [81f 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17e87bac]Move state message COMPLETED +orderer.example.com | [421 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [6f0 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [912d3bf8]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [731 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer1.org1.example.com | [6e9 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ffeba7c]send state message COMPLETED +peer0.org1.example.com | [820 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17e87bac]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | MIICQzCCAeqgAwIBAgIRAMt+4ybOK1r7B8eavLVTMBUwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [732 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc42262e300 envbytes 0xc422e52800 +peer0.org1.example.com | [821 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17e87bac]send state message COMPLETED +peer0.org2.example.com | [6f1 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [912d3bf8]Move state message COMPLETED +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [733 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [04602535-4838-4195-88aa-2e5561c00dfe] +peer1.org1.example.com | [6ea 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6ffeba7c]Received message COMPLETED from shim +peer0.org2.example.com | [6f2 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [912d3bf8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [822 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17e87bac]Received message COMPLETED from shim +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [734 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org2.example.com | [6f3 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [912d3bf8]send state message COMPLETED +peer0.org1.example.com | [823 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [17e87bac]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [6eb 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6ffeba7c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +peer1.org2.example.com | [735 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [04602535-4838-4195-88aa-2e5561c00dfe] +peer0.org1.example.com | [824 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [17e87bac-3892-40e1-a26e-9311e0d94996]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [6f4 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [912d3bf8]Received message COMPLETED from shim +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [6ec 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6ffeba7c-2073-4bf4-b679-5d276435545d]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [825 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:17e87bac-3892-40e1-a26e-9311e0d94996, channelID:businesschannel +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +peer1.org2.example.com | [736 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422e52800 +peer0.org1.example.com | [826 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [6f5 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [912d3bf8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [737 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BPGrtJtHj1Ql02gq7I0ZQQKJwvtZhp0t3rCwF1cFILTHIBM4phJ/ZYJQa1lb12pO +orderer.example.com | sxSxuEvRGTFcZXtunUc0SeWjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer0.org2.example.com | [6f6 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [738 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] +peer0.org1.example.com | [827 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] +peer1.org1.example.com | [6ed 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:6ffeba7c-2073-4bf4-b679-5d276435545d, channelID:businesschannel +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICSqVyrJerF7YoXDKKeV +peer0.org2.example.com | [6f7 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218, channelID:businesschannel +peer0.org1.example.com | [828 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc423409c00 +peer1.org2.example.com | [739 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=032e652c-e557-4898-a4dc-77a368c0216a,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer1.org1.example.com | [6ee 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | 2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCIB+psiek7FqP18l1 +peer0.org1.example.com | [829 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc423399ef0 envbytes 0xc423409c00 +peer1.org2.example.com | [73a 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e chaindID businesschannel +peer1.org1.example.com | [6ef 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] +peer0.org2.example.com | [6f8 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | 3s2anbtfpiGTHbAnm2BihpD9sRPjAiAIvsdyfn+nb2bCQBK6sodbO+LxSkuZulkP +peer1.org2.example.com | [73b 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer0.org1.example.com | [82a 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4233e7060 env 0xc423399ef0 txn 0 +orderer.example.com | oMR3yCH/eA== +peer1.org1.example.com | [6f0 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422e0b000 +peer0.org1.example.com | [82b 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org2.example.com | [6f9 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [6f1 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422b008a0 envbytes 0xc422e0b000 +peer1.org2.example.com | [73c 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [82c 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +orderer.example.com | [422 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [6f2 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422b05620 env 0xc422b008a0 txn 0 +peer1.org2.example.com | [73d 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer0.org1.example.com | [82d 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] +orderer.example.com | MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [6fa 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [82e 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [6f3 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer1.org2.example.com | [73e 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [032e652c]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [82f 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] +peer1.org1.example.com | [6f4 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +peer0.org1.example.com | [830 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org2.example.com | [6fb 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [73f 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [831 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +peer0.org2.example.com | [6fc 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:58214) +peer1.org1.example.com | [6f5 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [740 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [032e652c]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [832 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org2.example.com | [6fd 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +peer0.org1.example.com | [833 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer1.org2.example.com | [741 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [032e652c]Move state message TRANSACTION +peer0.org2.example.com | [6fe 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org1.example.com | [6f6 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +peer0.org1.example.com | [834 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=a +peer1.org2.example.com | [742 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [032e652c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [6f7 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] +peer0.org1.example.com | [835 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer0.org2.example.com | [6ff 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc420103240 env 0xc4219403f0 txn 0 +peer0.org1.example.com | [836 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=b +peer1.org2.example.com | [743 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +peer0.org2.example.com | [700 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4219403f0 +peer1.org1.example.com | [6f8 12-15 03:49:48.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org1.example.com | [837 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +orderer.example.com | YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +peer0.org1.example.com | [838 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] marked as valid by state validator +peer1.org2.example.com | [744 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [032e652c]sending state message TRANSACTION +peer1.org1.example.com | [6f9 12-15 03:49:48.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +orderer.example.com | 8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +peer0.org1.example.com | [839 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org2.example.com | [745 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [032e652c]Received message TRANSACTION from shim +orderer.example.com | N5+z/fTTfchGfLaCtzM= +peer0.org1.example.com | [83a 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer1.org2.example.com | [746 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [032e652c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [6fa 12-15 03:49:48.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org2.example.com | [701 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\312\214\315\321\005\020\364\336\342\240\001\"\017businesschannel*@912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv\nVLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7\nYoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2\n8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0\nN5+z/fTTfchGfLaCtzM=\n-----END CERTIFICATE-----\n\022\030\326l\271@\240_\234\374\202\363\340\311\352\370z/\356\364\027\215~\330Da" +peer0.org1.example.com | [83b 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer1.org2.example.com | [747 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [032e652c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [423 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [83c 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage +peer0.org2.example.com | [702 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [748 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org1.example.com | [6fb 12-15 03:49:48.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +orderer.example.com | MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [83d 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [5] +peer1.org2.example.com | [749 12-15 03:49:48.12 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 | [703 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [6fc 12-15 03:49:48.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=a +peer0.org1.example.com | [83e 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xcb, 0xcf, 0xb6, 0xae, 0xe4, 0xec, 0x84, 0x3d, 0xff, 0x69, 0xec, 0xe8, 0x67, 0xe0, 0x4, 0x97, 0xd4, 0xed, 0x51, 0x58, 0x9c, 0x6d, 0xdb, 0x2f, 0x52, 0xb2, 0x7b, 0xe3, 0x9b, 0x2a, 0xb2, 0x78} txOffsets= +peer1.org2.example.com | [74a 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [6fd 12-15 03:49:48.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer0.org2.example.com | [704 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 73763341eb604cef734e4ac7c2ea77bc9d730c798fb96eb583c0637692a88acd} +peer0.org1.example.com | txId=522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e locPointer=offset=70, bytesLength=2913 +peer1.org2.example.com | [74b 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [032e652c]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [6fe 12-15 03:49:48.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=b +peer0.org2.example.com | [705 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | ] +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [6ff 12-15 03:49:48.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer0.org2.example.com | [706 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [74c 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [032e652c]Move state message COMPLETED +peer0.org1.example.com | [83f 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50817, bytesLength=2913] for tx ID: [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] to index +peer1.org1.example.com | [700 12-15 03:49:48.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] marked as valid by state validator +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +peer1.org2.example.com | [74d 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [032e652c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [707 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422d82a80, header channel_header:"\010\003\032\014\010\312\214\315\321\005\020\364\336\342\240\001\"\017businesschannel*@912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv\nVLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7\nYoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2\n8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0\nN5+z/fTTfchGfLaCtzM=\n-----END CERTIFICATE-----\n\022\030\326l\271@\240_\234\374\202\363\340\311\352\370z/\356\364\027\215~\330Da" +peer1.org1.example.com | [701 12-15 03:49:48.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [840 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50817, bytesLength=2913] for tx number:[0] ID: [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] to blockNumTranNum index +peer1.org2.example.com | [74e 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [032e652c]send state message COMPLETED +peer0.org2.example.com | [708 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [702 12-15 03:49:48.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org2.example.com | [709 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +peer0.org1.example.com | [841 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55524], isChainEmpty=[false], lastBlockNumber=[5] +peer1.org1.example.com | [703 12-15 03:49:48.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org2.example.com | [70a 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org2.example.com | [74f 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [032e652c]Received message COMPLETED from shim +orderer.example.com | VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +peer0.org2.example.com | [70b 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [704 12-15 03:49:48.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage +peer1.org2.example.com | [750 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [032e652c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [842 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 5 +peer0.org2.example.com | [70c 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] +peer1.org1.example.com | [705 12-15 03:49:48.21 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [5] +peer0.org1.example.com | [843 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 5 +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +peer1.org2.example.com | [751 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [032e652c-e557-4898-a4dc-77a368c0216a]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [70d 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +orderer.example.com | YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +peer1.org1.example.com | [706 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xcb, 0xcf, 0xb6, 0xae, 0xe4, 0xec, 0x84, 0x3d, 0xff, 0x69, 0xec, 0xe8, 0x67, 0xe0, 0x4, 0x97, 0xd4, 0xed, 0x51, 0x58, 0x9c, 0x6d, 0xdb, 0x2f, 0x52, 0xb2, 0x7b, 0xe3, 0x9b, 0x2a, 0xb2, 0x78} txOffsets= +peer0.org1.example.com | [844 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) +orderer.example.com | 8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +peer1.org2.example.com | [752 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:032e652c-e557-4898-a4dc-77a368c0216a, channelID:businesschannel +peer0.org2.example.com | [70e 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4219403f0 envbytes 0xc422d7e880 +peer1.org1.example.com | txId=522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e locPointer=offset=70, bytesLength=2913 +peer0.org1.example.com | [845 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database +peer1.org2.example.com | [753 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [70f 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422d7e880 +orderer.example.com | N5+z/fTTfchGfLaCtzM= +peer1.org1.example.com | ] +peer0.org1.example.com | [846 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer1.org1.example.com | [707 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50817, bytesLength=2913] for tx ID: [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] to index +peer1.org2.example.com | [754 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] +peer0.org2.example.com | [710 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [847 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [708 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50817, bytesLength=2913] for tx number:[0] ID: [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] to blockNumTranNum index +peer0.org2.example.com | [711 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] +peer1.org2.example.com | [755 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422e52800 +peer0.org1.example.com | [848 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +orderer.example.com | [424 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer1.org1.example.com | [709 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55524], isChainEmpty=[false], lastBlockNumber=[5] +peer0.org2.example.com | [712 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=e4aaf7ba-8bf4-4272-b704-63a88b774b9f,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer1.org2.example.com | [756 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc42262e300 envbytes 0xc422e52800 +peer0.org1.example.com | [849 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +peer0.org2.example.com | [713 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 chaindID businesschannel +peer1.org1.example.com | [70a 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 5 +peer1.org2.example.com | [757 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4202f48c0 env 0xc42262e300 txn 0 +orderer.example.com | [425 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +peer0.org2.example.com | [714 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer1.org1.example.com | [70b 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 5 +orderer.example.com | [426 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +peer0.org1.example.com | [84a 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [758 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org2.example.com | [715 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [70c 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) +peer0.org1.example.com | [84b 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database +peer0.org2.example.com | [716 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer1.org2.example.com | [759 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +orderer.example.com | [427 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +peer0.org2.example.com | [717 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e4aaf7ba]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [84c 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +orderer.example.com | [428 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +peer1.org2.example.com | [75a 12-15 03:49:48.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] +peer1.org1.example.com | [70d 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database +peer0.org2.example.com | [718 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [84d 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +peer1.org2.example.com | [75b 12-15 03:49:48.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | [429 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +peer1.org1.example.com | [70e 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [719 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e4aaf7ba]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [42a 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +peer0.org1.example.com | [84e 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org1.example.com | [70f 12-15 03:49:53.34 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer1.org1.example.com-mycc-1.0-cd123150154e6bf2df7ce682e0b1bcbea40499416f37a6da3aae14c4eb51b08d +peer1.org2.example.com | [75c 12-15 03:49:48.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] +peer0.org2.example.com | [71a 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e4aaf7ba]Move state message TRANSACTION +peer1.org1.example.com | [710 12-15 03:49:53.34 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +orderer.example.com | [42b 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +peer0.org1.example.com | [84f 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e +peer1.org2.example.com | [75d 12-15 03:49:48.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org2.example.com | [71b 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e4aaf7ba]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [850 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org2.example.com | [75e 12-15 03:49:48.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +orderer.example.com | [42c 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +peer0.org2.example.com | [71c 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [711 12-15 03:49:53.34 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-mycc-1.0 +peer0.org1.example.com | [851 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | [42d 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +peer0.org2.example.com | [71d 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e4aaf7ba]sending state message TRANSACTION +peer1.org2.example.com | [75f 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [852 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [71e 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e4aaf7ba]Received message TRANSACTION from shim +peer1.org2.example.com | [760 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +orderer.example.com | [42e 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +peer0.org1.example.com | [853 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [712 12-15 03:49:53.46 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org1.example.com-mycc-1.0-cd123150154e6bf2df7ce682e0b1bcbea40499416f37a6da3aae14c4eb51b08d +peer0.org2.example.com | [71f 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e4aaf7ba]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [761 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=a +peer1.org1.example.com | [713 12-15 03:49:54.26 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org1.example.com-mycc-1.0 +peer0.org1.example.com | [854 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | [720 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e4aaf7ba]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [42f 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +peer0.org2.example.com | [721 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org1.example.com | [714 12-15 03:49:54.26 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org1.example.com-mycc-1.0) +peer0.org2.example.com | [722 12-15 03:49:39.79 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 | [762 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +orderer.example.com | [430 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +peer0.org1.example.com | [855 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [723 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer1.org2.example.com | [763 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=b +peer1.org1.example.com | [715 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.authenticate)-fm.authenticate -> DEBU Chaincode mycc:1.0 's authentication is authorized +peer0.org2.example.com | [724 12-15 03:49:39.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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [431 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +peer0.org1.example.com | [856 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [716 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org2.example.com | [725 12-15 03:49:39.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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [857 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [764 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer0.org2.example.com | [726 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +orderer.example.com | [432 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +peer1.org2.example.com | [765 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] marked as valid by state validator +peer1.org1.example.com | [717 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | [727 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [f8ffd07d-7b8d-4751-a2d0-18eca51c650b] +peer0.org1.example.com | [858 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [766 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +orderer.example.com | [433 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +peer0.org2.example.com | [728 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [859 12-15 03:49:54.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40946 +peer1.org1.example.com | [718 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org2.example.com | [729 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [f8ffd07d-7b8d-4751-a2d0-18eca51c650b] +orderer.example.com | [434 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +peer1.org2.example.com | [767 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org1.example.com | [85a 12-15 03:49:54.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42386f350 +peer1.org1.example.com | [719 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org1.example.com | [85b 12-15 03:49:54.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [72a 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +peer0.org2.example.com | [72b 12-15 03:49:39.79 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)(0x990ba0), deserializer:(*msp.mspManagerImpl)(0xc422750e80)} +orderer.example.com | [435 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +peer1.org2.example.com | [768 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer1.org1.example.com | [71a 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 +peer0.org1.example.com | [85c 12-15 03:49:54.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [72c 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated +orderer.example.com | [436 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +peer1.org1.example.com | [71b 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED +peer0.org1.example.com | [85d 12-15 03:49:54.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +peer1.org2.example.com | [769 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage +peer0.org2.example.com | [72d 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e4aaf7ba]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [85e 12-15 03:49:54.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [437 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +peer0.org2.example.com | [72e 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e4aaf7ba]Move state message COMPLETED +peer1.org1.example.com | [71c 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org1.example.com | [85f 12-15 03:49:54.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [76a 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [5] +peer0.org2.example.com | [72f 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e4aaf7ba]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [438 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +peer1.org1.example.com | [71d 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed +peer1.org2.example.com | [76b 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xcb, 0xcf, 0xb6, 0xae, 0xe4, 0xec, 0x84, 0x3d, 0xff, 0x69, 0xec, 0xe8, 0x67, 0xe0, 0x4, 0x97, 0xd4, 0xed, 0x51, 0x58, 0x9c, 0x6d, 0xdb, 0x2f, 0x52, 0xb2, 0x7b, 0xe3, 0x9b, 0x2a, 0xb2, 0x78} txOffsets= +peer0.org2.example.com | [730 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e4aaf7ba]send state message COMPLETED +peer0.org1.example.com | [860 12-15 03:49:54.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4237c3c20, header 0xc42386f380 +peer1.org1.example.com | [71e 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY +orderer.example.com | [439 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +peer1.org2.example.com | txId=522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e locPointer=offset=70, bytesLength=2913 +peer0.org2.example.com | [731 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e4aaf7ba]Received message COMPLETED from shim peer1.org2.example.com | ] -peer0.org2.example.com | [71d 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [79f 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Received message COMPLETED from shim -orderer.example.com | 00000030 ce ac 70 cb 4a 65 18 e6 4c a6 87 e4 94 7b 5f 1c |..p.Je..L....{_.| -peer0.org2.example.com | [71e 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [7a0 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [772 12-12 14:20:12.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50781, bytesLength=2916] for tx ID: [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] to index -orderer.example.com | 00000040 60 02 b8 01 29 1b 7c |`...).|| -peer0.org2.example.com | [71f 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | [40d 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e768 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [7a1 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [773 12-12 14:20:12.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50781, bytesLength=2916] for tx number:[0] ID: [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] to blockNumTranNum index -peer0.org2.example.com | [720 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -orderer.example.com | [40e 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e768 gate 1513088379721699300 evaluation succeeds -peer0.org2.example.com | [721 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] -orderer.example.com | [40f 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [774 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55491], isChainEmpty=[false], lastBlockNumber=[5] -peer0.org1.example.com | [7a2 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7, channelID:businesschannel -peer1.org2.example.com | [775 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 5 -orderer.example.com | [410 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [722 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [7a3 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [776 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 5 -orderer.example.com | [411 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/ChannelCreationPolicy -peer0.org2.example.com | [723 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4232115f0 envbytes 0xc4225f0800 -orderer.example.com | [412 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy -peer0.org2.example.com | [724 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [b14959dc-d249-4135-ba90-139def989793] -orderer.example.com | [413 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Capabilities -peer1.org2.example.com | [777 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) -peer0.org2.example.com | [725 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | [414 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [7a4 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [726 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [b14959dc-d249-4135-ba90-139def989793] -orderer.example.com | [415 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [7a5 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer1.org2.example.com | [778 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database -peer0.org2.example.com | [727 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc4225f0800 -orderer.example.com | [416 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Writers -peer0.org2.example.com | [728 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [417 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [729 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] -peer1.org2.example.com | [779 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [7a6 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] -orderer.example.com | [418 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [72a 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=5b9b56ed-9815-4a3a-a066-47ce1d4162df,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org2.example.com | [72b 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 chaindID businesschannel -peer0.org2.example.com | [72c 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -orderer.example.com | [419 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [72d 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [77a 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -orderer.example.com | [41a 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [7a7 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36752) -peer0.org2.example.com | [72e 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -orderer.example.com | [41b 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [77b 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer0.org2.example.com | [72f 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5b9b56ed]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [41c 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [41d 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org2.example.com | [77c 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer0.org2.example.com | [730 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [731 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5b9b56ed]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [732 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b9b56ed]Move state message TRANSACTION -peer0.org2.example.com | [733 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5b9b56ed]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [77d 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [7a8 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -orderer.example.com | [41e 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [734 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [77e 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database -peer0.org1.example.com | [7a9 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org2.example.com | [735 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b9b56ed]sending state message TRANSACTION -orderer.example.com | [41f 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [736 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b9b56ed]Received message TRANSACTION from shim -peer0.org1.example.com | [7aa 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422eddec0 env 0xc422ff8660 txn 0 -orderer.example.com | [420 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [77f 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -peer0.org2.example.com | [737 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5b9b56ed]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [7ab 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422ff8660 -peer1.org2.example.com | [780 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -peer0.org2.example.com | [738 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5b9b56ed]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [421 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [781 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org2.example.com | [739 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org2.example.com | [73a 12-12 14:20:12.54 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 | [422 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [7ac 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\232\313\277\321\005\020\200\347\372\352\001\"\017businesschannel*@772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv\npydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS\nq+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c\ngHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf\nOwJpoynNCyKsWozuVw==\n-----END CERTIFICATE-----\n\022\030d\361\325j\375\325\225\313\300\373I\037\306\310\345\235>\177Y_\360_\301w" -peer0.org2.example.com | [73b 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer1.org2.example.com | [782 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 -orderer.example.com | [423 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [73c 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b9b56ed]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [783 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [73d 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b9b56ed]Move state message COMPLETED -peer0.org1.example.com | [7ad 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [73e 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5b9b56ed]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [784 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [424 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [73f 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b9b56ed]send state message COMPLETED -peer0.org1.example.com | [7ae 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [425 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [740 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b9b56ed]Received message COMPLETED from shim -peer0.org2.example.com | [741 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5b9b56ed]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [426 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [7af 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -peer0.org2.example.com | [742 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5b9b56ed-9815-4a3a-a066-47ce1d4162df]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [785 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [7b0 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [743 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:5b9b56ed-9815-4a3a-a066-47ce1d4162df, channelID:businesschannel -peer1.org2.example.com | [786 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [744 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [427 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [787 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [7b1 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [745 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] -peer1.org2.example.com | [788 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [428 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [7b2 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421a5e000, header channel_header:"\010\003\032\014\010\232\313\277\321\005\020\200\347\372\352\001\"\017businesschannel*@772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv\npydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS\nq+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c\ngHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf\nOwJpoynNCyKsWozuVw==\n-----END CERTIFICATE-----\n\022\030d\361\325j\375\325\225\313\300\373I\037\306\310\345\235>\177Y_\360_\301w" -peer0.org2.example.com | [746 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc4225f0800 -peer1.org2.example.com | [789 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [429 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [7b3 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | [42a 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [78a 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [42b 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [747 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4232115f0 envbytes 0xc4225f0800 -orderer.example.com | [42c 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [78b 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [7b4 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [748 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4218f3e20 env 0xc4232115f0 txn 0 -orderer.example.com | [42d 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [749 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org1.example.com | [7b5 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org2.example.com | [78c 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:42394 -orderer.example.com | [42e 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AC8060A1608011A0608FBCABFD10522...0C08A9179B7C1B58CF3676E91FAAD4B0 -peer1.org2.example.com | [78d 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4224d4d80 -peer0.org2.example.com | [74a 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -orderer.example.com | [42f 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: 28E62DA647E535A976C10054872D9AFE9A570FC7CCD927DFBD2E993925BC645E -peer1.org2.example.com | [78e 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | [430 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [74b 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] -peer0.org1.example.com | [7b6 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [78f 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [7b7 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] -orderer.example.com | [431 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [7b8 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [790 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP cec57e02e224c3efa1075c97d8c3172cd78fec768b3b75afcf280ac60a493411} -peer0.org2.example.com | [74c 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [7b9 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422ff8660 envbytes 0xc422e9bc00 -orderer.example.com | [432 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [791 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [7ba 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [27cc3edd-3ae1-49fc-bede-bf3dffe50b85] -peer0.org2.example.com | [74d 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] -orderer.example.com | [433 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [74e 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -orderer.example.com | [434 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AC9060A1708041A0608FBCABFD10522...6271F48FE540BEF8477F5E588BDE6B99 -peer0.org1.example.com | [7bb 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [792 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [435 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: C51A9AC24391E2F17CA7925DA3DAA500C021D5059AC8E716B9F72ABEC42AA100 -peer0.org2.example.com | [74f 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -peer1.org2.example.com | [793 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42271acd0, header 0xc4224d4db0 -peer0.org1.example.com | [7bc 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [27cc3edd-3ae1-49fc-bede-bf3dffe50b85] -peer0.org2.example.com | [750 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [794 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -orderer.example.com | [436 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -peer0.org1.example.com | [7bd 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422e9bc00 -peer0.org2.example.com | [751 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer1.org2.example.com | [795 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 66657cf2ceff6fc15f90e8c8b232f5ddadb15f2a82cd5453bfdde4dd8e685072 -peer0.org1.example.com | [7be 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [752 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=a -orderer.example.com | [437 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [7bf 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] -peer0.org1.example.com | [7c0 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=8ffce052-cced-46e8-b1aa-66f013c76e3a,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org2.example.com | [796 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [66657cf2ceff6fc15f90e8c8b232f5ddadb15f2a82cd5453bfdde4dd8e685072] -peer1.org2.example.com | [797 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [7c1 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 chaindID businesschannel -peer0.org2.example.com | [753 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -orderer.example.com | [438 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -peer1.org2.example.com | [798 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [66657cf2ceff6fc15f90e8c8b232f5ddadb15f2a82cd5453bfdde4dd8e685072] -peer0.org2.example.com | [754 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=b -orderer.example.com | [439 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [43a 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -peer0.org2.example.com | [755 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer1.org2.example.com | [799 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 66657cf2ceff6fc15f90e8c8b232f5ddadb15f2a82cd5453bfdde4dd8e685072 channel id: businesschannel -peer0.org1.example.com | [7c2 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer0.org2.example.com | [756 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] marked as valid by state validator -peer1.org2.example.com | [79a 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=66657cf2ceff6fc15f90e8c8b232f5ddadb15f2a82cd5453bfdde4dd8e685072,syscc=true,proposal=0xc42271acd0,canname=lscc:1.1.0 -peer0.org1.example.com | [7c3 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [43b 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e330 gate 1513088379732691500 evaluation starts -peer1.org2.example.com | [79b 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org2.example.com | [757 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org1.example.com | [7c4 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer1.org2.example.com | [79c 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [758 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org1.example.com | [7c5 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8ffce052]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [43c 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e330 signed by 0 principal evaluation starts (used [false]) -peer1.org2.example.com | [79d 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org2.example.com | [759 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org1.example.com | [7c6 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [43d 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e330 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624b6741774942416749515a514232667a33766f54575838334f36754e592b796a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d566f58445449334d5449784d4441344e4441784d566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415273516c4d6e6a7836777a4c5133455649357a4357785845485248413046674a6f6148586363505a595a4d746743534b684e0a7456346d424f31762b785565392b313755394f2f467037694b54616c68622f65676e71776f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344416b43387863556452672b44333878734373535a64304b343343724f450a2b455833697a4773554d7931527a414b42676771686b6a4f5051514441674e494144424641694541676e494d4e3768725a5370345561565238752b65746f2f710a585a4e4d476a6b7664614150486f316176673843494736454a4336356e6f6a684b6c754f53484841596b6a72356347646d6159455249576644737935544667640a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org2.example.com | [75a 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage -peer1.org2.example.com | [79e 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66657cf2]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [7c7 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8ffce052]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [79f 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [75b 12-12 14:20:12.54 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [5] -orderer.example.com | [43e 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -peer1.org2.example.com | [7a0 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [7c8 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ffce052]Move state message TRANSACTION -peer0.org2.example.com | [75c 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x2b, 0x97, 0x1a, 0x34, 0xe0, 0x9f, 0x84, 0x93, 0x97, 0xdf, 0x58, 0xc6, 0xd5, 0xf6, 0xb, 0xf, 0x1d, 0x2f, 0xf, 0xde, 0x2, 0xc2, 0xdb, 0x15, 0x97, 0x87, 0x7d, 0x95, 0xfd, 0x8d, 0x4a, 0x56} txOffsets= -peer1.org2.example.com | [7a1 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66657cf2]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | txId=772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 locPointer=offset=70, bytesLength=2916 -orderer.example.com | [43f 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [440 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e330 principal matched by identity 0 -peer0.org1.example.com | [7c9 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ffce052]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [732 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e4aaf7ba]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [43a 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [861 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" +peer1.org2.example.com | [76c 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50817, bytesLength=2913] for tx ID: [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] to index +peer0.org2.example.com | [733 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e4aaf7ba-8bf4-4272-b704-63a88b774b9f]HandleMessage- COMPLETED. Notify +orderer.example.com | [43b 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org1.example.com | [862 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad +peer1.org1.example.com | [71f 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [734 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e4aaf7ba-8bf4-4272-b704-63a88b774b9f, channelID:businesschannel +orderer.example.com | [43c 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org2.example.com | [76d 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50817, bytesLength=2913] for tx number:[0] ID: [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] to blockNumTranNum index +peer1.org1.example.com | [720 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [863 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad] +peer0.org2.example.com | [735 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [76e 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55524], isChainEmpty=[false], lastBlockNumber=[5] +peer1.org1.example.com | [721 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e9bb883c]Move state message READY +peer0.org1.example.com | [864 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [736 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218, error Chaincode mycc is already instantiated +peer1.org2.example.com | [76f 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 5 +peer1.org1.example.com | [722 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e9bb883c]Fabric side Handling ChaincodeMessage of type: READY in state established +orderer.example.com | [43d 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [865 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad] +peer1.org1.example.com | [723 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [e9bb883c]Entered state ready +peer0.org2.example.com | [737 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] +peer0.org1.example.com | [866 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad channel id: businesschannel +orderer.example.com | [43e 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [770 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 5 +peer1.org1.example.com | [724 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:e9bb883c5817b66047a119003f67cb51ed0a4074bf562ffa0a3fd6958d38874d, channelID:businesschannel +peer0.org1.example.com | [867 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad,syscc=true,proposal=0xc4237c3c20,canname=lscc:1.1.0 +orderer.example.com | [43f 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org1.example.com | [725 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e9bb883c]sending state message READY +peer0.org2.example.com | [738 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422d7e880 +peer1.org2.example.com | [771 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) +peer1.org1.example.com | [726 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [868 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +orderer.example.com | [440 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [739 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4219403f0 envbytes 0xc422d7e880 +peer1.org2.example.com | [772 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database +peer1.org1.example.com | [727 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | [73a 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 returned error Chaincode mycc is already instantiated +peer0.org1.example.com | [869 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [441 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer1.org1.example.com | [728 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [773 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [86a 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer0.org2.example.com | [73b 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc420103240 env 0xc4219403f0 txn 0 +orderer.example.com | [442 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [729 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +peer1.org2.example.com | [774 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [73c 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 +peer1.org1.example.com | [72a 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e9bb883c]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [775 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +orderer.example.com | [443 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org1.example.com | [72b 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [776 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +peer0.org2.example.com | [73d 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org1.example.com | [86b 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7072ae91]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [72c 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [777 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [72d 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e9bb883c]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [444 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org2.example.com | [73e 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] +peer0.org1.example.com | [86c 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [72e 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e9bb883c]Move state message TRANSACTION +orderer.example.com | [445 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [778 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database +peer0.org2.example.com | [73f 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [72f 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e9bb883c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [446 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [779 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +peer0.org1.example.com | [86d 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [730 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [77a 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +peer0.org2.example.com | [740 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] +peer1.org1.example.com | [731 12-15 03:49:54.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e9bb883c]sending state message TRANSACTION +peer0.org1.example.com | [86e 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7072ae91]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [447 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [77b 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org2.example.com | [741 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org1.example.com | [86f 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7072ae91]Move state message TRANSACTION +peer1.org1.example.com | [732 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e9bb883c]Received message GET_STATE from shim +peer0.org1.example.com | [870 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7072ae91]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [77c 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e +orderer.example.com | [448 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [733 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e9bb883c]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [77d 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org2.example.com | [742 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> WARN Channel [businesschannel]: Block [4] Transaction index [0] TxId [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] +peer0.org1.example.com | [871 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [449 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org2.example.com | [743 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org1.example.com | [734 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [e9bb883c]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [77e 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | [44a 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [872 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7072ae91]sending state message TRANSACTION +peer1.org1.example.com | [735 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [736 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e9bb883c] getting state for chaincode mycc, key a, channel businesschannel +peer0.org2.example.com | [744 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org2.example.com | [745 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org2.example.com | [746 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage +peer0.org1.example.com | [873 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7072ae91]Received message TRANSACTION from shim +peer1.org1.example.com | [737 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=a +orderer.example.com | [44b 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org2.example.com | [77f 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [747 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [4] +peer1.org1.example.com | [738 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e9bb883c]Got state. Sending RESPONSE +peer0.org1.example.com | [874 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7072ae91]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [44c 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [748 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x16, 0x8f, 0x87, 0x62, 0x56, 0x57, 0x56, 0x27, 0xf7, 0xf4, 0x70, 0xdb, 0x81, 0x94, 0xc0, 0xac, 0xf4, 0x6c, 0x89, 0xd9, 0x2e, 0x92, 0x8f, 0x5e, 0xb2, 0xa6, 0x41, 0xed, 0x97, 0x77, 0x61, 0xc3} txOffsets= +peer1.org2.example.com | [780 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [739 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [e9bb883c]handleGetState serial send RESPONSE +orderer.example.com | [44d 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [875 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7072ae91]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [781 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | txId=912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 locPointer=offset=70, bytesLength=3454 +orderer.example.com | [44e 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [876 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7072ae91]Sending GET_STATE +peer1.org1.example.com | [73a 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e9bb883c]Received message COMPLETED from shim +peer1.org2.example.com | [782 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | [44f 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers peer0.org2.example.com | ] -peer0.org1.example.com | [7ca 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [441 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 c5 1a 9a c2 43 91 e2 f1 7c a7 92 5d a3 da a5 00 |....C...|..]....| -peer0.org2.example.com | [75d 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50781, bytesLength=2916] for tx ID: [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] to index -peer1.org2.example.com | [7a2 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66657cf2]Move state message TRANSACTION -peer0.org1.example.com | [7cb 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ffce052]sending state message TRANSACTION -peer1.org2.example.com | [7a3 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66657cf2]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 00000010 c0 21 d5 05 9a c8 e7 16 b9 f7 2a be c4 2a a1 00 |.!........*..*..| -peer0.org2.example.com | [75e 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50781, bytesLength=2916] for tx number:[0] ID: [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] to blockNumTranNum index -peer0.org1.example.com | [7cc 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ffce052]Received message TRANSACTION from shim -peer0.org2.example.com | [75f 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55491], isChainEmpty=[false], lastBlockNumber=[5] -orderer.example.com | [442 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ce 85 27 21 12 2f cd ff f2 7e 1f |0E.!...'!./...~.| -peer0.org1.example.com | [7cd 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8ffce052]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [7a4 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [760 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 5 -peer1.org2.example.com | [7a5 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66657cf2]sending state message TRANSACTION -orderer.example.com | 00000010 df e7 91 46 40 bc a9 6a 9d fe 5d d4 61 4c 5e 4d |...F@..j..].aL^M| -peer0.org2.example.com | [761 12-12 14:20:12.58 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 5 -peer0.org1.example.com | [7ce 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8ffce052]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 00000020 7e 4c bf 97 99 02 20 6b 25 3d f5 83 b7 30 58 ad |~L.... k%=...0X.| -peer0.org1.example.com | [7cf 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org2.example.com | [762 12-12 14:20:12.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) -peer1.org2.example.com | [7a6 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66657cf2]Received message TRANSACTION from shim -peer0.org2.example.com | [763 12-12 14:20:12.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database -orderer.example.com | 00000030 35 dc 5c 73 11 a5 80 44 64 1e 29 9a d3 7c 64 9e |5.\s...Dd.)..|d.| -peer0.org1.example.com | [7d0 12-12 14:20:12.56 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 | [764 12-12 14:20:12.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [7a7 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66657cf2]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [765 12-12 14:20:12.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [7d1 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | 00000040 44 ff 43 6d d5 b5 1d |D.Cm...| -peer1.org2.example.com | [7a8 12-12 14:20:17.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [66657cf2]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [7d2 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ffce052]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [7a9 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [66657cf2]Sending GET_STATE -peer0.org2.example.com | [766 12-12 14:20:12.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -orderer.example.com | [443 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e330 principal evaluation succeeds for identity 0 -peer0.org2.example.com | [767 12-12 14:20:12.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer0.org1.example.com | [7d3 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ffce052]Move state message COMPLETED -peer1.org2.example.com | [7aa 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66657cf2]Received message GET_STATE from shim -orderer.example.com | [444 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e330 gate 1513088379732691500 evaluation succeeds -peer0.org1.example.com | [7d4 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8ffce052]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [7ab 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66657cf2]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [445 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [7d5 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ffce052]send state message COMPLETED -peer1.org2.example.com | [7ac 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [66657cf2]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [768 12-12 14:20:12.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -orderer.example.com | [446 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [7ad 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [7d6 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ffce052]Received message COMPLETED from shim -peer0.org2.example.com | [769 12-12 14:20:12.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database -orderer.example.com | [447 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers -peer1.org2.example.com | [7ae 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [66657cf2] getting state for chaincode lscc, key mycc, channel businesschannel -peer0.org2.example.com | [76a 12-12 14:20:12.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -peer0.org2.example.com | [76b 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -peer0.org1.example.com | [7d7 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ffce052]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [448 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -peer1.org2.example.com | [7af 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | [76c 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [7d8 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ffce052-cced-46e8-b1aa-66f013c76e3a]HandleMessage- COMPLETED. Notify -orderer.example.com | [449 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -peer0.org2.example.com | [76d 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 -peer1.org2.example.com | [7b0 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [66657cf2]Got state. Sending RESPONSE -peer0.org1.example.com | [7d9 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8ffce052-cced-46e8-b1aa-66f013c76e3a, channelID:businesschannel -peer1.org2.example.com | [7b1 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [66657cf2]handleGetState serial send RESPONSE -orderer.example.com | [44a 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -peer0.org2.example.com | [76e 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [7da 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [7db 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] -peer0.org2.example.com | [76f 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [44b 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org2.example.com | [770 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [7b2 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66657cf2]Received message RESPONSE from shim -orderer.example.com | [44c 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [7dc 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422e9bc00 -peer1.org2.example.com | [7b3 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66657cf2]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org2.example.com | [771 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [44d 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [7b4 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [66657cf2]before send -peer1.org2.example.com | [7b5 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [66657cf2]after send -peer0.org1.example.com | [7dd 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422ff8660 envbytes 0xc422e9bc00 -peer0.org2.example.com | [772 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [44e 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [773 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [7de 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422eddec0 env 0xc422ff8660 txn 0 -peer0.org2.example.com | [774 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [44f 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [7df 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org2.example.com | [7b7 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [66657cf2]GetState received payload RESPONSE -orderer.example.com | [450 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [7b8 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66657cf2]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [775 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [7e0 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -orderer.example.com | [451 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org2.example.com | [776 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [7e1 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] -peer1.org2.example.com | [7b6 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [66657cf2]Received RESPONSE, communicated (state:ready) -orderer.example.com | [452 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [7b9 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66657cf2]Move state message COMPLETED -peer0.org2.example.com | [777 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:34964 -orderer.example.com | [453 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [7e2 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [778 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4202d20f0 -peer1.org2.example.com | [7ba 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66657cf2]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [7e3 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] -orderer.example.com | [454 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [779 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [7bb 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66657cf2]send state message COMPLETED -peer0.org1.example.com | [7e4 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org2.example.com | [77a 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [455 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [7bc 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66657cf2]Received message COMPLETED from shim -peer0.org1.example.com | [7e5 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -peer1.org2.example.com | [7bd 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66657cf2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [77b 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP cec57e02e224c3efa1075c97d8c3172cd78fec768b3b75afcf280ac60a493411} -peer0.org1.example.com | [7e6 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | [456 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [77c 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [7be 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66657cf2ceff6fc15f90e8c8b232f5ddadb15f2a82cd5453bfdde4dd8e685072]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [7e7 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -orderer.example.com | [457 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [7bf 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:66657cf2ceff6fc15f90e8c8b232f5ddadb15f2a82cd5453bfdde4dd8e685072, channelID:businesschannel -peer0.org1.example.com | [7e8 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=a -peer1.org2.example.com | [7c0 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [77d 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [7e9 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -orderer.example.com | [458 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [459 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [77e 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422467310, header 0xc4202d2120 -peer1.org2.example.com | [7c1 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInsantiationPolicy.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -orderer.example.com | [45a 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org2.example.com | [77f 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -peer0.org1.example.com | [7ea 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=b -peer0.org2.example.com | [780 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 278c44142338cdea86793ab1106614bc8ba502103b15fde777dc968d72f03bf3 -peer1.org2.example.com | [7c2 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 66657cf2ceff6fc15f90e8c8b232f5ddadb15f2a82cd5453bfdde4dd8e685072 channel id: businesschannel version: 1.0 -orderer.example.com | [45b 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [7eb 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -orderer.example.com | [45c 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org2.example.com | [781 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [278c44142338cdea86793ab1106614bc8ba502103b15fde777dc968d72f03bf3] -peer0.org1.example.com | [7ec 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] marked as valid by state validator -orderer.example.com | [45d 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -peer1.org2.example.com | [7c3 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=66657cf2ceff6fc15f90e8c8b232f5ddadb15f2a82cd5453bfdde4dd8e685072,syscc=false,proposal=0xc42271acd0,canname=mycc:1.0 -orderer.example.com | [45e 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [782 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [7ed 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -orderer.example.com | MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -peer1.org2.example.com | [7c4 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 -peer0.org1.example.com | [7ee 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [783 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [278c44142338cdea86793ab1106614bc8ba502103b15fde777dc968d72f03bf3] -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org2.example.com | [7c5 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -peer0.org1.example.com | [7ef 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [7f0 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -peer1.org2.example.com | [7c6 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer0.org1.example.com | [7f1 12-12 14:20:12.59 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [5] -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -peer0.org1.example.com | [7f2 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x2b, 0x97, 0x1a, 0x34, 0xe0, 0x9f, 0x84, 0x93, 0x97, 0xdf, 0x58, 0xc6, 0xd5, 0xf6, 0xb, 0xf, 0x1d, 0x2f, 0xf, 0xde, 0x2, 0xc2, 0xdb, 0x15, 0x97, 0x87, 0x7d, 0x95, 0xfd, 0x8d, 0x4a, 0x56} txOffsets= -peer1.org2.example.com | [7c7 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66657cf2]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [784 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 278c44142338cdea86793ab1106614bc8ba502103b15fde777dc968d72f03bf3 channel id: businesschannel -orderer.example.com | ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -peer0.org1.example.com | txId=772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 locPointer=offset=70, bytesLength=2916 -peer0.org1.example.com | ] -peer0.org1.example.com | [7f3 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50781, bytesLength=2916] for tx ID: [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] to index -peer0.org2.example.com | [785 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=278c44142338cdea86793ab1106614bc8ba502103b15fde777dc968d72f03bf3,syscc=true,proposal=0xc422467310,canname=lscc:1.1.0 -peer1.org2.example.com | [7c8 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -peer0.org1.example.com | [7f4 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50781, bytesLength=2916] for tx number:[0] ID: [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] to blockNumTranNum index -peer0.org2.example.com | [786 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -orderer.example.com | Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -peer0.org1.example.com | [7f5 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55491], isChainEmpty=[false], lastBlockNumber=[5] -peer1.org2.example.com | [7c9 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [787 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -peer0.org1.example.com | [7f6 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 5 -orderer.example.com | 0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= -peer0.org1.example.com | [7f7 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 5 -peer0.org2.example.com | [788 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [7f8 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) -peer1.org2.example.com | [7ca 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66657cf2]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [45f 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [7f9 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -peer0.org2.example.com | [789 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [278c4414]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [7fa 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [7cb 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66657cf2]Move state message TRANSACTION -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [7fb 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [7fc 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer1.org2.example.com | [7cc 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66657cf2]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -peer0.org2.example.com | [78a 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [7fd 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org2.example.com | [78b 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [7fe 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org1.example.com | [7ff 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database -peer1.org2.example.com | [7cd 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [78c 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [278c4414]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -peer0.org1.example.com | [800 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -peer1.org2.example.com | [7ce 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66657cf2]sending state message TRANSACTION -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org1.example.com | [801 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -peer0.org2.example.com | [78d 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [278c4414]Move state message TRANSACTION -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -peer0.org1.example.com | [802 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [803 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -peer1.org2.example.com | [7cf 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66657cf2]Received message GET_STATE from shim -peer0.org1.example.com | [804 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -peer0.org2.example.com | [78e 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [278c4414]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [7d0 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66657cf2]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [78f 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [7d1 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [66657cf2]Received GET_STATE, invoking get state from ledger -orderer.example.com | [460 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [7d2 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -peer0.org2.example.com | [790 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [278c4414]sending state message TRANSACTION -peer1.org2.example.com | [7d3 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [66657cf2] getting state for chaincode mycc, key a, channel businesschannel -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [805 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [7d4 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=a -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org2.example.com | [7d5 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [66657cf2]Got state. Sending RESPONSE -peer0.org2.example.com | [791 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [278c4414]Received message TRANSACTION from shim -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -peer1.org2.example.com | [7d6 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [66657cf2]handleGetState serial send RESPONSE -peer1.org2.example.com | [7d7 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66657cf2]Received message COMPLETED from shim -peer1.org2.example.com | [7d8 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66657cf2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [806 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [792 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [278c4414]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [7d9 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66657cf2ceff6fc15f90e8c8b232f5ddadb15f2a82cd5453bfdde4dd8e685072]HandleMessage- COMPLETED. Notify -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org2.example.com | [7da 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:66657cf2ceff6fc15f90e8c8b232f5ddadb15f2a82cd5453bfdde4dd8e685072, channelID:businesschannel -peer0.org1.example.com | [807 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -peer1.org2.example.com | [7db 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org2.example.com | [7dc 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [793 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [278c4414]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [808 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -peer1.org2.example.com | [7dd 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -peer1.org2.example.com | [7de 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [66657cf2ceff6fc15f90e8c8b232f5ddadb15f2a82cd5453bfdde4dd8e685072] -peer0.org1.example.com | [809 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [794 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [278c4414]Sending GET_STATE -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -peer1.org2.example.com | [7df 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [80a 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [7e0 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 66657cf2ceff6fc15f90e8c8b232f5ddadb15f2a82cd5453bfdde4dd8e685072 channel id: businesschannel chaincode id: name:"mycc" -peer0.org2.example.com | [795 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [278c4414]Received message GET_STATE from shim -peer0.org1.example.com | [80b 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [461 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -peer1.org2.example.com | [7e1 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -orderer.example.com | [462 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [7e2 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 66657cf2ceff6fc15f90e8c8b232f5ddadb15f2a82cd5453bfdde4dd8e685072 channel id: businesschannel version: 1.1.0 -peer0.org2.example.com | [796 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [278c4414]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [463 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [7e3 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=66657cf2ceff6fc15f90e8c8b232f5ddadb15f2a82cd5453bfdde4dd8e685072,syscc=true,proposal=0xc42271acd0,canname=escc:1.1.0 -peer0.org2.example.com | [797 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [278c4414]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [80c 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [464 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [798 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [7e4 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer0.org1.example.com | [80d 12-12 14:20:17.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36766 -orderer.example.com | [465 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [7e5 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [799 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [278c4414] getting state for chaincode lscc, key mycc, channel businesschannel -orderer.example.com | [466 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [79a 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [7e6 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -orderer.example.com | [467 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [80e 12-12 14:20:17.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421cb25d0 -peer1.org2.example.com | [7e7 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66657cf2]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [468 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -peer0.org1.example.com | [80f 12-12 14:20:17.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [79b 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [278c4414]Got state. Sending RESPONSE -peer1.org2.example.com | [7e8 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [469 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [79c 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [278c4414]handleGetState serial send RESPONSE -peer0.org1.example.com | [810 12-12 14:20:17.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [7e9 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [79d 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [278c4414]Received message RESPONSE from shim -orderer.example.com | [46a 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org2.example.com | [7ea 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66657cf2]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [79e 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [278c4414]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | [46b 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org1.example.com | [811 12-12 14:20:17.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -peer0.org2.example.com | [79f 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [278c4414]before send -orderer.example.com | [46c 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -peer0.org1.example.com | [812 12-12 14:20:17.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [7a0 12-12 14:20:17.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [278c4414]after send -peer1.org2.example.com | [7eb 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66657cf2]Move state message TRANSACTION -peer0.org1.example.com | [813 12-12 14:20:17.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [46d 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [7a1 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [278c4414]Received RESPONSE, communicated (state:ready) -peer1.org2.example.com | [7ec 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66657cf2]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [7a2 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [278c4414]GetState received payload RESPONSE -peer1.org2.example.com | [7ed 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [7a3 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [278c4414]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [814 12-12 14:20:17.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421e23040, header 0xc421cb2600 -peer1.org2.example.com | [7ee 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66657cf2]sending state message TRANSACTION -peer0.org2.example.com | [7a4 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [278c4414]Move state message COMPLETED -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [7a5 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [278c4414]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [815 12-12 14:20:17.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -peer1.org2.example.com | [7ef 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66657cf2]Received message TRANSACTION from shim -peer0.org2.example.com | [7a6 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [278c4414]send state message COMPLETED -peer1.org2.example.com | [7f0 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66657cf2]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [816 12-12 14:20:17.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf -peer0.org2.example.com | [7a7 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [278c4414]Received message COMPLETED from shim -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [7a8 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [278c4414]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -peer1.org2.example.com | [7f1 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [66657cf2]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [7a9 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [278c44142338cdea86793ab1106614bc8ba502103b15fde777dc968d72f03bf3]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [817 12-12 14:20:17.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf] -peer1.org2.example.com | [7f2 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [7aa 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:278c44142338cdea86793ab1106614bc8ba502103b15fde777dc968d72f03bf3, channelID:businesschannel -peer0.org1.example.com | [818 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [7f3 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org2.example.com | [7ab 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [819 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf] -peer1.org2.example.com | [7f4 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66657cf2]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [7ac 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInsantiationPolicy.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer0.org1.example.com | [81a 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf channel id: businesschannel -peer1.org2.example.com | [7f5 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66657cf2]Move state message COMPLETED -peer0.org2.example.com | [7ad 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 278c44142338cdea86793ab1106614bc8ba502103b15fde777dc968d72f03bf3 channel id: businesschannel version: 1.0 -orderer.example.com | BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -peer0.org1.example.com | [81b 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf,syscc=true,proposal=0xc421e23040,canname=lscc:1.1.0 -peer0.org2.example.com | [7ae 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=278c44142338cdea86793ab1106614bc8ba502103b15fde777dc968d72f03bf3,syscc=false,proposal=0xc422467310,canname=mycc:1.0 -peer1.org2.example.com | [7f6 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66657cf2]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [7af 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 -peer0.org1.example.com | [81c 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org2.example.com | [7b0 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [7b1 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -orderer.example.com | z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org2.example.com | [7b2 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [278c4414]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [81d 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [7f7 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66657cf2]send state message COMPLETED -peer0.org1.example.com | [81e 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org2.example.com | [7b3 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -peer1.org2.example.com | [7f8 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66657cf2]Received message COMPLETED from shim -peer0.org2.example.com | [7b4 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [81f 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40d7418c]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -peer1.org2.example.com | [7f9 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66657cf2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [7b5 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [278c4414]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -orderer.example.com | xEFWkMtGbgY= -peer0.org2.example.com | [7b6 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [278c4414]Move state message TRANSACTION -peer0.org1.example.com | [820 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [7fa 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66657cf2ceff6fc15f90e8c8b232f5ddadb15f2a82cd5453bfdde4dd8e685072]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [821 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [7b7 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [278c4414]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [7fb 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:66657cf2ceff6fc15f90e8c8b232f5ddadb15f2a82cd5453bfdde4dd8e685072, channelID:businesschannel -peer0.org1.example.com | [822 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40d7418c]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [46e 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [7b8 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [7fc 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [7b9 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [278c4414]sending state message TRANSACTION -peer0.org1.example.com | [823 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40d7418c]Move state message TRANSACTION -peer1.org2.example.com | [7fd 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [824 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40d7418c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [7ba 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [278c4414]Received message GET_STATE from shim -peer1.org2.example.com | [7fe 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [825 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [7bb 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [278c4414]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [826 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40d7418c]sending state message TRANSACTION -peer1.org2.example.com | [7ff 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [66657cf2ceff6fc15f90e8c8b232f5ddadb15f2a82cd5453bfdde4dd8e685072] -peer0.org2.example.com | [7bc 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [278c4414]Received GET_STATE, invoking get state from ledger -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -peer0.org1.example.com | [827 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40d7418c]Received message TRANSACTION from shim -peer1.org2.example.com | [800 12-12 14:20:17.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:42394) -peer1.org2.example.com | [801 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:42396 -peer0.org2.example.com | [7bd 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [828 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40d7418c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [802 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4224d5f20 -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org2.example.com | [7be 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [278c4414] getting state for chaincode mycc, key a, channel businesschannel -peer0.org1.example.com | [829 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [40d7418c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [82a 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [40d7418c]Sending GET_STATE -peer0.org2.example.com | [7bf 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=a -peer0.org1.example.com | [82b 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40d7418c]Received message GET_STATE from shim -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -peer0.org2.example.com | [7c0 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [278c4414]Got state. Sending RESPONSE -peer1.org2.example.com | [803 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [82c 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40d7418c]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -peer1.org2.example.com | [804 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [7c1 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [278c4414]handleGetState serial send RESPONSE -peer0.org1.example.com | [82d 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [40d7418c]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [82e 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [805 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP cec57e02e224c3efa1075c97d8c3172cd78fec768b3b75afcf280ac60a493411} -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -peer0.org2.example.com | [7c2 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [278c4414]Received message COMPLETED from shim -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -peer1.org2.example.com | [806 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -orderer.example.com | OwJpoynNCyKsWozuVw== -peer0.org2.example.com | [7c3 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [278c4414]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [82f 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40d7418c] getting state for chaincode lscc, key mycc, channel businesschannel -peer0.org1.example.com | [830 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [807 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [7c4 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [278c44142338cdea86793ab1106614bc8ba502103b15fde777dc968d72f03bf3]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [831 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40d7418c]Got state. Sending RESPONSE -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [7c5 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:278c44142338cdea86793ab1106614bc8ba502103b15fde777dc968d72f03bf3, channelID:businesschannel -peer0.org1.example.com | [832 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [40d7418c]handleGetState serial send RESPONSE -orderer.example.com | [46f 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [808 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42271b130, header 0xc4224d5f50 -peer0.org1.example.com | [833 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40d7418c]Received message RESPONSE from shim -peer0.org2.example.com | [7c6 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [834 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40d7418c]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [809 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -peer0.org2.example.com | [7c7 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [835 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [40d7418c]before send -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [80a 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a -peer0.org1.example.com | [836 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [40d7418c]after send -peer0.org2.example.com | [7c8 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | [7c9 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [278c44142338cdea86793ab1106614bc8ba502103b15fde777dc968d72f03bf3] -peer0.org1.example.com | [837 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [40d7418c]Received RESPONSE, communicated (state:ready) -peer1.org2.example.com | [80b 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] -peer0.org2.example.com | [7ca 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [838 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [40d7418c]GetState received payload RESPONSE -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -peer0.org2.example.com | [7cb 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 278c44142338cdea86793ab1106614bc8ba502103b15fde777dc968d72f03bf3 channel id: businesschannel chaincode id: name:"mycc" -peer1.org2.example.com | [80c 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [839 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40d7418c]Transaction completed. Sending COMPLETED -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -peer0.org2.example.com | [7cc 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -peer1.org2.example.com | [80d 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] -peer0.org1.example.com | [83a 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40d7418c]Move state message COMPLETED -peer1.org2.example.com | [80e 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a channel id: businesschannel -peer0.org1.example.com | [83b 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40d7418c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [7cd 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 278c44142338cdea86793ab1106614bc8ba502103b15fde777dc968d72f03bf3 channel id: businesschannel version: 1.1.0 -peer1.org2.example.com | [80f 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a,syscc=true,proposal=0xc42271b130,canname=lscc:1.1.0 -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -peer0.org1.example.com | [83c 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40d7418c]send state message COMPLETED -peer1.org2.example.com | [810 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org2.example.com | [7ce 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=278c44142338cdea86793ab1106614bc8ba502103b15fde777dc968d72f03bf3,syscc=true,proposal=0xc422467310,canname=escc:1.1.0 -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -peer0.org1.example.com | [83d 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40d7418c]Received message COMPLETED from shim -peer1.org2.example.com | [811 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [7cf 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -peer0.org1.example.com | [83e 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40d7418c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [812 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -peer0.org1.example.com | [83f 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [7d0 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -peer0.org1.example.com | [840 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf, channelID:businesschannel -peer1.org2.example.com | [813 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d7e1579b]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [7d1 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -orderer.example.com | OwJpoynNCyKsWozuVw== -peer1.org2.example.com | [814 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [841 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [7d2 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [278c4414]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [842 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInsantiationPolicy.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer0.org2.example.com | [7d3 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [470 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org2.example.com | [815 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [843 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf channel id: businesschannel version: 1.0 -orderer.example.com | [471 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [844 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf,syscc=false,proposal=0xc421e23040,canname=mycc:1.0 -peer1.org2.example.com | [816 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d7e1579b]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [472 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [7d4 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [817 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7e1579b]Move state message TRANSACTION -peer0.org1.example.com | [845 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 -orderer.example.com | [473 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [7d5 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [278c4414]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [846 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [818 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7e1579b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [474 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [7d6 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [278c4414]Move state message TRANSACTION -peer0.org1.example.com | [847 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer1.org2.example.com | [819 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [475 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org2.example.com | [7d7 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [278c4414]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [848 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40d7418c]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [81a 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7e1579b]sending state message TRANSACTION -peer0.org2.example.com | [7d8 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [7d9 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [278c4414]sending state message TRANSACTION -peer0.org1.example.com | [849 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [476 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [81b 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7e1579b]Received message TRANSACTION from shim -peer0.org1.example.com | [84a 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [7da 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [278c4414]Received message TRANSACTION from shim -peer1.org2.example.com | [81c 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d7e1579b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [477 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org2.example.com | [7db 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [278c4414]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [84b 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40d7418c]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [84c 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40d7418c]Move state message TRANSACTION -peer0.org2.example.com | [7dc 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [278c4414]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [81d 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d7e1579b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [478 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org2.example.com | [7dd 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org2.example.com | [81e 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [d7e1579b]Sending GET_STATE -orderer.example.com | [479 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -peer0.org1.example.com | [84d 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40d7418c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [81f 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7e1579b]Received message GET_STATE from shim -peer0.org2.example.com | [7de 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | [47a 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [84e 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [7df 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [278c4414]Transaction completed. Sending COMPLETED -orderer.example.com | MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [7e0 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [278c4414]Move state message COMPLETED -peer0.org1.example.com | [84f 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40d7418c]sending state message TRANSACTION -peer1.org2.example.com | [820 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7e1579b]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [7e1 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [278c4414]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [850 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40d7418c]Received message GET_STATE from shim -peer1.org2.example.com | [821 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [d7e1579b]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [851 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40d7418c]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [822 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [7e2 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [278c4414]send state message COMPLETED -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | [823 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d7e1579b] getting state for chaincode lscc, key mycc, channel businesschannel -peer0.org1.example.com | [852 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [40d7418c]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [7e3 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [278c4414]Received message COMPLETED from shim -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer1.org2.example.com | [824 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | [7e4 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [278c4414]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [853 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [7e5 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [278c44142338cdea86793ab1106614bc8ba502103b15fde777dc968d72f03bf3]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [825 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d7e1579b]Got state. Sending RESPONSE -peer0.org2.example.com | [7e6 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:278c44142338cdea86793ab1106614bc8ba502103b15fde777dc968d72f03bf3, channelID:businesschannel -peer0.org1.example.com | [854 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40d7418c] getting state for chaincode mycc, key a, channel businesschannel -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer1.org2.example.com | [826 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d7e1579b]handleGetState serial send RESPONSE -peer0.org1.example.com | [855 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=a -peer0.org2.example.com | [7e7 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer0.org1.example.com | [856 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40d7418c]Got state. Sending RESPONSE -peer1.org2.example.com | [827 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7e1579b]Received message RESPONSE from shim -peer0.org2.example.com | [7e8 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [857 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [40d7418c]handleGetState serial send RESPONSE -orderer.example.com | n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -peer1.org2.example.com | [828 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d7e1579b]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org2.example.com | [7e9 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [858 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40d7418c]Received message COMPLETED from shim -peer0.org2.example.com | [7ea 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [278c44142338cdea86793ab1106614bc8ba502103b15fde777dc968d72f03bf3] -peer1.org2.example.com | [829 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d7e1579b]before send -orderer.example.com | +8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer0.org1.example.com | [859 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40d7418c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [82a 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d7e1579b]after send -peer0.org2.example.com | [7eb 12-12 14:20:17.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:34964) -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -peer0.org1.example.com | [85a 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [82b 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [d7e1579b]Received RESPONSE, communicated (state:ready) -peer0.org2.example.com | [7ec 12-12 14:20:19.51 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] -orderer.example.com | SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -peer1.org2.example.com | [82c 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [d7e1579b]GetState received payload RESPONSE -peer0.org1.example.com | [85b 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf, channelID:businesschannel -orderer.example.com | uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -peer0.org2.example.com | [7ee 12-12 14:20:19.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org2.example.com | [82d 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7e1579b]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [85c 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [82e 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7e1579b]Move state message COMPLETED -peer0.org2.example.com | [7ef 12-12 14:20:19.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | cNvAXU8LlQ== -peer0.org2.example.com | [7f0 12-12 14:20:19.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421c3bc40 env 0xc42186fda0 txn 0 -peer0.org1.example.com | [85d 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [7f1 12-12 14:20:19.51 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42186fda0 -peer0.org1.example.com | [85e 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org2.example.com | [82f 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d7e1579b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [7f2 12-12 14:20:19.51 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\241\313\277\321\005\020\250\211\347\344\001\"\017businesschannel*@d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a:\010\022\006\022\004mycc" signature_header:"\n\236\006\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk\nEEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT\n6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB\n9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf\nZM8rwLlgV6XUeTLW\n-----END CERTIFICATE-----\n\022\030\322\371\2771\000\220_B\361\026\262\240y{\306\361\223D\301~\251G\266\034" -orderer.example.com | [47b 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [85f 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf] -peer0.org2.example.com | [7f3 12-12 14:20:19.51 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -peer1.org2.example.com | [830 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7e1579b]send state message COMPLETED -peer0.org1.example.com | [860 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [831 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7e1579b]Received message COMPLETED from shim -peer0.org2.example.com | [7f4 12-12 14:20:19.51 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | [832 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7e1579b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer0.org2.example.com | [7f5 12-12 14:20:19.51 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP cec57e02e224c3efa1075c97d8c3172cd78fec768b3b75afcf280ac60a493411} -peer0.org1.example.com | [861 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf channel id: businesschannel chaincode id: name:"mycc" -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | [833 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [7f6 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [862 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -peer1.org2.example.com | [834 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a, channelID:businesschannel -peer0.org2.example.com | [7f7 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [863 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf channel id: businesschannel version: 1.1.0 -peer1.org2.example.com | [835 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -peer0.org1.example.com | [864 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf,syscc=true,proposal=0xc421e23040,canname=escc:1.1.0 -peer0.org2.example.com | [7f8 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422c66800, header channel_header:"\010\003\032\014\010\241\313\277\321\005\020\250\211\347\344\001\"\017businesschannel*@d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a:\010\022\006\022\004mycc" signature_header:"\n\236\006\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk\nEEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT\n6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB\n9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf\nZM8rwLlgV6XUeTLW\n-----END CERTIFICATE-----\n\022\030\322\371\2771\000\220_B\361\026\262\240y{\306\361\223D\301~\251G\266\034" -peer0.org1.example.com | [865 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -peer1.org2.example.com | [836 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInsantiationPolicy.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer0.org1.example.com | [866 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [837 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a channel id: businesschannel version: 1.0 -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -peer0.org1.example.com | [867 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer0.org2.example.com | [7f9 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [868 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40d7418c]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [7fa 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [838 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a,syscc=false,proposal=0xc42271b130,canname=mycc:1.0 -peer0.org1.example.com | [869 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [7fb 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [86a 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -peer0.org2.example.com | [7fc 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [86b 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40d7418c]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | ZM8rwLlgV6XUeTLW -peer0.org2.example.com | [7fd 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] -peer0.org1.example.com | [86c 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40d7418c]Move state message TRANSACTION -peer1.org2.example.com | [839 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [86d 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40d7418c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [7fe 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [86e 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [7ff 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc42186fda0 envbytes 0xc422e66000 -peer1.org2.example.com | [83a 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [47c 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [86f 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40d7418c]sending state message TRANSACTION -peer1.org2.example.com | [83b 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [870 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40d7418c]Received message TRANSACTION from shim -peer0.org2.example.com | [800 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [7ab913cc-c6c2-44f6-bd70-000981cb52c2] -peer0.org1.example.com | [871 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40d7418c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [801 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [83c 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d7e1579b]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [872 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [40d7418c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [802 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [7ab913cc-c6c2-44f6-bd70-000981cb52c2] -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [83d 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [873 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org2.example.com | [803 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422e66000 -peer1.org2.example.com | [83e 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [874 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer1.org2.example.com | [83f 12-12 14:20:17.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d7e1579b]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [804 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [875 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40d7418c]Transaction completed. Sending COMPLETED -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org2.example.com | [805 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] -peer0.org1.example.com | [876 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40d7418c]Move state message COMPLETED -peer1.org2.example.com | [840 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7e1579b]Move state message TRANSACTION -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer0.org2.example.com | [806 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=b3912858-36f5-4340-afd7-11aaa07e619f,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org1.example.com | [877 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40d7418c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -peer0.org2.example.com | [807 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a chaindID businesschannel -peer0.org1.example.com | [878 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40d7418c]send state message COMPLETED -peer1.org2.example.com | [841 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7e1579b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -peer0.org1.example.com | [879 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40d7418c]Received message COMPLETED from shim -peer0.org2.example.com | [808 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer0.org1.example.com | [87a 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40d7418c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [842 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -peer0.org1.example.com | [87b 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [809 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [843 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7e1579b]sending state message TRANSACTION -peer0.org2.example.com | [80a 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer0.org1.example.com | [87c 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf, channelID:businesschannel -peer0.org2.example.com | [80b 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b3912858]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [844 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7e1579b]Received message GET_STATE from shim -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -peer0.org1.example.com | [87d 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [845 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7e1579b]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -peer0.org2.example.com | [80c 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | ZM8rwLlgV6XUeTLW -peer0.org1.example.com | [87e 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [87f 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org2.example.com | [80d 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b3912858]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [80e 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b3912858]Move state message TRANSACTION -peer0.org2.example.com | [80f 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b3912858]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [880 12-12 14:20:17.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf] -peer0.org2.example.com | [810 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [846 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [d7e1579b]Received GET_STATE, invoking get state from ledger -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [811 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b3912858]sending state message TRANSACTION -peer1.org2.example.com | [847 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [881 12-12 14:20:17.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36766) -peer0.org2.example.com | [812 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b3912858]Received message TRANSACTION from shim -peer0.org1.example.com | [882 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36770 -peer1.org2.example.com | [848 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d7e1579b] getting state for chaincode mycc, key a, channel businesschannel -orderer.example.com | [47d 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org2.example.com | [813 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b3912858]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [883 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42290e630 -peer1.org2.example.com | [849 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=a -peer0.org2.example.com | [814 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b3912858]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [884 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [84a 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d7e1579b]Got state. Sending RESPONSE -peer0.org2.example.com | [815 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [885 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [84b 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d7e1579b]handleGetState serial send RESPONSE -orderer.example.com | [47e 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -peer1.org2.example.com | [84c 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7e1579b]Received message GET_STATE from shim -peer0.org1.example.com | [886 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -orderer.example.com | [47f 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer1.org2.example.com | [84d 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7e1579b]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [816 12-12 14:20:19.52 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 | [887 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [480 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -peer1.org2.example.com | [84e 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [d7e1579b]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [817 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer1.org2.example.com | [84f 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [818 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b3912858]Transaction completed. Sending COMPLETED -orderer.example.com | [481 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -peer0.org1.example.com | [888 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [819 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b3912858]Move state message COMPLETED -peer1.org2.example.com | [850 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d7e1579b] getting state for chaincode mycc, key b, channel businesschannel -peer0.org1.example.com | [889 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4226cd0e0, header 0xc42290e660 -orderer.example.com | [482 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -peer0.org2.example.com | [81a 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b3912858]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [851 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=b -peer1.org2.example.com | [852 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d7e1579b]Got state. Sending RESPONSE -orderer.example.com | [483 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -peer1.org2.example.com | [853 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d7e1579b]handleGetState serial send RESPONSE -peer0.org2.example.com | [81b 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b3912858]send state message COMPLETED -orderer.example.com | [484 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -peer1.org2.example.com | [854 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7e1579b]Received message PUT_STATE from shim -peer0.org2.example.com | [81c 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b3912858]Received message COMPLETED from shim -peer1.org2.example.com | [855 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7e1579b]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org1.example.com | [88a 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org2.example.com | [81d 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b3912858]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [856 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [485 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -peer0.org1.example.com | [88b 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b -peer0.org2.example.com | [81e 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b3912858-36f5-4340-afd7-11aaa07e619f]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [857 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d7e1579b]state is ready -orderer.example.com | [486 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -peer0.org2.example.com | [81f 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b3912858-36f5-4340-afd7-11aaa07e619f, channelID:businesschannel -peer1.org2.example.com | [858 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d7e1579b]Completed PUT_STATE. Sending RESPONSE -orderer.example.com | [487 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -peer0.org1.example.com | [88c 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b] -peer0.org2.example.com | [820 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [859 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d7e1579b]enterBusyState trigger event RESPONSE -orderer.example.com | [488 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -peer0.org1.example.com | [88d 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [821 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] -orderer.example.com | [489 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -peer1.org2.example.com | [85a 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7e1579b]Move state message RESPONSE -peer0.org2.example.com | [822 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422e66000 -peer1.org2.example.com | [85b 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7e1579b]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -orderer.example.com | [48a 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -peer0.org2.example.com | [823 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc42186fda0 envbytes 0xc422e66000 -peer1.org2.example.com | [85c 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [88e 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b] -orderer.example.com | [48b 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -peer0.org2.example.com | [824 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421c3bc40 env 0xc42186fda0 txn 0 -peer1.org2.example.com | [85d 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7e1579b]sending state message RESPONSE -peer0.org1.example.com | [88f 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b channel id: businesschannel -peer0.org2.example.com | [825 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org2.example.com | [85e 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7e1579b]Received message PUT_STATE from shim -orderer.example.com | [48c 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -peer0.org2.example.com | [826 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org1.example.com | [890 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b channel id: businesschannel version: 1.1.0 -peer0.org2.example.com | [7ed 12-12 14:20:19.51 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] -peer1.org2.example.com | [85f 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7e1579b]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -orderer.example.com | [48d 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy ChannelCreationPolicy for Channel/Application -peer0.org1.example.com | [891 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b,syscc=true,proposal=0xc4226cd0e0,canname=lscc:1.1.0 -peer0.org2.example.com | [827 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] -peer1.org2.example.com | [860 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [828 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [892 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -orderer.example.com | [48e 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins -peer0.org2.example.com | [829 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [6] -peer0.org1.example.com | [893 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [48f 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -peer1.org2.example.com | [861 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d7e1579b]state is ready -peer0.org2.example.com | [82a 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org1.example.com | [894 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org2.example.com | [82b 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -peer1.org2.example.com | [862 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d7e1579b]Completed PUT_STATE. Sending RESPONSE -orderer.example.com | [490 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Application/Readers -peer0.org2.example.com | [82c 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [895 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d33a5728]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [863 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d7e1579b]enterBusyState trigger event RESPONSE -peer0.org2.example.com | [82d 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -orderer.example.com | [491 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [492 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Application/Writers -peer0.org2.example.com | [82e 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=a -peer0.org2.example.com | [82f 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -peer1.org2.example.com | [864 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7e1579b]Move state message RESPONSE -peer0.org1.example.com | [896 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [493 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -peer0.org2.example.com | [830 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=b -peer1.org2.example.com | [865 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7e1579b]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -orderer.example.com | [494 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [897 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [831 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -peer1.org2.example.com | [866 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [495 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org1.example.com | [898 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d33a5728]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [496 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [867 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7e1579b]sending state message RESPONSE -peer0.org2.example.com | [832 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] marked as valid by state validator -peer0.org1.example.com | [899 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d33a5728]Move state message TRANSACTION -orderer.example.com | [497 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org2.example.com | [833 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org2.example.com | [868 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7e1579b]Received message COMPLETED from shim -orderer.example.com | [498 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [89a 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d33a5728]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [869 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7e1579b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [499 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [89b 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [834 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org2.example.com | [86a 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [86b 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a, channelID:businesschannel -peer0.org2.example.com | [835 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org2.example.com | [86c 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [49a 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [49b 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org1.example.com | [89c 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d33a5728]sending state message TRANSACTION -orderer.example.com | [49c 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [836 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage -peer0.org1.example.com | [89d 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d33a5728]Received message TRANSACTION from shim -peer1.org2.example.com | [86d 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | [49d 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org2.example.com | [86e 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org2.example.com | [837 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [6] -orderer.example.com | [49e 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [89e 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d33a5728]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [49f 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [4a0 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [86f 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] -peer0.org2.example.com | [838 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x1b, 0x80, 0x67, 0xcc, 0xf8, 0xad, 0x90, 0xca, 0xc9, 0x3a, 0x94, 0x5b, 0x5c, 0x45, 0x7f, 0xc3, 0xbc, 0xd9, 0x89, 0x55, 0xf6, 0xf7, 0xb, 0x3d, 0x1f, 0x3b, 0xee, 0xd0, 0x48, 0xdd, 0x9e, 0xe0} txOffsets= -orderer.example.com | [4a1 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [89f 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d33a5728]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [870 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org2.example.com | txId=d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a locPointer=offset=70, bytesLength=2907 -orderer.example.com | [4a2 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [8a0 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [d33a5728]Sending GET_STATE -peer1.org2.example.com | [871 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a channel id: businesschannel chaincode id: name:"mycc" +peer1.org2.example.com | [783 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [877 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7072ae91]Received message GET_STATE from shim +peer1.org1.example.com | [73b 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e9bb883c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [784 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [878 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7072ae91]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [749 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45497, bytesLength=3454] for tx ID: [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] to index +orderer.example.com | [450 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [73c 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e9bb883c5817b66047a119003f67cb51ed0a4074bf562ffa0a3fd6958d38874d]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [785 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [879 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7072ae91]Received GET_STATE, invoking get state from ledger +orderer.example.com | [451 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org1.example.com | [73d 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e9bb883c5817b66047a119003f67cb51ed0a4074bf562ffa0a3fd6958d38874d, channelID:businesschannel +peer1.org2.example.com | [786 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:36204 +peer0.org2.example.com | [74a 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45497, bytesLength=3454] for tx number:[0] ID: [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] to blockNumTranNum index +orderer.example.com | [452 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [787 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421ee9d40 +peer0.org1.example.com | [87a 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [74b 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50747], isChainEmpty=[false], lastBlockNumber=[4] +peer1.org1.example.com | [73e 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [788 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [87b 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7072ae91] getting state for chaincode lscc, key mycc, channel businesschannel +orderer.example.com | [453 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [74c 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 4 +peer1.org1.example.com | [73f 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [789 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [454 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [740 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org2.example.com | [74d 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 4 +peer1.org2.example.com | [78a 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 73763341eb604cef734e4ac7c2ea77bc9d730c798fb96eb583c0637692a88acd} +peer0.org1.example.com | [87c 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org2.example.com | [74e 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) +orderer.example.com | [455 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [741 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [e9bb883c5817b66047a119003f67cb51ed0a4074bf562ffa0a3fd6958d38874d] +peer1.org2.example.com | [78b 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [87d 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7072ae91]Got state. Sending RESPONSE +peer0.org2.example.com | [74f 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database +peer1.org2.example.com | [78c 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [456 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org1.example.com | [742 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org2.example.com | [78d 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421ec58b0, header 0xc421ee9d70 +peer0.org2.example.com | [750 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +orderer.example.com | [457 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [743 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: e9bb883c5817b66047a119003f67cb51ed0a4074bf562ffa0a3fd6958d38874d channel id: businesschannel chaincode id: name:"mycc" +peer1.org2.example.com | [78e 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" +peer0.org1.example.com | [87e 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7072ae91]handleGetState serial send RESPONSE +orderer.example.com | [458 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org2.example.com | [751 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [78f 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 8a9af0ebdb51e8ef328f35a29fd160aa1e9f0bc16a8b9fc51ed615d9dce9cdbb +peer0.org1.example.com | [87f 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7072ae91]Received message RESPONSE from shim +peer1.org1.example.com | [744 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +peer1.org2.example.com | [790 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [8a9af0ebdb51e8ef328f35a29fd160aa1e9f0bc16a8b9fc51ed615d9dce9cdbb] +orderer.example.com | [459 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org1.example.com | [880 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7072ae91]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org1.example.com | [745 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: e9bb883c5817b66047a119003f67cb51ed0a4074bf562ffa0a3fd6958d38874d channel id: businesschannel version: 1.1.0 +peer0.org2.example.com | [752 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [791 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [881 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7072ae91]before send +orderer.example.com | [45a 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org2.example.com | [792 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [8a9af0ebdb51e8ef328f35a29fd160aa1e9f0bc16a8b9fc51ed615d9dce9cdbb] +peer1.org1.example.com | [746 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=e9bb883c5817b66047a119003f67cb51ed0a4074bf562ffa0a3fd6958d38874d,syscc=true,proposal=0xc422b2ed70,canname=escc:1.1.0 +peer0.org2.example.com | [753 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to history database +peer1.org2.example.com | [793 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 8a9af0ebdb51e8ef328f35a29fd160aa1e9f0bc16a8b9fc51ed615d9dce9cdbb channel id: businesschannel +orderer.example.com | [45b 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org1.example.com | [747 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer1.org2.example.com | [794 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=8a9af0ebdb51e8ef328f35a29fd160aa1e9f0bc16a8b9fc51ed615d9dce9cdbb,syscc=true,proposal=0xc421ec58b0,canname=lscc:1.1.0 +peer0.org1.example.com | [882 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7072ae91]after send +orderer.example.com | [45c 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org1.example.com | [748 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [754 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +peer0.org1.example.com | [883 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [7072ae91]Received RESPONSE, communicated (state:ready) +peer1.org2.example.com | [795 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer0.org1.example.com | [884 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7072ae91]GetState received payload RESPONSE +orderer.example.com | [45d 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org1.example.com | [749 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer1.org2.example.com | [796 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [45e 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org1.example.com | [885 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7072ae91]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [755 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +peer1.org2.example.com | [797 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer1.org1.example.com | [74a 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e9bb883c]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [886 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7072ae91]Move state message COMPLETED +orderer.example.com | [45f 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [798 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8a9af0eb]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [756 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +peer1.org1.example.com | [74b 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [887 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7072ae91]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [460 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [757 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org2.example.com | [799 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [74c 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [461 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [888 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7072ae91]send state message COMPLETED +peer0.org2.example.com | [758 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 +peer1.org2.example.com | [79a 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [79b 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8a9af0eb]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [759 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +orderer.example.com | [462 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org1.example.com | [889 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7072ae91]Received message COMPLETED from shim +peer1.org1.example.com | [74d 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e9bb883c]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [79c 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a9af0eb]Move state message TRANSACTION +peer0.org2.example.com | [75a 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | [463 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer0.org1.example.com | [88a 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7072ae91]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [79d 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a9af0eb]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [74e 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e9bb883c]Move state message TRANSACTION +orderer.example.com | [464 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +peer0.org1.example.com | [88b 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [75b 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [79e 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [465 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +peer0.org1.example.com | [88c 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad, channelID:businesschannel +peer1.org1.example.com | [74f 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e9bb883c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [750 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [466 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +peer0.org1.example.com | [88d 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [75c 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [79f 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a9af0eb]sending state message TRANSACTION +peer1.org1.example.com | [751 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e9bb883c]sending state message TRANSACTION +peer0.org2.example.com | [75d 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +orderer.example.com | [467 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +peer0.org1.example.com | [88e 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInsantiationPolicy.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer1.org1.example.com | [752 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | [468 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +peer1.org2.example.com | [7a0 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a9af0eb]Received message TRANSACTION from shim +orderer.example.com | [469 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +peer1.org1.example.com | [753 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer0.org1.example.com | [88f 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad channel id: businesschannel version: 1.0 +peer0.org2.example.com | [75e 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [7a1 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a9af0eb]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [754 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +peer0.org1.example.com | [890 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad,syscc=false,proposal=0xc4237c3c20,canname=mycc:1.0 +peer0.org2.example.com | [75f 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | [46a 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer1.org2.example.com | [7a2 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8a9af0eb]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [755 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e9bb883c]Received message TRANSACTION from shim +peer1.org2.example.com | [7a3 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [8a9af0eb]Sending GET_STATE +peer0.org1.example.com | [891 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 +orderer.example.com | [46b 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer0.org2.example.com | [760 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [892 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [7a4 12-15 03:49:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a9af0eb]Received message GET_STATE from shim +peer1.org1.example.com | [756 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e9bb883c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [761 12-15 03:49:39.82 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +orderer.example.com | [46c 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer0.org1.example.com | [893 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +peer1.org2.example.com | [7a5 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a9af0eb]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [757 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e9bb883c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [46d 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +peer0.org2.example.com | [762 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org1.example.com | [894 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7072ae91]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [7a6 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [8a9af0eb]Received GET_STATE, invoking get state from ledger +orderer.example.com | [46e 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +peer1.org1.example.com | [758 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [895 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [46f 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +peer0.org2.example.com | [763 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org1.example.com | [759 12-15 03:49:54.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +orderer.example.com | [470 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +peer0.org1.example.com | [896 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [7a7 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [75a 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database +peer0.org2.example.com | [764 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421c252a0 env 0xc421bf7320 txn 0 +peer1.org2.example.com | [7a8 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8a9af0eb] getting state for chaincode lscc, key mycc, channel businesschannel +peer1.org1.example.com | [75b 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +orderer.example.com | [471 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +peer0.org1.example.com | [897 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7072ae91]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [765 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421bf7320 +peer1.org2.example.com | [7a9 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [898 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7072ae91]Move state message TRANSACTION +peer1.org1.example.com | [75c 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org2.example.com | [7aa 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8a9af0eb]Got state. Sending RESPONSE +peer0.org2.example.com | [766 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\331\214\315\321\005\020\310\246\227[\"\017businesschannel*@522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A\nkokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl\nddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx\nOfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc\nbqEi6/lY2kK0EtGRnA==\n-----END CERTIFICATE-----\n\022\030A\n\203\264\360\3758X\277\365\242\315\221\0251\263\3737\315b\265\026\026S" +orderer.example.com | [472 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer1.org1.example.com | [75d 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e9bb883c]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [899 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7072ae91]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [7ab 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [8a9af0eb]handleGetState serial send RESPONSE +orderer.example.com | [473 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [75e 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e9bb883c]Move state message COMPLETED +peer0.org2.example.com | [767 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [7ac 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a9af0eb]Received message RESPONSE from shim +peer1.org1.example.com | [75f 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e9bb883c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [474 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [768 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [89a 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [475 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [760 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e9bb883c]send state message COMPLETED +orderer.example.com | [476 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [769 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +peer1.org2.example.com | [7ad 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a9af0eb]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [89b 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7072ae91]sending state message TRANSACTION +peer1.org1.example.com | [761 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e9bb883c]Received message COMPLETED from shim +orderer.example.com | [477 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608BB8CCDD10522...4B1B351BCD49FC6D1B9C566F58B5D924 +peer1.org2.example.com | [7ae 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [8a9af0eb]before send +peer0.org1.example.com | [89c 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7072ae91]Received message GET_STATE from shim +orderer.example.com | [478 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: 7E26FF4F8C31CC0540845B9CE90ECD406832CB298CC01F9D3F1FE8ADE68594D7 +peer0.org2.example.com | [76a 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [763 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +orderer.example.com | [479 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +peer1.org2.example.com | [7af 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [8a9af0eb]after send +peer0.org2.example.com | [76b 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [47a 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [764 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | [89d 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7072ae91]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [7b0 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [8a9af0eb]Received RESPONSE, communicated (state:ready) +orderer.example.com | [47b 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +peer1.org1.example.com | [765 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e +peer0.org1.example.com | [89e 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7072ae91]Received GET_STATE, invoking get state from ledger +orderer.example.com | [47c 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org2.example.com | [76c 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4202b9800, header channel_header:"\010\003\032\013\010\331\214\315\321\005\020\310\246\227[\"\017businesschannel*@522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A\nkokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl\nddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx\nOfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc\nbqEi6/lY2kK0EtGRnA==\n-----END CERTIFICATE-----\n\022\030A\n\203\264\360\3758X\277\365\242\315\221\0251\263\3737\315b\265\026\026S" +peer1.org1.example.com | [766 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +orderer.example.com | [47d 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +peer1.org2.example.com | [7b1 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [8a9af0eb]GetState received payload RESPONSE +peer0.org1.example.com | [89f 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [76d 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +orderer.example.com | [47e 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer1.org2.example.com | [7b2 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a9af0eb]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [8a0 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7072ae91] getting state for chaincode mycc, key a, channel businesschannel +orderer.example.com | [47f 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [767 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [7b3 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a9af0eb]Move state message COMPLETED +peer0.org2.example.com | [76e 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +orderer.example.com | MIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [8a1 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=a +peer1.org1.example.com | [768 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [7b4 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a9af0eb]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [76f 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [8a2 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7072ae91]Got state. Sending RESPONSE +peer1.org1.example.com | [769 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org2.example.com | [770 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [8a3 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7072ae91]handleGetState serial send RESPONSE +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE +peer1.org1.example.com | [76a 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | [771 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] +peer1.org2.example.com | [7b5 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a9af0eb]send state message COMPLETED +peer0.org1.example.com | [8a4 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7072ae91]Received message COMPLETED from shim +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org2.example.com | [7b6 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a9af0eb]Received message COMPLETED from shim +peer0.org1.example.com | [8a5 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7072ae91]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [76b 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [772 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +peer0.org1.example.com | [8a6 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [76c 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [773 12-15 03:49:48.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc421bf7320 envbytes 0xc422e69000 +peer1.org2.example.com | [7b7 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a9af0eb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | hkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv +peer0.org1.example.com | [8a7 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad, channelID:businesschannel +orderer.example.com | zQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw +peer1.org2.example.com | [7b8 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a9af0ebdb51e8ef328f35a29fd160aa1e9f0bc16a8b9fc51ed615d9dce9cdbb]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [8a8 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd +peer1.org1.example.com | [76d 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [774 12-15 03:49:48.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [10db6c51-c13a-410d-ac14-05af4e1ec6ec] +peer0.org1.example.com | [8a9 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | ibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv +peer1.org2.example.com | [7b9 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8a9af0ebdb51e8ef328f35a29fd160aa1e9f0bc16a8b9fc51ed615d9dce9cdbb, channelID:businesschannel +peer0.org2.example.com | [775 12-15 03:49:48.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org1.example.com | [76e 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [8aa 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | zjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg= +peer1.org1.example.com | [762 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e9bb883c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [8ab 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad] +peer1.org2.example.com | [7ba 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [776 12-15 03:49:48.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [10db6c51-c13a-410d-ac14-05af4e1ec6ec] +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [8ac 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [777 12-15 03:49:48.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422e69000 +peer1.org2.example.com | [7bb 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInsantiationPolicy.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer1.org1.example.com | [76f 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e9bb883c5817b66047a119003f67cb51ed0a4074bf562ffa0a3fd6958d38874d]HandleMessage- COMPLETED. Notify +orderer.example.com | [480 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c5a8 gate 1513309755728302200 evaluation starts +peer0.org1.example.com | [8ad 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad channel id: businesschannel chaincode id: name:"mycc" +peer0.org2.example.com | [778 12-15 03:49:48.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [8ae 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +peer1.org2.example.com | [7bc 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 8a9af0ebdb51e8ef328f35a29fd160aa1e9f0bc16a8b9fc51ed615d9dce9cdbb channel id: businesschannel version: 1.0 +orderer.example.com | [481 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c5a8 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [7bd 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=8a9af0ebdb51e8ef328f35a29fd160aa1e9f0bc16a8b9fc51ed615d9dce9cdbb,syscc=false,proposal=0xc421ec58b0,canname=mycc:1.0 +peer0.org2.example.com | [779 12-15 03:49:48.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] +peer0.org1.example.com | [8af 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad channel id: businesschannel version: 1.1.0 +orderer.example.com | [482 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c5a8 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749514b77793676416c34704643476846726d4a6d5a305554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e434141534b53436b2b3274316e61597867417059614f3030613970376b47316d6d4a31302f68744e434a49535076547555513163760a7a514f2b694e39366d4c754d6e693475746b416466616b597459576963416830365736636f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a44416967434438636f50455972677065567673447146314b6e6b5956675845646c78640a696256696561725354454e324e54414b42676771686b6a4f5051514441674e4841444245416941794f594647594256623938546a6d6e4451682f56544e5247760a7a6a6643644169736f594355773935725177496744463834756136676e7a50336b444f5530345551564b6b307553414469744a32354b7a31705668694b51673d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [7be 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 +peer0.org1.example.com | [8b0 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad,syscc=true,proposal=0xc4237c3c20,canname=escc:1.1.0 +peer1.org1.example.com | [770 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e9bb883c5817b66047a119003f67cb51ed0a4074bf562ffa0a3fd6958d38874d, channelID:businesschannel +peer0.org2.example.com | [77a 12-15 03:49:48.14 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=67182664-07fb-4293-8365-c490a3282f58,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer0.org1.example.com | [8b1 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +orderer.example.com | [483 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c5a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +peer1.org2.example.com | [7bf 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [77b 12-15 03:49:48.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e chaindID businesschannel +peer1.org1.example.com | [771 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [8b2 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [77c 12-15 03:49:48.14 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +orderer.example.com | [484 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c5a8 principal evaluation fails +peer1.org2.example.com | [7c0 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +peer1.org1.example.com | [772 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [8b3 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +orderer.example.com | [485 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c5a8 gate 1513309755728302200 evaluation fails +peer1.org1.example.com | [773 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [8b4 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7072ae91]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [77d 12-15 03:49:48.14 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [7c1 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8a9af0eb]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [486 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [8b5 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [77e 12-15 03:49:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer1.org1.example.com | [774 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [e9bb883c5817b66047a119003f67cb51ed0a4074bf562ffa0a3fd6958d38874d] +orderer.example.com | [487 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [7c2 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [8b6 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [775 12-15 03:49:54.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:41316) +orderer.example.com | [488 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == +peer1.org2.example.com | [7c3 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [77f 12-15 03:49:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [67182664]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [776 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +orderer.example.com | [489 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c5b8 gate 1513309755728666400 evaluation starts +peer0.org1.example.com | [8b7 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7072ae91]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [778 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422150220 env 0xc4218c2d50 txn 0 +peer0.org2.example.com | [780 12-15 03:49:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [48a 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c5b8 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [7c4 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8a9af0eb]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [779 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4218c2d50 +peer0.org2.example.com | [781 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [67182664]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [7c5 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a9af0eb]Move state message TRANSACTION +peer0.org1.example.com | [8b8 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7072ae91]Move state message TRANSACTION +peer1.org1.example.com | [77a 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\342\214\315\321\005\020\260\211\363\247\002\"\017businesschannel*@397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv\nVLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7\nYoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2\n8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0\nN5+z/fTTfchGfLaCtzM=\n-----END CERTIFICATE-----\n\022\030 Gdw\361\301\302\000\t\355\326\265\210\224\222\212\001>\254\241\001\223[\016" +orderer.example.com | [48b 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c5b8 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749514b77793676416c34704643476846726d4a6d5a305554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e434141534b53436b2b3274316e61597867417059614f3030613970376b47316d6d4a31302f68744e434a49535076547555513163760a7a514f2b694e39366d4c754d6e693475746b416466616b597459576963416830365736636f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a44416967434438636f50455972677065567673447146314b6e6b5956675845646c78640a696256696561725354454e324e54414b42676771686b6a4f5051514441674e4841444245416941794f594647594256623938546a6d6e4451682f56544e5247760a7a6a6643644169736f594355773935725177496744463834756136676e7a50336b444f5530345551564b6b307553414469744a32354b7a31705668694b51673d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org2.example.com | [782 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67182664]Move state message TRANSACTION +peer0.org1.example.com | [8b9 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7072ae91]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [77b 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [48c 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c5b8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +peer0.org1.example.com | [8ba 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [7c6 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a9af0eb]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [783 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [67182664]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [48d 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c5b8 principal evaluation fails +peer1.org1.example.com | [77c 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [8bb 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7072ae91]sending state message TRANSACTION +peer0.org2.example.com | [784 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [7c7 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [48e 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c5b8 gate 1513309755728666400 evaluation fails +peer0.org2.example.com | [785 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67182664]sending state message TRANSACTION +peer0.org1.example.com | [8bc 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7072ae91]Received message TRANSACTION from shim +peer1.org2.example.com | [7c8 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a9af0eb]sending state message TRANSACTION +peer0.org2.example.com | [786 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67182664]Received message TRANSACTION from shim +orderer.example.com | [48f 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [77d 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 73763341eb604cef734e4ac7c2ea77bc9d730c798fb96eb583c0637692a88acd} +peer0.org1.example.com | [8bd 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7072ae91]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [7c9 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a9af0eb]Received message GET_STATE from shim +peer0.org2.example.com | [787 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [67182664]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [490 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [8be 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7072ae91]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [77e 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [788 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [67182664]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [8bf 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org2.example.com | [7ca 12-15 03:49:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a9af0eb]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [789 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org1.example.com | [77f 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [7cb 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [8a9af0eb]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [8c0 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org1.example.com | [780 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422bd9800, header channel_header:"\010\003\032\014\010\342\214\315\321\005\020\260\211\363\247\002\"\017businesschannel*@397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv\nVLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7\nYoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2\n8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0\nN5+z/fTTfchGfLaCtzM=\n-----END CERTIFICATE-----\n\022\030 Gdw\361\301\302\000\t\355\326\265\210\224\222\212\001>\254\241\001\223[\016" +peer0.org2.example.com | [78a 12-15 03:49:48.19 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 | [491 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org1MSP.Writers Org2MSP.Writers ] +peer1.org2.example.com | [7cc 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8a9af0eb] getting state for chaincode mycc, key a, channel businesschannel +peer0.org2.example.com | [78b 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer1.org1.example.com | [781 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +orderer.example.com | [492 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Writers +peer0.org1.example.com | [8c1 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7072ae91]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [78c 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67182664]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [782 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +orderer.example.com | [493 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +peer1.org2.example.com | [7cd 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=a +peer0.org2.example.com | [78d 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67182664]Move state message COMPLETED +peer1.org1.example.com | [783 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [8c2 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7072ae91]Move state message COMPLETED +peer1.org2.example.com | [7ce 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8a9af0eb]Got state. Sending RESPONSE +orderer.example.com | [494 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +peer0.org2.example.com | [78e 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [67182664]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [784 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer1.org2.example.com | [7cf 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [8a9af0eb]handleGetState serial send RESPONSE +peer0.org1.example.com | [8c3 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7072ae91]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [78f 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67182664]send state message COMPLETED +peer1.org1.example.com | [785 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] +orderer.example.com | [495 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [8c4 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7072ae91]send state message COMPLETED +peer1.org2.example.com | [7d0 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [786 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +orderer.example.com | [496 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +peer0.org2.example.com | [790 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67182664]Received message COMPLETED from shim +peer1.org1.example.com | [787 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4218c2d50 envbytes 0xc42218c400 +peer0.org2.example.com | [791 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [67182664]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [8c5 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7072ae91]Received message COMPLETED from shim +orderer.example.com | [497 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c5c0 gate 1513309755729214700 evaluation starts +peer1.org2.example.com | [7d1 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a9af0eb]Received message COMPLETED from shim +peer0.org2.example.com | [792 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [67182664-07fb-4293-8365-c490a3282f58]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [8c6 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7072ae91]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [788 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [2c66cd5e-0558-442a-83e1-cb89536c964b] +peer1.org2.example.com | [7d2 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a9af0eb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [498 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c5c0 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [793 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:67182664-07fb-4293-8365-c490a3282f58, channelID:businesschannel +peer0.org1.example.com | [8c7 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [7d3 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a9af0ebdb51e8ef328f35a29fd160aa1e9f0bc16a8b9fc51ed615d9dce9cdbb]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [794 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [7d4 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8a9af0ebdb51e8ef328f35a29fd160aa1e9f0bc16a8b9fc51ed615d9dce9cdbb, channelID:businesschannel +peer0.org1.example.com | [8c8 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad, channelID:businesschannel +peer0.org2.example.com | [795 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] +orderer.example.com | [499 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c5c0 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749514b77793676416c34704643476846726d4a6d5a305554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e434141534b53436b2b3274316e61597867417059614f3030613970376b47316d6d4a31302f68744e434a49535076547555513163760a7a514f2b694e39366d4c754d6e693475746b416466616b597459576963416830365736636f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a44416967434438636f50455972677065567673447146314b6e6b5956675845646c78640a696256696561725354454e324e54414b42676771686b6a4f5051514441674e4841444245416941794f594647594256623938546a6d6e4451682f56544e5247760a7a6a6643644169736f594355773935725177496744463834756136676e7a50336b444f5530345551564b6b307553414469744a32354b7a31705668694b51673d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [7d5 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [796 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422e69000 +peer1.org1.example.com | [789 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [8c9 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [49a 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +peer1.org2.example.com | [7d6 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [797 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc421bf7320 envbytes 0xc422e69000 +orderer.example.com | [49b 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org1.example.com | [8ca 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [7d7 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org2.example.com | [798 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421c252a0 env 0xc421bf7320 txn 0 +peer1.org1.example.com | [78a 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [2c66cd5e-0558-442a-83e1-cb89536c964b] +orderer.example.com | [49c 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c5c0 principal matched by identity 0 +peer0.org1.example.com | [8cb 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org2.example.com | [799 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer1.org1.example.com | [78b 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc42218c400 +peer1.org2.example.com | [7d8 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [8a9af0ebdb51e8ef328f35a29fd160aa1e9f0bc16a8b9fc51ed615d9dce9cdbb] +peer0.org1.example.com | [8cc 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad] +orderer.example.com | [49d 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 7e 26 ff 4f 8c 31 cc 05 40 84 5b 9c e9 0e cd 40 |~&.O.1..@.[....@| +peer0.org2.example.com | [79a 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org2.example.com | [7d9 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org1.example.com | [78c 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [79b 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] +peer0.org1.example.com | [8cd 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40946) +peer0.org2.example.com | [79c 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | 00000010 68 32 cb 29 8c c0 1f 9d 3f 1f e8 ad e6 85 94 d7 |h2.)....?.......| +peer0.org2.example.com | [79d 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] +peer0.org1.example.com | [8ce 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40950 +orderer.example.com | [49e 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 68 3b f9 b4 80 9a d5 5f c5 e2 2e aa |0D. h;....._....| +peer1.org2.example.com | [7da 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 8a9af0ebdb51e8ef328f35a29fd160aa1e9f0bc16a8b9fc51ed615d9dce9cdbb channel id: businesschannel chaincode id: name:"mycc" +peer0.org2.example.com | [79e 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org1.example.com | [8cf 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423aca810 +peer1.org1.example.com | [78d 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] +peer0.org2.example.com | [79f 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +peer1.org2.example.com | [7db 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +peer0.org1.example.com | [8d0 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | 00000010 b8 6c 50 16 0b 52 7c 07 2e 67 f5 04 d3 70 62 ce |.lP..R|..g...pb.| +peer0.org2.example.com | [7a0 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org1.example.com | [78e 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=16007472-967f-4ede-9d3a-0f6189101dda,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer1.org2.example.com | [7dc 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 8a9af0ebdb51e8ef328f35a29fd160aa1e9f0bc16a8b9fc51ed615d9dce9cdbb channel id: businesschannel version: 1.1.0 +peer0.org2.example.com | [7a1 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer0.org1.example.com | [8d1 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [7a2 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=a +orderer.example.com | 00000020 42 c2 4d d1 02 20 5b e9 0f 91 37 89 c1 89 17 9c |B.M.. [...7.....| +peer1.org1.example.com | [78f 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a chaindID businesschannel +peer1.org2.example.com | [7dd 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=8a9af0ebdb51e8ef328f35a29fd160aa1e9f0bc16a8b9fc51ed615d9dce9cdbb,syscc=true,proposal=0xc421ec58b0,canname=escc:1.1.0 +peer0.org2.example.com | [7a3 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer0.org1.example.com | [8d2 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +peer1.org2.example.com | [7de 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer1.org1.example.com | [790 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +orderer.example.com | 00000030 78 b6 40 7e 30 6a 34 06 08 43 a2 09 02 c7 44 5f |x.@~0j4..C....D_| +peer0.org1.example.com | [8d3 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [7a4 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=b +orderer.example.com | 00000040 4d 0e d5 e6 a5 0e |M.....| +peer1.org1.example.com | [791 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [7df 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [8d4 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [49f 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c5c0 principal evaluation succeeds for identity 0 +peer0.org2.example.com | [7a5 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer1.org1.example.com | [792 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer1.org2.example.com | [7e0 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [8d5 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423ac4410, header 0xc423aca840 +peer1.org1.example.com | [793 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [16007472]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [7a6 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] marked as valid by state validator +orderer.example.com | [4a0 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c5c0 gate 1513309755729214700 evaluation succeeds +peer1.org2.example.com | [7e1 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8a9af0eb]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [8d6 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer1.org1.example.com | [794 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [7a7 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org2.example.com | [7e2 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [4a1 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers +peer1.org1.example.com | [795 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [16007472]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [7a8 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org1.example.com | [8d7 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf +peer1.org1.example.com | [796 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [16007472]Move state message TRANSACTION +peer1.org2.example.com | [7e3 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [4a2 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [8d8 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf] +peer0.org2.example.com | [7a9 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer1.org1.example.com | [797 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [16007472]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [7e4 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8a9af0eb]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [798 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [8d9 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [4a3 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers +peer0.org2.example.com | [7aa 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage +peer1.org1.example.com | [799 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [16007472]sending state message TRANSACTION +peer0.org1.example.com | [8da 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf] +peer1.org2.example.com | [7e5 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a9af0eb]Move state message TRANSACTION +orderer.example.com | [4a4 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +peer1.org1.example.com | [79a 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [16007472]Received message TRANSACTION from shim +peer0.org1.example.com | [8db 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf channel id: businesschannel +peer0.org2.example.com | [7ab 12-15 03:49:48.26 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [5] +peer1.org2.example.com | [7e6 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a9af0eb]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [4a5 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +peer1.org1.example.com | [79b 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [16007472]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [8dc 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf channel id: businesschannel version: 1.1.0 +peer0.org2.example.com | [7ac 12-15 03:49:48.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xcb, 0xcf, 0xb6, 0xae, 0xe4, 0xec, 0x84, 0x3d, 0xff, 0x69, 0xec, 0xe8, 0x67, 0xe0, 0x4, 0x97, 0xd4, 0xed, 0x51, 0x58, 0x9c, 0x6d, 0xdb, 0x2f, 0x52, 0xb2, 0x7b, 0xe3, 0x9b, 0x2a, 0xb2, 0x78} txOffsets= +peer1.org1.example.com | [79c 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [16007472]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [7e7 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [4a6 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +peer1.org1.example.com | [79d 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org2.example.com | txId=522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e locPointer=offset=70, bytesLength=2913 +orderer.example.com | [4a7 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.21.0.8:57106 +peer0.org1.example.com | [8dd 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf,syscc=true,proposal=0xc423ac4410,canname=lscc:1.1.0 +peer1.org1.example.com | [79e 12-15 03:49:56.75 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 | [7e8 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a9af0eb]sending state message TRANSACTION peer0.org2.example.com | ] -orderer.example.com | [4a3 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org1.example.com | [8a1 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d33a5728]Received message GET_STATE from shim -peer1.org2.example.com | [872 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -peer0.org2.example.com | [839 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55561, bytesLength=2907] for tx ID: [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] to index -orderer.example.com | [4a4 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [873 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a channel id: businesschannel version: 1.1.0 -peer0.org1.example.com | [8a2 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d33a5728]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [4a5 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [83a 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55561, bytesLength=2907] for tx number:[0] ID: [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] to blockNumTranNum index -peer1.org2.example.com | [874 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a,syscc=true,proposal=0xc42271b130,canname=escc:1.1.0 -orderer.example.com | [4a6 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [8a3 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [d33a5728]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [875 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer0.org1.example.com | [8a4 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [83b 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60263], isChainEmpty=[false], lastBlockNumber=[6] -peer0.org1.example.com | [8a5 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d33a5728] getting state for chaincode lscc, key mycc, channel businesschannel -orderer.example.com | [4a7 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [83c 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 6 -peer1.org2.example.com | [876 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [4a8 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [8a6 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [877 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer0.org2.example.com | [83d 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 6 -orderer.example.com | [4a9 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [878 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d7e1579b]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [8a7 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d33a5728]Got state. Sending RESPONSE -orderer.example.com | [4aa 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [83e 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) -peer1.org2.example.com | [879 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [8a8 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d33a5728]handleGetState serial send RESPONSE -peer0.org2.example.com | [83f 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database -peer1.org2.example.com | [87a 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [4ab 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [87b 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d7e1579b]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [8a9 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d33a5728]Received message RESPONSE from shim -peer0.org2.example.com | [840 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -orderer.example.com | [4ac 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [87c 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7e1579b]Move state message TRANSACTION -peer0.org1.example.com | [8aa 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d33a5728]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org2.example.com | [841 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [87d 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7e1579b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [4ad 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [842 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer0.org1.example.com | [8ab 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d33a5728]before send -peer1.org2.example.com | [87e 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [8ac 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d33a5728]after send -peer0.org1.example.com | [8ad 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [d33a5728]Received RESPONSE, communicated (state:ready) -peer0.org2.example.com | [843 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -orderer.example.com | [4ae 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [87f 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7e1579b]sending state message TRANSACTION -peer0.org1.example.com | [8ae 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [d33a5728]GetState received payload RESPONSE -peer0.org2.example.com | [844 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -orderer.example.com | [4af 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -peer0.org1.example.com | [8af 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d33a5728]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [880 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7e1579b]Received message TRANSACTION from shim -orderer.example.com | [4b0 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [845 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database -peer0.org1.example.com | [8b0 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d33a5728]Move state message COMPLETED -peer1.org2.example.com | [881 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d7e1579b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [4b1 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org2.example.com | [882 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d7e1579b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [846 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -peer0.org1.example.com | [8b1 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d33a5728]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [4b2 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org2.example.com | [883 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org2.example.com | [847 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -peer0.org1.example.com | [8b2 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d33a5728]send state message COMPLETED -orderer.example.com | [4b3 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org1.example.com | [8b3 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d33a5728]Received message COMPLETED from shim -peer1.org2.example.com | [884 12-12 14:20:17.49 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org2.example.com | [848 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [8b4 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d33a5728]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [849 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a -orderer.example.com | [4b4 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org2.example.com | [885 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7e1579b]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [8b5 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b]HandleMessage- COMPLETED. Notify -orderer.example.com | [4b5 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [886 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7e1579b]Move state message COMPLETED -orderer.example.com | [4b6 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [84a 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [8b6 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b, channelID:businesschannel -orderer.example.com | [4b7 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [887 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d7e1579b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [8b7 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [888 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7e1579b]send state message COMPLETED -peer1.org2.example.com | [889 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7e1579b]Received message COMPLETED from shim -orderer.example.com | [4b8 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [84b 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [88a 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7e1579b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [4b9 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [88b 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [84c 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [8b8 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | [4ba 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [84d 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [8b9 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org2.example.com | [88c 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a, channelID:businesschannel -orderer.example.com | [4bb 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [84e 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [8ba 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b] -peer1.org2.example.com | [88d 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [4bc 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [84f 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [4bd 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [8bb 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [88e 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [4be 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [850 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [8bc 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b channel id: businesschannel chaincode id: name:"lscc" -peer1.org2.example.com | [88f 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer1.org2.example.com | [890 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] -peer0.org2.example.com | [851 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [4bf 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [891 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:42396) -peer0.org1.example.com | [8bd 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer0.org2.example.com | [852 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [892 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -orderer.example.com | [4c0 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [8be 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b channel id: businesschannel version: 1.1.0 -orderer.example.com | [4c1 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org2.example.com | [893 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org1.example.com | [8bf 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b,syscc=true,proposal=0xc4226cd0e0,canname=escc:1.1.0 -peer1.org2.example.com | [894 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422f16c20 env 0xc4231b8bd0 txn 0 -orderer.example.com | [4c2 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [895 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4231b8bd0 -peer0.org1.example.com | [8c0 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer0.org1.example.com | [8c1 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [8c2 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer1.org2.example.com | [896 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\241\313\277\321\005\020\250\211\347\344\001\"\017businesschannel*@d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a:\010\022\006\022\004mycc" signature_header:"\n\236\006\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk\nEEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT\n6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB\n9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf\nZM8rwLlgV6XUeTLW\n-----END CERTIFICATE-----\n\022\030\322\371\2771\000\220_B\361\026\262\240y{\306\361\223D\301~\251G\266\034" -orderer.example.com | [4c3 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [8c3 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d33a5728]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [897 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [898 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [8c4 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [899 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP cec57e02e224c3efa1075c97d8c3172cd78fec768b3b75afcf280ac60a493411} -orderer.example.com | [4c4 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [89a 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [8c5 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [89b 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [4c5 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org1.example.com | [8c6 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d33a5728]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [4c6 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Capabilities -peer1.org2.example.com | [89c 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422f22800, header channel_header:"\010\003\032\014\010\241\313\277\321\005\020\250\211\347\344\001\"\017businesschannel*@d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a:\010\022\006\022\004mycc" signature_header:"\n\236\006\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk\nEEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT\n6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB\n9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf\nZM8rwLlgV6XUeTLW\n-----END CERTIFICATE-----\n\022\030\322\371\2771\000\220_B\361\026\262\240y{\306\361\223D\301~\251G\266\034" -peer0.org1.example.com | [8c7 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d33a5728]Move state message TRANSACTION -orderer.example.com | [4c7 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Writers -orderer.example.com | [4c8 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [8c8 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d33a5728]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [4c9 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -peer0.org1.example.com | [8c9 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [4ca 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy ChannelCreationPolicy -peer1.org2.example.com | [89d 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [8ca 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d33a5728]sending state message TRANSACTION -peer0.org1.example.com | [8cb 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d33a5728]Received message TRANSACTION from shim -peer1.org2.example.com | [89e 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [89f 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [8cc 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d33a5728]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [4cb 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] -peer1.org2.example.com | [8a0 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -orderer.example.com | [4cc 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -peer0.org1.example.com | [8cd 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d33a5728]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [8a1 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] -orderer.example.com | [4cd 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -peer0.org1.example.com | [8ce 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [4ce 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -peer1.org2.example.com | [8a2 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [8cf 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | [4cf 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -peer1.org2.example.com | [8a3 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4231b8bd0 envbytes 0xc422ef2000 -peer0.org1.example.com | [8d0 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d33a5728]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [8d1 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d33a5728]Move state message COMPLETED -peer1.org2.example.com | [8a4 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [45ec30e9-e85d-49ae-b9fd-d6ea093acd63] -orderer.example.com | [4d0 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -peer0.org1.example.com | [8d2 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d33a5728]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [8a5 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | [4d1 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -peer0.org1.example.com | [8d3 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d33a5728]send state message COMPLETED -orderer.example.com | [4d2 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -peer0.org1.example.com | [8d4 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d33a5728]Received message COMPLETED from shim -peer1.org2.example.com | [8a6 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [45ec30e9-e85d-49ae-b9fd-d6ea093acd63] -orderer.example.com | [4d3 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -peer1.org2.example.com | [8a7 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422ef2000 -peer0.org1.example.com | [8d5 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d33a5728]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [8d6 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b]HandleMessage- COMPLETED. Notify -orderer.example.com | [4d4 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy == -peer0.org1.example.com | [8d7 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b, channelID:businesschannel -peer1.org2.example.com | [8a8 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [4d5 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [8d8 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [8a9 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] -orderer.example.com | [4d6 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -peer0.org1.example.com | [8d9 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [4d7 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org2.example.com | [8aa 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=2d9fcb9f-8be1-40a4-9ca9-bfba1a33e20a,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org1.example.com | [8da 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [8db 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b] -orderer.example.com | [4d8 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [8dc 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36770) -peer0.org1.example.com | [8dd 12-12 14:20:18.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36772 -peer0.org1.example.com | [8de 12-12 14:20:18.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422550bd0 -peer1.org2.example.com | [8ab 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a chaindID businesschannel -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [8df 12-12 14:20:18.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [8e0 12-12 14:20:18.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [8ac 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer0.org1.example.com | [8e1 12-12 14:20:18.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -peer1.org2.example.com | [8ad 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [8e2 12-12 14:20:18.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [8ae 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -peer0.org1.example.com | [8e3 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [8af 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2d9fcb9f]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [8e4 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421e23a90, header 0xc422550c00 -peer1.org2.example.com | [8b0 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [8e5 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [8e6 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6 -peer0.org1.example.com | [8e7 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6] -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [8e8 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [8e9 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6] -peer1.org2.example.com | [8b1 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2d9fcb9f]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [8ea 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6 channel id: businesschannel -peer1.org2.example.com | [8b2 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2d9fcb9f]Move state message TRANSACTION -peer0.org1.example.com | [8eb 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6 channel id: businesschannel version: 1.1.0 -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -peer0.org1.example.com | [8ec 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6,syscc=true,proposal=0xc421e23a90,canname=lscc:1.1.0 -peer1.org2.example.com | [8b3 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2d9fcb9f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [8ed 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -peer0.org1.example.com | [8ee 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [8b4 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -peer0.org1.example.com | [8ef 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org1.example.com | [8f0 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [161341c3]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [8f1 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [8f2 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [8f3 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [161341c3]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [8b5 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2d9fcb9f]sending state message TRANSACTION -peer0.org1.example.com | [8f4 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [161341c3]Move state message TRANSACTION -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -peer1.org2.example.com | [8b6 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d9fcb9f]Received message TRANSACTION from shim -peer0.org1.example.com | [8f5 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [161341c3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -peer0.org1.example.com | [8f6 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [8b7 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2d9fcb9f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | OwJpoynNCyKsWozuVw== -peer0.org1.example.com | [8f7 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [161341c3]sending state message TRANSACTION -peer1.org2.example.com | [8b8 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2d9fcb9f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [8f8 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [161341c3]Received message TRANSACTION from shim -peer0.org1.example.com | [8f9 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [161341c3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [8fa 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [161341c3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [8b9 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [8fb 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [161341c3]Sending GET_STATE -peer0.org1.example.com | [8fc 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [161341c3]Received message GET_STATE from shim -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [8ba 12-12 14:20:19.55 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 | [4d9 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e260 gate 1513088379759138800 evaluation starts -peer0.org1.example.com | [8fd 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [161341c3]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [4da 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [8fe 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [161341c3]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [8bb 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org1.example.com | [8ff 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [8bc 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d9fcb9f]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [900 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [161341c3] getting state for chaincode lscc, key mycc, channel businesschannel -orderer.example.com | [4db 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [4dc 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -peer0.org1.example.com | [901 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | [4dd 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 principal evaluation fails -peer1.org2.example.com | [8bd 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d9fcb9f]Move state message COMPLETED -orderer.example.com | [4de 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e260 gate 1513088379759138800 evaluation fails -peer1.org2.example.com | [8be 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2d9fcb9f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [4df 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [902 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [161341c3]Got state. Sending RESPONSE -peer1.org2.example.com | [8bf 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d9fcb9f]send state message COMPLETED -orderer.example.com | [4e0 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -orderer.example.com | [4e1 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -orderer.example.com | [4e2 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e270 gate 1513088379759692100 evaluation starts -orderer.example.com | [4e3 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [4e4 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [903 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [161341c3]handleGetState serial send RESPONSE -orderer.example.com | [4e5 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -peer1.org2.example.com | [8c0 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2d9fcb9f]Received message COMPLETED from shim -peer1.org2.example.com | [8c1 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2d9fcb9f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [904 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [161341c3]Received message RESPONSE from shim -peer1.org2.example.com | [8c2 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2d9fcb9f-8be1-40a4-9ca9-bfba1a33e20a]HandleMessage- COMPLETED. Notify -orderer.example.com | [4e6 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 principal matched by identity 0 -peer1.org2.example.com | [8c3 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:2d9fcb9f-8be1-40a4-9ca9-bfba1a33e20a, channelID:businesschannel -peer1.org2.example.com | [8c4 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [8c5 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] -peer1.org2.example.com | [8c6 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422ef2000 -peer1.org2.example.com | [8c7 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4231b8bd0 envbytes 0xc422ef2000 -peer1.org2.example.com | [8c8 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422f16c20 env 0xc4231b8bd0 txn 0 -peer1.org2.example.com | [8c9 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org2.example.com | [8ca 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org1.example.com | [905 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [161341c3]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | [4e7 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 74 62 55 84 54 84 d3 fc 37 ff 1b d1 3a a6 30 c2 |tbU.T...7...:.0.| -peer1.org2.example.com | [8cb 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] -orderer.example.com | 00000010 81 70 dd d3 d0 d5 9e 9b e5 34 4d 83 a6 6d d3 c1 |.p.......4M..m..| -orderer.example.com | [4e8 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 cb cd 0b 64 09 7d 04 72 03 4b 1d |0E.!....d.}.r.K.| -peer1.org2.example.com | [8cc 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [906 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [161341c3]before send -orderer.example.com | 00000010 53 72 05 21 21 5b 16 61 dd 54 2e 2e c4 b6 05 2f |Sr.!![.a.T...../| -peer1.org2.example.com | [8cd 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [6] -orderer.example.com | 00000020 8f 3e 7e ce ff 02 20 16 94 de b8 6e 43 f6 89 bd |.>~... ....nC...| -peer0.org1.example.com | [907 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [161341c3]after send -peer1.org2.example.com | [8ce 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org2.example.com | [8cf 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -peer1.org2.example.com | [8d0 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [8d1 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer1.org2.example.com | [8d2 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=a -peer1.org2.example.com | [8d3 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -peer1.org2.example.com | [8d4 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=b -peer1.org2.example.com | [8d5 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -peer0.org1.example.com | [908 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [161341c3]Received RESPONSE, communicated (state:ready) -orderer.example.com | 00000030 ce ac 70 cb 4a 65 18 e6 4c a6 87 e4 94 7b 5f 1c |..p.Je..L....{_.| -peer1.org2.example.com | [8d6 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] marked as valid by state validator -orderer.example.com | 00000040 60 02 b8 01 29 1b 7c |`...).|| -peer0.org1.example.com | [909 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [161341c3]GetState received payload RESPONSE -peer1.org2.example.com | [8d7 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org2.example.com | [8d8 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org2.example.com | [8d9 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -orderer.example.com | [4e9 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [90a 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [161341c3]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [8da 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage -peer1.org2.example.com | [8db 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [6] -peer0.org1.example.com | [90b 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [161341c3]Move state message COMPLETED -peer1.org2.example.com | [8dc 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x1b, 0x80, 0x67, 0xcc, 0xf8, 0xad, 0x90, 0xca, 0xc9, 0x3a, 0x94, 0x5b, 0x5c, 0x45, 0x7f, 0xc3, 0xbc, 0xd9, 0x89, 0x55, 0xf6, 0xf7, 0xb, 0x3d, 0x1f, 0x3b, 0xee, 0xd0, 0x48, 0xdd, 0x9e, 0xe0} txOffsets= -peer1.org2.example.com | txId=d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a locPointer=offset=70, bytesLength=2907 -orderer.example.com | [4ea 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e270 gate 1513088379759692100 evaluation succeeds +orderer.example.com | [4a8 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [7e9 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a9af0eb]Received message TRANSACTION from shim +peer1.org1.example.com | [79f 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org1.example.com | [8de 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer0.org2.example.com | [7ad 12-15 03:49:48.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50817, bytesLength=2913] for tx ID: [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] to index +peer1.org2.example.com | [7ea 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a9af0eb]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [7a0 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [16007472]Transaction completed. Sending COMPLETED +orderer.example.com | [4a9 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [7eb 12-15 03:49:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8a9af0eb]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [8df 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [7ae 12-15 03:49:48.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50817, bytesLength=2913] for tx number:[0] ID: [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] to blockNumTranNum index +peer1.org1.example.com | [7a1 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [16007472]Move state message COMPLETED +orderer.example.com | [4aa 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [8e0 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer1.org2.example.com | [7ec 12-15 03:49:54.48 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org2.example.com | [7af 12-15 03:49:48.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55524], isChainEmpty=[false], lastBlockNumber=[5] +peer1.org1.example.com | [7a2 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [16007472]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [8e1 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9714b463]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [4ab 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [7a3 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [16007472]send state message COMPLETED +peer1.org2.example.com | [7ed 12-15 03:49:54.48 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org2.example.com | [7b0 12-15 03:49:48.27 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 5 +peer1.org1.example.com | [7a4 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [16007472]Received message COMPLETED from shim +peer0.org1.example.com | [8e2 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [7b1 12-15 03:49:48.28 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 5 +orderer.example.com | [4ac 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [7a5 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [16007472]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [7ee 12-15 03:49:54.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a9af0eb]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [7b2 12-15 03:49:48.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) +peer0.org1.example.com | [8e3 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [7a6 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [16007472-967f-4ede-9d3a-0f6189101dda]HandleMessage- COMPLETED. Notify +orderer.example.com | [4ad 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [7ef 12-15 03:49:54.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a9af0eb]Move state message COMPLETED +peer0.org2.example.com | [7b3 12-15 03:49:48.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database +peer1.org1.example.com | [7a7 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:16007472-967f-4ede-9d3a-0f6189101dda, channelID:businesschannel +orderer.example.com | [4ae 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [8e4 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9714b463]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [7f0 12-15 03:49:54.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a9af0eb]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [7b4 12-15 03:49:48.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer1.org1.example.com | [7a8 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [7f1 12-15 03:49:54.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a9af0eb]send state message COMPLETED +orderer.example.com | [4af 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [7b5 12-15 03:49:48.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | [8e5 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9714b463]Move state message TRANSACTION +peer1.org1.example.com | [7a9 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] +peer0.org2.example.com | [7b6 12-15 03:49:48.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +orderer.example.com | [4b0 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org1.example.com | [7aa 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc42218c400 +peer1.org2.example.com | [7f2 12-15 03:49:54.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a9af0eb]Received message COMPLETED from shim +peer0.org1.example.com | [8e6 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9714b463]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [7b7 12-15 03:49:48.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +orderer.example.com | [4b1 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org1.example.com | [7ab 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4218c2d50 envbytes 0xc42218c400 +peer1.org2.example.com | [7f3 12-15 03:49:54.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a9af0eb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [7b8 12-15 03:49:48.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [777 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org1.example.com | [8e7 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [4b2 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [7f4 12-15 03:49:54.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a9af0ebdb51e8ef328f35a29fd160aa1e9f0bc16a8b9fc51ed615d9dce9cdbb]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [7ac 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org1.example.com | [8e8 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9714b463]sending state message TRANSACTION +peer0.org2.example.com | [7b9 12-15 03:49:48.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database +peer1.org2.example.com | [7f5 12-15 03:49:54.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8a9af0ebdb51e8ef328f35a29fd160aa1e9f0bc16a8b9fc51ed615d9dce9cdbb, channelID:businesschannel +peer1.org1.example.com | [7ad 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org1.example.com | [8e9 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9714b463]Received message TRANSACTION from shim +orderer.example.com | [4b3 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer1.org1.example.com | [7ae 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422150220 env 0xc4218c2d50 txn 0 +peer0.org2.example.com | [7ba 12-15 03:49:48.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +peer1.org2.example.com | [7f6 12-15 03:49:54.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [8ea 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9714b463]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [7af 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] +peer0.org2.example.com | [7bb 12-15 03:49:48.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +orderer.example.com | [4b4 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [7f7 12-15 03:49:54.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [7b0 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [7bc 12-15 03:49:48.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | [8eb 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9714b463]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [7bd 12-15 03:49:48.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e +peer1.org1.example.com | [7b1 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [6] +orderer.example.com | [4b5 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [7f8 12-15 03:49:54.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [8ec 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [9714b463]Sending GET_STATE +peer0.org2.example.com | [7be 12-15 03:49:48.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +orderer.example.com | [4b6 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [7f9 12-15 03:49:54.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [8a9af0ebdb51e8ef328f35a29fd160aa1e9f0bc16a8b9fc51ed615d9dce9cdbb] +peer1.org1.example.com | [7b2 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org1.example.com | [8ed 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9714b463]Received message GET_STATE from shim +orderer.example.com | [4b7 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP +peer0.org2.example.com | [7bf 12-15 03:49:48.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [7fa 12-15 03:49:54.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:36204) +peer0.org1.example.com | [8ee 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9714b463]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [7c0 12-15 03:49:48.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [7b3 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +orderer.example.com | [4b8 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins +peer1.org2.example.com | [7fb 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:36206 +peer0.org2.example.com | [7c1 12-15 03:49:48.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [8ef 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [9714b463]Received GET_STATE, invoking get state from ledger +peer1.org1.example.com | [7b4 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org2.example.com | [7fc 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421de35f0 +peer0.org2.example.com | [7c2 12-15 03:49:48.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +orderer.example.com | [4b9 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +peer0.org1.example.com | [8f0 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [7b5 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer1.org2.example.com | [7fd 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [7c3 12-15 03:49:48.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [8f1 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9714b463] getting state for chaincode lscc, key mycc, channel businesschannel +peer1.org2.example.com | [7fe 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [7b6 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=a +orderer.example.com | [4ba 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +peer1.org2.example.com | [7ff 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 73763341eb604cef734e4ac7c2ea77bc9d730c798fb96eb583c0637692a88acd} +peer0.org1.example.com | [8f2 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | [4bb 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +peer0.org2.example.com | [7c4 12-15 03:49:48.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [7b7 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +peer1.org2.example.com | [800 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [8f3 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9714b463]Got state. Sending RESPONSE +peer1.org2.example.com | [801 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [7b8 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=b +orderer.example.com | [4bc 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +peer0.org1.example.com | [8f4 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [9714b463]handleGetState serial send RESPONSE +peer0.org2.example.com | [7c5 12-15 03:49:48.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [802 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4220c2000, header 0xc421de3620 +peer1.org1.example.com | [7b9 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +peer0.org1.example.com | [8f5 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9714b463]Received message RESPONSE from shim +peer0.org2.example.com | [7c6 12-15 03:49:48.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [803 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" +orderer.example.com | [4bd 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +peer0.org1.example.com | [8f6 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9714b463]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org2.example.com | [804 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a +peer1.org1.example.com | [7ba 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] marked as valid by state validator +peer0.org2.example.com | [7c7 12-15 03:49:55.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:58240 +peer1.org2.example.com | [805 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] +peer0.org1.example.com | [8f7 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [9714b463]before send +peer1.org2.example.com | [806 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [7bb 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +orderer.example.com | [4be 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +peer1.org2.example.com | [807 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] +peer0.org2.example.com | [7c8 12-15 03:49:55.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4231f4750 +peer0.org1.example.com | [8f8 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [9714b463]after send +peer1.org1.example.com | [7bc 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +orderer.example.com | [4bf 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org1MSP] +peer1.org2.example.com | [808 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a channel id: businesschannel +peer1.org1.example.com | [7bd 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org2.example.com | [7c9 12-15 03:49:55.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [8f9 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [9714b463]Received RESPONSE, communicated (state:ready) +peer1.org2.example.com | [809 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a,syscc=true,proposal=0xc4220c2000,canname=lscc:1.1.0 +peer1.org1.example.com | [7be 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage +orderer.example.com | [4c0 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP +peer0.org2.example.com | [7ca 12-15 03:49:55.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [80a 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +orderer.example.com | [4c1 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP +peer0.org1.example.com | [8fa 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [9714b463]GetState received payload RESPONSE +peer0.org2.example.com | [7cb 12-15 03:49:55.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 73763341eb604cef734e4ac7c2ea77bc9d730c798fb96eb583c0637692a88acd} +peer1.org2.example.com | [80b 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [7bf 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [6] +orderer.example.com | [4c2 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org1MSP looking up path [] +peer0.org2.example.com | [7cc 12-15 03:49:55.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [80c 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer0.org1.example.com | [8fb 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9714b463]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [7cd 12-15 03:49:55.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [80d 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [397af471]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [4c3 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +peer1.org1.example.com | [7c0 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xd4, 0x4a, 0x73, 0x70, 0x52, 0x32, 0xf1, 0x81, 0x20, 0x2c, 0xdf, 0x71, 0xd8, 0x60, 0x7d, 0x41, 0x3c, 0x56, 0x93, 0x63, 0xa7, 0x8a, 0xcb, 0xad, 0x39, 0xe1, 0x1d, 0xce, 0xe6, 0xca, 0x53, 0x6c} txOffsets= +peer1.org2.example.com | [80e 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [7ce 12-15 03:49:55.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4231aae10, header 0xc4231f4780 +orderer.example.com | [4c4 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000eef0 gate 1513309755731635100 evaluation starts +peer0.org1.example.com | [8fc 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9714b463]Move state message COMPLETED +peer0.org2.example.com | [7cf 12-15 03:49:55.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" +peer1.org2.example.com | [80f 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | txId=397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a locPointer=offset=70, bytesLength=2910 +orderer.example.com | [4c5 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eef0 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [8fd 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9714b463]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [810 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [397af471]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [4c6 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eef0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b78664b6f3271717459665054415039526b4136796f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455775768634e4d6a63784d6a457a4d444d7a4e5455770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424c493853704e726b4330415968693747496377353237505056364e75682b410a6b6f6b7670516355436746536d373374595a375141556c5446384e2f5642424e51436e464c326b72756b4f4c6431496f4237776e5a6e756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4376615250365a53446c0a64644a716e6e314d784c776b464f716d394d5877324c474f6b38584c72424e574d416f4743437147534d343942414d43413063414d455143494235334a6546780a4f665644446c692b4a6955636b463459376b4d64595550714778477373755948305570694169416f7159577a596a4f4c397071677874495430332f59717370630a62714569362f6c59326b4b30457447526e413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [8fe 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9714b463]send state message COMPLETED +peer0.org2.example.com | [7d0 12-15 03:49:55.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: de9ef411c70006180af162cc5c8eefaa84aa7eed682ac2c455cd2d3cee2f561e +peer1.org2.example.com | [811 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [397af471]Move state message TRANSACTION +orderer.example.com | [4c7 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +peer1.org1.example.com | ] +peer0.org1.example.com | [8ff 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9714b463]Received message COMPLETED from shim +peer0.org2.example.com | [7d1 12-15 03:49:55.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [de9ef411c70006180af162cc5c8eefaa84aa7eed682ac2c455cd2d3cee2f561e] +peer1.org2.example.com | [812 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [397af471]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [4c8 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eef0 principal matched by identity 0 +peer0.org2.example.com | [7d2 12-15 03:49:55.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [813 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [7c1 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55594, bytesLength=2910] for tx ID: [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] to index +orderer.example.com | [4c9 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 bd 5c 5b b3 5f 33 24 75 a7 5c 33 ff c3 a0 2e 60 |.\[._3$u.\3....`| +peer0.org1.example.com | [900 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9714b463]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [7c2 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55594, bytesLength=2910] for tx number:[0] ID: [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] to blockNumTranNum index +peer0.org2.example.com | [7d3 12-15 03:49:55.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [de9ef411c70006180af162cc5c8eefaa84aa7eed682ac2c455cd2d3cee2f561e] +peer1.org2.example.com | [814 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [397af471]sending state message TRANSACTION +orderer.example.com | 00000010 02 b6 b3 e3 12 8b ad 19 4b 55 e5 75 b0 8c 87 4e |........KU.u...N| +peer0.org1.example.com | [901 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [7d4 12-15 03:49:55.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: de9ef411c70006180af162cc5c8eefaa84aa7eed682ac2c455cd2d3cee2f561e channel id: businesschannel +orderer.example.com | [4ca 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 9b ec d5 2a d3 c0 d4 32 36 55 ba |0E.!....*...26U.| +peer1.org2.example.com | [815 12-15 03:49:54.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [397af471]Received message TRANSACTION from shim +peer1.org1.example.com | [7c3 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60300], isChainEmpty=[false], lastBlockNumber=[6] +peer0.org1.example.com | [902 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf, channelID:businesschannel +orderer.example.com | 00000010 22 54 79 79 1d c0 4e e9 ae 42 41 f3 2b 73 e8 b0 |"Tyy..N..BA.+s..| +peer1.org2.example.com | [816 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [397af471]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [7d5 12-15 03:49:55.27 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=de9ef411c70006180af162cc5c8eefaa84aa7eed682ac2c455cd2d3cee2f561e,syscc=true,proposal=0xc4231aae10,canname=lscc:1.1.0 +orderer.example.com | 00000020 6c 0c 1a d2 15 02 20 69 e5 c0 5c 04 19 3d 97 8f |l..... i..\..=..| +peer0.org1.example.com | [903 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [817 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [397af471]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | 00000030 f4 7b 2d 6a 1d 03 19 73 27 9e 52 a9 5d b9 65 75 |.{-j...s'.R.].eu| +peer0.org1.example.com | [904 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [7c4 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 6 +orderer.example.com | 00000040 5a 08 1a d4 4b bf da |Z...K..| +peer0.org2.example.com | [7d6 12-15 03:49:55.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer1.org2.example.com | [818 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [397af471]Sending GET_STATE +peer0.org1.example.com | [905 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | [4cb 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eef0 principal evaluation succeeds for identity 0 +peer1.org1.example.com | [7c5 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 6 +peer1.org2.example.com | [819 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [397af471]Received message GET_STATE from shim +peer0.org2.example.com | [7d7 12-15 03:49:55.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [906 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf] +orderer.example.com | [4cc 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000eef0 gate 1513309755731635100 evaluation succeeds +peer1.org2.example.com | [81a 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [397af471]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [7d8 12-15 03:49:55.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer0.org1.example.com | [907 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [4cd 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [81b 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [397af471]Received GET_STATE, invoking get state from ledger +peer1.org1.example.com | [7c6 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) +peer0.org2.example.com | [7d9 12-15 03:49:55.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [de9ef411]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [4ce 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [908 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf channel id: businesschannel chaincode id: name:"lscc" +peer0.org2.example.com | [7da 12-15 03:49:55.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [4cf 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer1.org2.example.com | [81c 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [909 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +peer1.org1.example.com | [7c7 12-15 03:49:56.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database +peer1.org2.example.com | [81d 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [397af471] getting state for chaincode lscc, key mycc, channel businesschannel +orderer.example.com | [4d0 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [7db 12-15 03:49:55.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [90a 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf channel id: businesschannel version: 1.1.0 +peer1.org2.example.com | [81e 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | [4d1 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [7c8 12-15 03:49:56.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [7dc 12-15 03:49:55.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [de9ef411]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [81f 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [397af471]Got state. Sending RESPONSE +orderer.example.com | [4d2 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [7c9 12-15 03:49:56.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [820 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [397af471]handleGetState serial send RESPONSE +orderer.example.com | [4d3 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [7dd 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de9ef411]Move state message TRANSACTION +peer0.org1.example.com | [90b 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf,syscc=true,proposal=0xc423ac4410,canname=escc:1.1.0 +peer1.org2.example.com | [821 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [397af471]Received message RESPONSE from shim +orderer.example.com | [4d4 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [7ca 12-15 03:49:56.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +peer0.org2.example.com | [7de 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [de9ef411]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [822 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [397af471]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [90c 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer1.org1.example.com | [7cb 12-15 03:49:56.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer1.org2.example.com | [823 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [397af471]before send +peer0.org2.example.com | [7df 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [4d5 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [90d 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [824 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [397af471]after send +peer0.org2.example.com | [7e0 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de9ef411]sending state message TRANSACTION +peer1.org1.example.com | [7cc 12-15 03:49:56.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [825 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [397af471]Received RESPONSE, communicated (state:ready) +orderer.example.com | [4d6 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer0.org2.example.com | [7e1 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de9ef411]Received message TRANSACTION from shim +peer1.org2.example.com | [826 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [397af471]GetState received payload RESPONSE +peer1.org1.example.com | [7cd 12-15 03:49:56.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database +peer0.org1.example.com | [90e 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org2.example.com | [7e2 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [de9ef411]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [827 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [397af471]Transaction completed. Sending COMPLETED +orderer.example.com | [4d7 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org1.example.com | [7ce 12-15 03:49:56.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +peer1.org2.example.com | [828 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [397af471]Move state message COMPLETED +peer0.org2.example.com | [7e3 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [de9ef411]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [90f 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9714b463]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [829 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [397af471]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [4d8 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org1.example.com | [7cf 12-15 03:49:56.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +peer0.org1.example.com | [910 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [82a 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [397af471]send state message COMPLETED +peer0.org2.example.com | [7e4 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [de9ef411]Sending GET_STATE +peer1.org1.example.com | [7d0 12-15 03:49:56.79 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | [911 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [4d9 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer1.org2.example.com | [82b 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [397af471]Received message COMPLETED from shim +peer1.org1.example.com | [7d1 12-15 03:49:56.79 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a +orderer.example.com | [4da 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [912 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9714b463]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [7e5 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de9ef411]Received message GET_STATE from shim +peer1.org2.example.com | [82c 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [397af471]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [4db 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [7d2 12-15 03:49:56.79 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org2.example.com | [82d 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [913 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9714b463]Move state message TRANSACTION +orderer.example.com | [4dc 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [7e6 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [de9ef411]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [7d3 12-15 03:49:56.79 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [82e 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a, channelID:businesschannel +peer0.org1.example.com | [914 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9714b463]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [7e7 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [de9ef411]Received GET_STATE, invoking get state from ledger +orderer.example.com | [4dd 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [7d4 12-15 03:49:56.79 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [82f 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [7e8 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [915 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [7d5 12-15 03:49:56.79 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [830 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInsantiationPolicy.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +orderer.example.com | [4de 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [7e9 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [de9ef411] getting state for chaincode lscc, key mycc, channel businesschannel +peer0.org1.example.com | [916 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9714b463]sending state message TRANSACTION +peer1.org1.example.com | [7d6 12-15 03:49:56.79 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +orderer.example.com | [4df 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [831 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a channel id: businesschannel version: 1.0 +peer0.org1.example.com | [917 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9714b463]Received message TRANSACTION from shim +peer0.org2.example.com | [7ea 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | [4e0 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [7eb 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [de9ef411]Got state. Sending RESPONSE +peer1.org1.example.com | [7d7 12-15 03:49:56.79 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [832 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a,syscc=false,proposal=0xc4220c2000,canname=mycc:1.0 +peer0.org1.example.com | [918 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9714b463]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [7ec 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [de9ef411]handleGetState serial send RESPONSE +orderer.example.com | [4e1 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [7d8 12-15 03:49:56.79 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [833 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 +peer0.org1.example.com | [919 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9714b463]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [4e2 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [7d9 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [7ed 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de9ef411]Received message RESPONSE from shim +peer1.org2.example.com | [834 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [91a 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org1.example.com | [7da 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +orderer.example.com | [4e3 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [91b 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org2.example.com | [835 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +peer0.org2.example.com | [7ee 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [de9ef411]Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | [4e4 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [91c 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9714b463]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [836 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [397af471]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [4e5 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org2.example.com | [7ef 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [de9ef411]before send +peer1.org2.example.com | [837 12-15 03:49:54.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [91d 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9714b463]Move state message COMPLETED +orderer.example.com | [4e6 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [91e 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9714b463]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [4e7 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [7f0 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [de9ef411]after send +orderer.example.com | [4e8 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [838 12-15 03:49:54.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [91f 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9714b463]send state message COMPLETED +orderer.example.com | [4e9 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org1.example.com | [920 12-15 03:49:55.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9714b463]Received message COMPLETED from shim +peer1.org2.example.com | [839 12-15 03:49:54.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [397af471]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [7f1 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [de9ef411]Received RESPONSE, communicated (state:ready) +orderer.example.com | [4ea 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [921 12-15 03:49:55.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9714b463]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [83a 12-15 03:49:54.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [397af471]Move state message TRANSACTION +orderer.example.com | [4eb 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [7f2 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [de9ef411]GetState received payload RESPONSE +peer0.org1.example.com | [922 12-15 03:49:55.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf]HandleMessage- COMPLETED. Notify +orderer.example.com | [4ec 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [923 12-15 03:49:55.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf, channelID:businesschannel +peer1.org2.example.com | [83b 12-15 03:49:54.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [397af471]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [924 12-15 03:49:55.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [4ed 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [925 12-15 03:49:55.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [83c 12-15 03:49:54.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [7f3 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de9ef411]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [926 12-15 03:49:55.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer1.org2.example.com | [83d 12-15 03:49:54.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [397af471]sending state message TRANSACTION +orderer.example.com | [4ee 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [927 12-15 03:49:55.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf] +peer0.org2.example.com | [7f4 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de9ef411]Move state message COMPLETED +peer1.org2.example.com | [83e 12-15 03:49:54.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [397af471]Received message GET_STATE from shim +peer0.org1.example.com | [928 12-15 03:49:55.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40950) +peer0.org1.example.com | [929 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40952 +peer0.org1.example.com | [92a 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423a458f0 +peer0.org1.example.com | [92b 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [4ef 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [7f5 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [de9ef411]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [83f 12-15 03:49:54.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [397af471]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [92c 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [4f0 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [840 12-15 03:49:54.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [397af471]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [92d 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +peer0.org2.example.com | [7f6 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de9ef411]send state message COMPLETED +peer1.org2.example.com | [841 12-15 03:49:54.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [92e 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [7f7 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de9ef411]Received message COMPLETED from shim +peer1.org2.example.com | [842 12-15 03:49:54.66 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [397af471] getting state for chaincode mycc, key a, channel businesschannel +peer0.org1.example.com | [92f 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [4f1 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [930 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4239319f0, header 0xc423a45920 +peer1.org2.example.com | [843 12-15 03:49:54.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=a +peer0.org1.example.com | [931 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org2.example.com | [7f8 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [de9ef411]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [4f2 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [932 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f +peer1.org2.example.com | [844 12-15 03:49:54.66 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [397af471]Got state. Sending RESPONSE +peer0.org1.example.com | [933 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f] +peer0.org2.example.com | [7f9 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [de9ef411c70006180af162cc5c8eefaa84aa7eed682ac2c455cd2d3cee2f561e]HandleMessage- COMPLETED. Notify +orderer.example.com | [4f3 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [934 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [845 12-15 03:49:54.66 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [397af471]handleGetState serial send RESPONSE +orderer.example.com | [4f4 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org2.example.com | [7fa 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:de9ef411c70006180af162cc5c8eefaa84aa7eed682ac2c455cd2d3cee2f561e, channelID:businesschannel +orderer.example.com | [4f5 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +peer0.org1.example.com | [935 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f] +peer1.org2.example.com | [846 12-15 03:49:54.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [397af471]Received message GET_STATE from shim +peer0.org2.example.com | [7fb 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [847 12-15 03:49:54.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [397af471]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | [4f6 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [936 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f channel id: businesschannel +peer0.org2.example.com | [7fc 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInsantiationPolicy.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer0.org1.example.com | [937 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f channel id: businesschannel version: 1.1.0 +peer1.org2.example.com | [848 12-15 03:49:54.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [397af471]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [938 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f,syscc=true,proposal=0xc4239319f0,canname=lscc:1.1.0 +orderer.example.com | MIICLzCCAdWgAwIBAgIQGXf5zEgjlejkE1rJW2znwDAKBggqhkjOPQQDAjBpMQsw +peer1.org2.example.com | [849 12-15 03:49:54.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [7fd 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: de9ef411c70006180af162cc5c8eefaa84aa7eed682ac2c455cd2d3cee2f561e channel id: businesschannel version: 1.0 +peer0.org1.example.com | [939 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer0.org2.example.com | [7fe 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=de9ef411c70006180af162cc5c8eefaa84aa7eed682ac2c455cd2d3cee2f561e,syscc=false,proposal=0xc4231aae10,canname=mycc:1.0 +peer1.org2.example.com | [84a 12-15 03:49:54.66 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [397af471] getting state for chaincode mycc, key b, channel businesschannel +peer0.org1.example.com | [93a 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [84b 12-15 03:49:54.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=b +peer0.org2.example.com | [7ff 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 +peer0.org1.example.com | [93b 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org2.example.com | [84c 12-15 03:49:54.66 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [397af471]Got state. Sending RESPONSE +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowaTELMAkGA1UE +peer0.org2.example.com | [800 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [93c 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3c6b9430]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [84d 12-15 03:49:54.66 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [397af471]handleGetState serial send RESPONSE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org2.example.com | [801 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +peer1.org2.example.com | [84e 12-15 03:49:54.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [397af471]Received message PUT_STATE from shim +peer0.org2.example.com | [802 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [de9ef411]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +peer1.org2.example.com | [84f 12-15 03:49:54.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [397af471]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org1.example.com | [93d 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFSKPRsXnXvaTTqRKjkTRYYoPjGg +peer1.org2.example.com | [850 12-15 03:49:54.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [93e 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [851 12-15 03:49:54.68 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [397af471]state is ready +orderer.example.com | TgXRAoMQwI+9AaLXTSL+AsApwlxedr+PJ+UgfBNcxey226YSZRJqLeiH/TajXzBd +peer0.org2.example.com | [803 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [852 12-15 03:49:54.68 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [397af471]Completed PUT_STATE. Sending RESPONSE +peer0.org2.example.com | [804 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [805 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [de9ef411]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [806 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de9ef411]Move state message TRANSACTION +peer0.org2.example.com | [807 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [de9ef411]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [808 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [809 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de9ef411]sending state message TRANSACTION +peer0.org2.example.com | [80a 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de9ef411]Received message GET_STATE from shim +peer0.org2.example.com | [80b 12-15 03:49:55.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [de9ef411]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [80c 12-15 03:49:55.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [de9ef411]Received GET_STATE, invoking get state from ledger +peer0.org2.example.com | [80d 12-15 03:49:55.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +peer0.org1.example.com | [93f 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3c6b9430]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [940 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c6b9430]Move state message TRANSACTION +peer0.org2.example.com | [80e 12-15 03:49:55.29 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [de9ef411] getting state for chaincode mycc, key a, channel businesschannel +peer0.org2.example.com | [80f 12-15 03:49:55.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=a +peer0.org2.example.com | [810 12-15 03:49:55.29 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [de9ef411]Got state. Sending RESPONSE +peer0.org2.example.com | [811 12-15 03:49:55.29 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [de9ef411]handleGetState serial send RESPONSE +peer1.org2.example.com | [853 12-15 03:49:54.68 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [397af471]enterBusyState trigger event RESPONSE +peer0.org2.example.com | [812 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de9ef411]Received message COMPLETED from shim +orderer.example.com | Af8wKQYDVR0OBCIEIPxyg8RiuCl5W+wOoXUqeRhWBcR2XF2JtWJ5qtJMQ3Y1MAoG +peer0.org1.example.com | [941 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c6b9430]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [813 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [de9ef411]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | CCqGSM49BAMCA0gAMEUCIQCoRrlZYPh0Qnsp3Z9KitmTDkRqi6JyR4RLiOyfv8Tf +peer0.org2.example.com | [814 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [de9ef411c70006180af162cc5c8eefaa84aa7eed682ac2c455cd2d3cee2f561e]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [854 12-15 03:49:54.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [397af471]Move state message RESPONSE +peer0.org2.example.com | [815 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:de9ef411c70006180af162cc5c8eefaa84aa7eed682ac2c455cd2d3cee2f561e, channelID:businesschannel +peer1.org2.example.com | [855 12-15 03:49:54.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [397af471]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +orderer.example.com | QgIgdHbFqXGTZ0HFQmknUFd5DD4TTltv8Ijmfm8J1skS4jc= +peer0.org1.example.com | [942 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [816 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [856 12-15 03:49:54.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [817 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [857 12-15 03:49:54.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [397af471]sending state message RESPONSE +peer0.org1.example.com | [943 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c6b9430]sending state message TRANSACTION +peer0.org2.example.com | [818 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | [4f7 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [858 12-15 03:49:54.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [397af471]Received message PUT_STATE from shim +peer0.org1.example.com | [944 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c6b9430]Received message TRANSACTION from shim +peer1.org2.example.com | [859 12-15 03:49:54.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [397af471]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +orderer.example.com | MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [945 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3c6b9430]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [819 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [de9ef411c70006180af162cc5c8eefaa84aa7eed682ac2c455cd2d3cee2f561e] +peer1.org2.example.com | [85a 12-15 03:49:54.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [946 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3c6b9430]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [81a 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org2.example.com | [85b 12-15 03:49:54.69 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [397af471]state is ready +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [947 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [3c6b9430]Sending GET_STATE +peer1.org2.example.com | [85c 12-15 03:49:54.69 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [397af471]Completed PUT_STATE. Sending RESPONSE +peer0.org1.example.com | [948 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c6b9430]Received message GET_STATE from shim +peer1.org2.example.com | [85d 12-15 03:49:54.69 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [397af471]enterBusyState trigger event RESPONSE +peer0.org1.example.com | [949 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c6b9430]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [81b 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: de9ef411c70006180af162cc5c8eefaa84aa7eed682ac2c455cd2d3cee2f561e channel id: businesschannel chaincode id: name:"mycc" +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +peer1.org2.example.com | [85e 12-15 03:49:54.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [397af471]Move state message RESPONSE +peer0.org1.example.com | [94a 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [3c6b9430]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [94b 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [85f 12-15 03:49:54.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [397af471]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [94c 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3c6b9430] getting state for chaincode lscc, key mycc, channel businesschannel +peer0.org2.example.com | [81c 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org2.example.com | [860 12-15 03:49:54.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +peer0.org2.example.com | [81d 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: de9ef411c70006180af162cc5c8eefaa84aa7eed682ac2c455cd2d3cee2f561e channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [94d 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [94e 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3c6b9430]Got state. Sending RESPONSE +orderer.example.com | ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org2.example.com | [81e 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=de9ef411c70006180af162cc5c8eefaa84aa7eed682ac2c455cd2d3cee2f561e,syscc=true,proposal=0xc4231aae10,canname=escc:1.1.0 +peer1.org2.example.com | [861 12-15 03:49:54.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [397af471]sending state message RESPONSE +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +peer1.org2.example.com | [862 12-15 03:49:54.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [397af471]Received message COMPLETED from shim +peer0.org1.example.com | [94f 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [3c6b9430]handleGetState serial send RESPONSE +orderer.example.com | Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +peer1.org2.example.com | [863 12-15 03:49:54.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [397af471]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [950 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c6b9430]Received message RESPONSE from shim +peer0.org2.example.com | [81f 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +orderer.example.com | sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +peer1.org2.example.com | [864 12-15 03:49:54.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [951 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3c6b9430]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org2.example.com | [820 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [865 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a, channelID:businesschannel +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [952 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [3c6b9430]before send +peer1.org2.example.com | [866 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [821 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [953 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [3c6b9430]after send +peer0.org2.example.com | [822 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [de9ef411]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [867 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [954 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [3c6b9430]Received RESPONSE, communicated (state:ready) +orderer.example.com | [4f8 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [823 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [868 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org2.example.com | [824 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +peer0.org1.example.com | [955 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [3c6b9430]GetState received payload RESPONSE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org2.example.com | [869 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] +peer0.org2.example.com | [825 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [de9ef411]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org2.example.com | [86a 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +peer0.org1.example.com | [956 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c6b9430]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [826 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de9ef411]Move state message TRANSACTION +orderer.example.com | ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org2.example.com | [86b 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a channel id: businesschannel chaincode id: name:"mycc" +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +peer0.org1.example.com | [957 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c6b9430]Move state message COMPLETED +peer0.org2.example.com | [827 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [de9ef411]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [86c 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +orderer.example.com | Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +peer1.org2.example.com | [86d 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [958 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3c6b9430]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +peer0.org1.example.com | [959 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c6b9430]send state message COMPLETED +peer0.org2.example.com | [828 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [86e 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a,syscc=true,proposal=0xc4220c2000,canname=escc:1.1.0 +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [95a 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c6b9430]Received message COMPLETED from shim +peer0.org2.example.com | [829 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de9ef411]sending state message TRANSACTION +orderer.example.com | [4f9 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org2.example.com | [82a 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de9ef411]Received message TRANSACTION from shim +peer1.org2.example.com | [86f 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +orderer.example.com | [4fa 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org1.example.com | [95b 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c6b9430]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [4fb 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [870 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [4fc 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [82b 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [de9ef411]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [95c 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f]HandleMessage- COMPLETED. Notify +orderer.example.com | [4fd 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [871 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [95d 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f, channelID:businesschannel +orderer.example.com | [4fe 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [82c 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [de9ef411]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [872 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [397af471]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [95e 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [4ff 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [873 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [500 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org2.example.com | [874 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [501 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [875 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [397af471]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [95f 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [82d 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [502 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org2.example.com | [876 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [397af471]Move state message TRANSACTION +peer1.org2.example.com | [877 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [397af471]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [82e 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [503 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org2.example.com | [878 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [504 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +peer1.org2.example.com | [879 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [397af471]sending state message TRANSACTION +peer0.org1.example.com | [960 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | [505 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [82f 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de9ef411]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [87a 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [397af471]Received message TRANSACTION from shim +orderer.example.com | MIICQzCCAemgAwIBAgIQShjAwe+6sxoSMZ8UrYKOcTAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | [961 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f] +peer1.org2.example.com | [87b 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [397af471]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [830 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de9ef411]Move state message COMPLETED +peer0.org1.example.com | [962 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org2.example.com | [87c 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [397af471]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org2.example.com | [87d 12-15 03:49:54.70 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org2.example.com | [831 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [de9ef411]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa +peer1.org2.example.com | [87e 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org2.example.com | [832 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de9ef411]send state message COMPLETED +peer0.org1.example.com | [963 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f channel id: businesschannel chaincode id: name:"lscc" +peer1.org2.example.com | [87f 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [397af471]Transaction completed. Sending COMPLETED +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer1.org2.example.com | [880 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [397af471]Move state message COMPLETED +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer0.org1.example.com | [964 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +peer0.org2.example.com | [833 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de9ef411]Received message COMPLETED from shim +peer1.org2.example.com | [881 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [397af471]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | GwyyfDLH07dFVkEvxJDGOKGevUcaYHphZvhzV78MBXVwIEGIENk7Zs8x+dx6iwIK +peer1.org2.example.com | [882 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [397af471]send state message COMPLETED +orderer.example.com | LOGmXxq/Wqd4qLs6kFyZvqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer1.org2.example.com | [883 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [397af471]Received message COMPLETED from shim +peer0.org1.example.com | [965 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f channel id: businesschannel version: 1.1.0 +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgsK9pE/plIOV10mqefUzE +peer1.org2.example.com | [884 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [397af471]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [834 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [de9ef411]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [966 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f,syscc=true,proposal=0xc4239319f0,canname=escc:1.1.0 +orderer.example.com | vCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAL7xXrYD1fkzcpxi +peer1.org2.example.com | [885 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a]HandleMessage- COMPLETED. Notify +orderer.example.com | yyZhFfEvMDWCoUicQw2b+c3GQ6OuAiA0KtNuH4yS4+c13W9Lsd28XNQK88FkwB2J +peer0.org2.example.com | [835 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [de9ef411c70006180af162cc5c8eefaa84aa7eed682ac2c455cd2d3cee2f561e]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [886 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a, channelID:businesschannel +orderer.example.com | QR9yhJE7rA== +peer0.org1.example.com | [967 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer1.org2.example.com | [887 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [836 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:de9ef411c70006180af162cc5c8eefaa84aa7eed682ac2c455cd2d3cee2f561e, channelID:businesschannel +peer1.org2.example.com | [888 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [506 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [889 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer1.org2.example.com | [88a 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] +peer0.org1.example.com | [968 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [88b 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:36206) +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [837 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [969 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer1.org2.example.com | [88c 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [838 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [96a 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3c6b9430]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [88d 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] +peer0.org2.example.com | [839 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [96b 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +peer0.org1.example.com | [96c 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [83a 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [de9ef411c70006180af162cc5c8eefaa84aa7eed682ac2c455cd2d3cee2f561e] +peer1.org2.example.com | [88e 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [83b 12-15 03:49:55.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:58240) +peer0.org1.example.com | [96d 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3c6b9430]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [88f 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [890 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421c73320 env 0xc421c6e870 txn 0 +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +peer0.org2.example.com | [83c 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org1.example.com | [96e 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c6b9430]Move state message TRANSACTION +peer0.org2.example.com | [83d 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +orderer.example.com | kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +peer1.org2.example.com | [891 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421c6e870 +peer0.org1.example.com | [96f 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c6b9430]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [83e 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4233a49e0 env 0xc4233930e0 txn 0 +peer0.org1.example.com | [970 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +peer1.org2.example.com | [892 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\342\214\315\321\005\020\260\211\363\247\002\"\017businesschannel*@397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv\nVLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7\nYoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2\n8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0\nN5+z/fTTfchGfLaCtzM=\n-----END CERTIFICATE-----\n\022\030 Gdw\361\301\302\000\t\355\326\265\210\224\222\212\001>\254\241\001\223[\016" +peer0.org2.example.com | [83f 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4233930e0 +orderer.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +peer0.org1.example.com | [971 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c6b9430]sending state message TRANSACTION +peer0.org2.example.com | [840 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\342\214\315\321\005\020\260\211\363\247\002\"\017businesschannel*@397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv\nVLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7\nYoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2\n8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0\nN5+z/fTTfchGfLaCtzM=\n-----END CERTIFICATE-----\n\022\030 Gdw\361\301\302\000\t\355\326\265\210\224\222\212\001>\254\241\001\223[\016" +peer1.org2.example.com | [893 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [894 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [841 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [972 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c6b9430]Received message TRANSACTION from shim +orderer.example.com | OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +peer1.org2.example.com | [895 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 73763341eb604cef734e4ac7c2ea77bc9d730c798fb96eb583c0637692a88acd} +peer0.org1.example.com | [973 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3c6b9430]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | bqEi6/lY2kK0EtGRnA== +peer1.org2.example.com | [896 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [842 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [974 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3c6b9430]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [843 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 73763341eb604cef734e4ac7c2ea77bc9d730c798fb96eb583c0637692a88acd} +peer0.org1.example.com | [975 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [976 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org2.example.com | [844 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [977 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c6b9430]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [845 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [978 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c6b9430]Move state message COMPLETED +peer1.org2.example.com | [897 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [846 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4233d6800, header channel_header:"\010\003\032\014\010\342\214\315\321\005\020\260\211\363\247\002\"\017businesschannel*@397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv\nVLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7\nYoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2\n8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0\nN5+z/fTTfchGfLaCtzM=\n-----END CERTIFICATE-----\n\022\030 Gdw\361\301\302\000\t\355\326\265\210\224\222\212\001>\254\241\001\223[\016" +orderer.example.com | [507 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [898 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422016000, header channel_header:"\010\003\032\014\010\342\214\315\321\005\020\260\211\363\247\002\"\017businesschannel*@397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv\nVLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7\nYoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2\n8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0\nN5+z/fTTfchGfLaCtzM=\n-----END CERTIFICATE-----\n\022\030 Gdw\361\301\302\000\t\355\326\265\210\224\222\212\001>\254\241\001\223[\016" +peer1.org2.example.com | [899 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [89a 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [979 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3c6b9430]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [847 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [848 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [97a 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c6b9430]send state message COMPLETED +peer1.org2.example.com | [89b 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org2.example.com | [849 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [97b 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c6b9430]Received message COMPLETED from shim +peer0.org2.example.com | [84a 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer1.org2.example.com | [89c 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [89d 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] +peer0.org1.example.com | [97c 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c6b9430]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +peer0.org2.example.com | [84b 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] +peer1.org2.example.com | [89e 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer0.org1.example.com | [97d 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [89f 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc421c6e870 envbytes 0xc422001c00 +peer0.org2.example.com | [84c 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer0.org1.example.com | [97e 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f, channelID:businesschannel +peer1.org2.example.com | [8a0 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [1ffa43dd-d31c-43c2-846e-52e725320138] +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [84d 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4233930e0 envbytes 0xc421ab3c00 +peer1.org2.example.com | [8a1 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [97f 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [8a2 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [1ffa43dd-d31c-43c2-846e-52e725320138] +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +peer0.org1.example.com | [980 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [84e 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [b4a3eec5-7ac9-4ea3-a744-7952638d1847] +orderer.example.com | kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +peer1.org2.example.com | [8a3 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422001c00 +peer0.org2.example.com | [84f 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [981 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +peer1.org2.example.com | [8a4 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [850 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [b4a3eec5-7ac9-4ea3-a744-7952638d1847] +peer0.org1.example.com | [982 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f] +peer0.org2.example.com | [851 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc421ab3c00 +orderer.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +orderer.example.com | OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +peer0.org2.example.com | [852 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [8a5 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] +peer0.org1.example.com | [983 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40952) +orderer.example.com | bqEi6/lY2kK0EtGRnA== +peer0.org2.example.com | [853 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [984 12-15 03:49:56.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40954 +peer1.org2.example.com | [8a6 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=d6b86c46-3d01-49ef-8d2b-feb4053c5baa,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer0.org2.example.com | [854 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=53731f68-9c22-46f8-9590-1cf496c52750,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer0.org1.example.com | [985 12-15 03:49:56.15 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423c1b830 +orderer.example.com | [508 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer0.org2.example.com | [855 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a chaindID businesschannel +peer1.org2.example.com | [8a7 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a chaindID businesschannel +orderer.example.com | [509 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [986 12-15 03:49:56.15 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [856 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer1.org2.example.com | [8a8 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer0.org1.example.com | [987 12-15 03:49:56.15 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [50a 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [988 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +peer0.org2.example.com | [857 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [858 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer0.org1.example.com | [989 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [8a9 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [859 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [53731f68]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [50b 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [98a 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [8aa 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer0.org2.example.com | [85a 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [50c 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [8ab 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d6b86c46]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [98b 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423ac4dc0, header 0xc423c10870 +orderer.example.com | [50d 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org2.example.com | [8ac 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [85b 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [53731f68]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [98c 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer1.org2.example.com | [8ad 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d6b86c46]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [50e 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [85c 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53731f68]Move state message TRANSACTION +peer0.org1.example.com | [98d 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa +orderer.example.com | [50f 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org2.example.com | [8ae 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d6b86c46]Move state message TRANSACTION +peer0.org1.example.com | [98e 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa] +peer0.org2.example.com | [85d 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [53731f68]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [510 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org2.example.com | [8af 12-15 03:49:56.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d6b86c46]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [85e 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [98f 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [8b0 12-15 03:49:56.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [85f 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53731f68]sending state message TRANSACTION +orderer.example.com | [511 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +peer1.org2.example.com | [8b1 12-15 03:49:56.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d6b86c46]sending state message TRANSACTION +peer0.org1.example.com | [990 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa] +peer1.org2.example.com | [8b2 12-15 03:49:56.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d6b86c46]Received message TRANSACTION from shim +peer0.org2.example.com | [860 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53731f68]Received message TRANSACTION from shim +peer0.org2.example.com | [861 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [53731f68]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [512 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [991 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa channel id: businesschannel +peer1.org2.example.com | [8b3 12-15 03:49:56.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d6b86c46]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [8b4 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d6b86c46]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [862 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [53731f68]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | MIICQzCCAeqgAwIBAgIRAMt+4ybOK1r7B8eavLVTMBUwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [863 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org2.example.com | [8b5 12-15 03:49:56.80 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [992 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa channel id: businesschannel version: 1.1.0 +peer0.org2.example.com | [864 12-15 03:49:56.81 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 | [865 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org1.example.com | [993 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa,syscc=true,proposal=0xc423ac4dc0,canname=lscc:1.1.0 +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [8b6 12-15 03:49:56.80 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 | [994 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer1.org2.example.com | [8b7 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org2.example.com | [866 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53731f68]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [995 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +peer1.org2.example.com | [8b8 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d6b86c46]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [867 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53731f68]Move state message COMPLETED +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +peer1.org2.example.com | [8b9 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d6b86c46]Move state message COMPLETED +peer0.org2.example.com | [868 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [53731f68]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer0.org2.example.com | [869 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53731f68]send state message COMPLETED +peer0.org1.example.com | [996 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer1.org2.example.com | [8ba 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d6b86c46]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | BPGrtJtHj1Ql02gq7I0ZQQKJwvtZhp0t3rCwF1cFILTHIBM4phJ/ZYJQa1lb12pO +peer0.org1.example.com | [997 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c62d38cb]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | sxSxuEvRGTFcZXtunUc0SeWjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer0.org1.example.com | [998 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [86a 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53731f68]Received message COMPLETED from shim +peer0.org1.example.com | [999 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [8bb 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d6b86c46]send state message COMPLETED +peer0.org1.example.com | [99a 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c62d38cb]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [86b 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [53731f68]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICSqVyrJerF7YoXDKKeV +peer1.org2.example.com | [8bc 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d6b86c46]Received message COMPLETED from shim +peer0.org1.example.com | [99b 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62d38cb]Move state message TRANSACTION +orderer.example.com | 2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCIB+psiek7FqP18l1 +peer0.org1.example.com | [99c 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62d38cb]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [86c 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [53731f68-9c22-46f8-9590-1cf496c52750]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [8bd 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d6b86c46]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [99d 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [99e 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62d38cb]sending state message TRANSACTION +peer0.org1.example.com | [99f 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62d38cb]Received message TRANSACTION from shim +peer1.org2.example.com | [8be 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d6b86c46-3d01-49ef-8d2b-feb4053c5baa]HandleMessage- COMPLETED. Notify +orderer.example.com | 3s2anbtfpiGTHbAnm2BihpD9sRPjAiAIvsdyfn+nb2bCQBK6sodbO+LxSkuZulkP +peer0.org2.example.com | [86d 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:53731f68-9c22-46f8-9590-1cf496c52750, channelID:businesschannel +peer0.org1.example.com | [9a0 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c62d38cb]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [8bf 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d6b86c46-3d01-49ef-8d2b-feb4053c5baa, channelID:businesschannel +orderer.example.com | oMR3yCH/eA== +peer0.org1.example.com | [9a1 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c62d38cb]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [86e 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [9a2 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c62d38cb]Sending GET_STATE +peer0.org2.example.com | [86f 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] +peer1.org2.example.com | [8c0 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [513 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [9a3 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62d38cb]Received message GET_STATE from shim +peer0.org1.example.com | [9a4 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62d38cb]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [9a5 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c62d38cb]Received GET_STATE, invoking get state from ledger +orderer.example.com | MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [9a7 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c62d38cb] getting state for chaincode lscc, key mycc, channel businesschannel +peer1.org2.example.com | [8c1 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] +peer0.org2.example.com | [870 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc421ab3c00 +peer0.org1.example.com | [9a8 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org2.example.com | [8c2 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422001c00 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [9a9 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c62d38cb]Got state. Sending RESPONSE +peer1.org2.example.com | [8c3 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc421c6e870 envbytes 0xc422001c00 +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [871 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4233930e0 envbytes 0xc421ab3c00 +peer0.org1.example.com | [9aa 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c62d38cb]handleGetState serial send RESPONSE +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +peer0.org1.example.com | [9ab 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62d38cb]Received message RESPONSE from shim +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [872 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4233a49e0 env 0xc4233930e0 txn 0 +peer1.org2.example.com | [8c4 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421c73320 env 0xc421c6e870 txn 0 +peer0.org1.example.com | [9ac 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c62d38cb]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org2.example.com | [8c5 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org2.example.com | [873 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [9ad 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c62d38cb]before send +peer0.org2.example.com | [874 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org2.example.com | [8c6 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org1.example.com | [9ae 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c62d38cb]after send +peer0.org1.example.com | [9af 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [c62d38cb]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [9b0 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c62d38cb]GetState received payload RESPONSE +peer0.org1.example.com | [9b1 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62d38cb]Transaction completed. Sending COMPLETED +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +peer1.org2.example.com | [8c7 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] +peer0.org1.example.com | [9b2 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62d38cb]Move state message COMPLETED +peer0.org2.example.com | [875 12-15 03:49:56.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] +peer1.org2.example.com | [8c8 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [9b3 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c62d38cb]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [9b4 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62d38cb]send state message COMPLETED +peer0.org1.example.com | [9a6 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [8c9 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [6] +peer0.org1.example.com | [9b5 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62d38cb]Received message COMPLETED from shim +peer0.org2.example.com | [876 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +peer0.org1.example.com | [9b6 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62d38cb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [877 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [6] +peer1.org2.example.com | [8ca 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +peer0.org1.example.com | [9b7 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [878 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org1.example.com | [9b8 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa, channelID:businesschannel +orderer.example.com | YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +peer1.org2.example.com | [8cb 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +peer0.org2.example.com | [879 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +orderer.example.com | 8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +peer0.org1.example.com | [9b9 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [8cc 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org2.example.com | [87a 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [9ba 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [87b 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer0.org1.example.com | [9bb 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [9bc 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa] +peer0.org2.example.com | [87c 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=a +orderer.example.com | N5+z/fTTfchGfLaCtzM= +peer0.org1.example.com | [9bd 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org2.example.com | [8cd 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer0.org2.example.com | [87d 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +peer0.org2.example.com | [87e 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=b +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [87f 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +peer0.org1.example.com | [9be 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa channel id: businesschannel chaincode id: name:"lscc" +peer0.org2.example.com | [880 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] marked as valid by state validator +orderer.example.com | [514 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [8ce 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=a +peer0.org2.example.com | [881 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +orderer.example.com | MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [9bf 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +peer0.org2.example.com | [882 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer1.org2.example.com | [8cf 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +peer0.org1.example.com | [9c0 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa channel id: businesschannel version: 1.1.0 +peer0.org2.example.com | [883 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [8d0 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=b +peer0.org2.example.com | [884 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [9c1 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa,syscc=true,proposal=0xc423ac4dc0,canname=escc:1.1.0 +peer1.org2.example.com | [8d1 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +peer0.org2.example.com | [885 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [6] +peer0.org2.example.com | [886 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xd4, 0x4a, 0x73, 0x70, 0x52, 0x32, 0xf1, 0x81, 0x20, 0x2c, 0xdf, 0x71, 0xd8, 0x60, 0x7d, 0x41, 0x3c, 0x56, 0x93, 0x63, 0xa7, 0x8a, 0xcb, 0xad, 0x39, 0xe1, 0x1d, 0xce, 0xe6, 0xca, 0x53, 0x6c} txOffsets= +peer1.org2.example.com | [8d2 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] marked as valid by state validator +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +peer0.org1.example.com | [9c2 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org2.example.com | txId=397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a locPointer=offset=70, bytesLength=2910 +peer0.org1.example.com | [9c3 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [9c4 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer1.org2.example.com | [8d3 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer0.org2.example.com | ] +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [8d4 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org2.example.com | [887 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55594, bytesLength=2910] for tx ID: [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] to index +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [9c5 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c62d38cb]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [888 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55594, bytesLength=2910] for tx number:[0] ID: [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] to blockNumTranNum index +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +peer1.org2.example.com | [8d5 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org1.example.com | [9c6 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [889 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60300], isChainEmpty=[false], lastBlockNumber=[6] +orderer.example.com | VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +peer0.org1.example.com | [9c7 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [88a 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 6 +peer1.org2.example.com | [8d6 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage +peer0.org2.example.com | [88b 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 6 +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +peer1.org2.example.com | [8d7 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [6] +peer0.org2.example.com | [88c 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) +peer0.org1.example.com | [9c8 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c62d38cb]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [8d8 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xd4, 0x4a, 0x73, 0x70, 0x52, 0x32, 0xf1, 0x81, 0x20, 0x2c, 0xdf, 0x71, 0xd8, 0x60, 0x7d, 0x41, 0x3c, 0x56, 0x93, 0x63, 0xa7, 0x8a, 0xcb, 0xad, 0x39, 0xe1, 0x1d, 0xce, 0xe6, 0xca, 0x53, 0x6c} txOffsets= +peer0.org2.example.com | [88d 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database +peer0.org1.example.com | [9c9 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62d38cb]Move state message TRANSACTION +peer1.org2.example.com | txId=397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a locPointer=offset=70, bytesLength=2910 +orderer.example.com | YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +peer0.org2.example.com | [88e 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database peer1.org2.example.com | ] -orderer.example.com | [4eb 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [8dd 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55561, bytesLength=2907] for tx ID: [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] to index -peer0.org1.example.com | [90c 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [161341c3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [4ec 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [90d 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [161341c3]send state message COMPLETED -peer1.org2.example.com | [8de 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55561, bytesLength=2907] for tx number:[0] ID: [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] to blockNumTranNum index -peer0.org1.example.com | [90e 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [161341c3]Received message COMPLETED from shim -peer0.org1.example.com | [90f 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [161341c3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [4ed 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/ChannelCreationPolicy -peer0.org1.example.com | [910 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [911 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6, channelID:businesschannel -orderer.example.com | [4ee 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy -peer1.org2.example.com | [8df 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60263], isChainEmpty=[false], lastBlockNumber=[6] -peer0.org1.example.com | [912 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [4ef 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Admins -orderer.example.com | [4f0 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [913 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [8e0 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 6 -peer1.org2.example.com | [8e1 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 6 -peer1.org2.example.com | [8e2 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) -peer1.org2.example.com | [8e3 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database -peer1.org2.example.com | [8e4 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [8e5 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [914 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org2.example.com | [8e6 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer0.org1.example.com | [915 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6] -peer1.org2.example.com | [8e7 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer1.org2.example.com | [8e8 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [8e9 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database -peer1.org2.example.com | [8ea 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -orderer.example.com | [4f1 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [8eb 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -peer1.org2.example.com | [8ec 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [8ed 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a -peer0.org1.example.com | [916 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [4f2 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [8ee 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -orderer.example.com | [4f3 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org2.example.com | [8ef 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [8f0 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [8f1 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [917 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6 channel id: businesschannel chaincode id: name:"lscc" -peer1.org2.example.com | [8f2 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [4f4 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [8f3 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [918 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer1.org2.example.com | [8f4 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [919 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6 channel id: businesschannel version: 1.1.0 -orderer.example.com | [4f5 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [8f5 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [8f6 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [91a 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6,syscc=true,proposal=0xc421e23a90,canname=escc:1.1.0 -peer0.org1.example.com | [91b 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -orderer.example.com | [4f6 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [91c 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [91d 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -orderer.example.com | [4f7 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [4f8 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [4f9 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [91e 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [161341c3]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [4fa 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [4fb 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [91f 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [4fc 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [920 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [4fd 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [921 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [161341c3]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [4fe 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [922 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [161341c3]Move state message TRANSACTION -orderer.example.com | [4ff 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [923 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [161341c3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [500 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [924 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [501 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [502 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [925 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [161341c3]sending state message TRANSACTION -orderer.example.com | [503 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org1.example.com | [926 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [161341c3]Received message TRANSACTION from shim -orderer.example.com | [504 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [505 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [927 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [161341c3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [506 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [507 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [928 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [161341c3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [929 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [508 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [92a 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [92b 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [161341c3]Transaction completed. Sending COMPLETED -orderer.example.com | [509 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [50a 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [92c 12-12 14:20:18.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [161341c3]Move state message COMPLETED -orderer.example.com | [50b 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [92d 12-12 14:20:18.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [161341c3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [92e 12-12 14:20:18.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [161341c3]send state message COMPLETED -peer0.org1.example.com | [92f 12-12 14:20:18.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [161341c3]Received message COMPLETED from shim -peer0.org1.example.com | [930 12-12 14:20:18.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [161341c3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [50c 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [50d 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [931 12-12 14:20:18.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [932 12-12 14:20:18.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6, channelID:businesschannel -orderer.example.com | [50e 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [933 12-12 14:20:18.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [50f 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [510 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [934 12-12 14:20:18.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [511 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [935 12-12 14:20:18.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | [512 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org1.example.com | [936 12-12 14:20:18.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6] -orderer.example.com | [513 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -peer0.org1.example.com | [937 12-12 14:20:18.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36772) -orderer.example.com | [514 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [938 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36774 -peer0.org1.example.com | [939 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42290f530 -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer0.org1.example.com | [93a 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [93b 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer0.org1.example.com | [93c 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer0.org1.example.com | [93d 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -orderer.example.com | +8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -peer0.org1.example.com | [93e 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -peer0.org1.example.com | [93f 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4226cd400, header 0xc42290f560 -peer0.org1.example.com | [940 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [941 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52 -orderer.example.com | uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -peer0.org1.example.com | [942 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52] -orderer.example.com | cNvAXU8LlQ== -peer0.org1.example.com | [943 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [944 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52] -peer0.org1.example.com | [945 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52 channel id: businesschannel -peer0.org1.example.com | [946 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52 channel id: businesschannel version: 1.1.0 -orderer.example.com | [515 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [947 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52,syscc=true,proposal=0xc4226cd400,canname=lscc:1.1.0 -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [948 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [949 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [94a 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org1.example.com | [94b 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [632f85f1]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer0.org1.example.com | [94c 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -peer0.org1.example.com | [94d 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -peer0.org1.example.com | [94e 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [632f85f1]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [94f 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632f85f1]Move state message TRANSACTION -orderer.example.com | ZM8rwLlgV6XUeTLW -peer0.org1.example.com | [950 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632f85f1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [516 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [951 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [952 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632f85f1]sending state message TRANSACTION -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [953 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632f85f1]Received message TRANSACTION from shim -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [954 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [632f85f1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -peer0.org1.example.com | [955 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [632f85f1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -peer0.org1.example.com | [956 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [632f85f1]Sending GET_STATE -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -peer0.org1.example.com | [957 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632f85f1]Received message GET_STATE from shim -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -peer0.org1.example.com | [958 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632f85f1]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [959 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [632f85f1]Received GET_STATE, invoking get state from ledger -orderer.example.com | ZM8rwLlgV6XUeTLW -peer0.org1.example.com | [95a 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [95b 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [632f85f1] getting state for chaincode lscc, key mycc, channel businesschannel -orderer.example.com | [517 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org1.example.com | [95c 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [95d 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [632f85f1]Got state. Sending RESPONSE -orderer.example.com | [518 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [519 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [51a 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [95e 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [632f85f1]handleGetState serial send RESPONSE -orderer.example.com | [51b 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [51c 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | [51d 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [51e 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [51f 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [520 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [521 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [95f 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632f85f1]Received message RESPONSE from shim -orderer.example.com | BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -peer0.org1.example.com | [960 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [632f85f1]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [961 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [632f85f1]before send -peer0.org1.example.com | [962 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [632f85f1]after send -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -peer0.org1.example.com | [964 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [632f85f1]GetState received payload RESPONSE -orderer.example.com | GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -peer0.org1.example.com | [965 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632f85f1]Transaction completed. Sending COMPLETED -orderer.example.com | OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -peer0.org1.example.com | [963 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [632f85f1]Received RESPONSE, communicated (state:ready) -orderer.example.com | xEFWkMtGbgY= -peer0.org1.example.com | [966 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632f85f1]Move state message COMPLETED -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [967 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [632f85f1]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [522 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [968 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632f85f1]send state message COMPLETED -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -peer0.org1.example.com | [969 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632f85f1]Received message COMPLETED from shim -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [96a 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632f85f1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [96b 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52]HandleMessage- COMPLETED. Notify -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -peer0.org1.example.com | [96c 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52, channelID:businesschannel -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -peer0.org1.example.com | [96d 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -peer0.org1.example.com | [96e 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | OwJpoynNCyKsWozuVw== -peer0.org1.example.com | [96f 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [970 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52] -peer0.org1.example.com | [971 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [523 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [972 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52 channel id: businesschannel chaincode id: name:"lscc" -peer0.org1.example.com | [973 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [974 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52 channel id: businesschannel version: 1.1.0 -peer0.org1.example.com | [975 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52,syscc=true,proposal=0xc4226cd400,canname=escc:1.1.0 -peer0.org1.example.com | [976 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer0.org1.example.com | [977 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [978 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -peer0.org1.example.com | [979 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [632f85f1]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [97a 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -peer0.org1.example.com | [97b 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -peer0.org1.example.com | [97c 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [632f85f1]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | OwJpoynNCyKsWozuVw== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [524 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [97d 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632f85f1]Move state message TRANSACTION -orderer.example.com | [525 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [97e 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632f85f1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [526 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [97f 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [527 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [980 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632f85f1]sending state message TRANSACTION -orderer.example.com | [528 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [981 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632f85f1]Received message TRANSACTION from shim -peer0.org1.example.com | [982 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [632f85f1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [529 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [983 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [632f85f1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [52a 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [52b 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [984 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [985 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [986 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632f85f1]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [987 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632f85f1]Move state message COMPLETED -peer0.org1.example.com | [988 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [632f85f1]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [52c 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [989 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632f85f1]send state message COMPLETED -orderer.example.com | [52d 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [98a 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632f85f1]Received message COMPLETED from shim -orderer.example.com | [52e 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [98b 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632f85f1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [52f 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [530 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [531 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -peer0.org1.example.com | [98c 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52]HandleMessage- COMPLETED. Notify -orderer.example.com | [532 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [98d 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52, channelID:businesschannel -peer0.org1.example.com | [98e 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [98f 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [990 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [991 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52] -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -peer0.org1.example.com | [992 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36774) -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [993 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36776 -peer0.org1.example.com | [994 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422817680 -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -peer0.org1.example.com | [995 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -peer0.org1.example.com | [996 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -peer0.org1.example.com | [997 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -orderer.example.com | Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -peer0.org1.example.com | [998 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [999 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -peer0.org1.example.com | [99a 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4226cddb0, header 0xc4228176b0 -orderer.example.com | 0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [99b 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [99c 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb -orderer.example.com | [533 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [99d 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb] -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [99e 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -peer0.org1.example.com | [99f 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb] -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [9a0 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb channel id: businesschannel -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org1.example.com | [9a1 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb channel id: businesschannel version: 1.1.0 -peer0.org1.example.com | [9a2 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb,syscc=true,proposal=0xc4226cddb0,canname=lscc:1.1.0 -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -peer0.org1.example.com | [9a3 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org1.example.com | [9a4 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org1.example.com | [9a5 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -peer0.org1.example.com | [9a6 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ea3178a5]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [9a7 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -peer0.org1.example.com | [9a8 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [9a9 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ea3178a5]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [534 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [9aa 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ea3178a5]Move state message TRANSACTION -peer0.org1.example.com | [9ab 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ea3178a5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [9ac 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org1.example.com | [9ad 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ea3178a5]sending state message TRANSACTION -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -peer0.org1.example.com | [9ae 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea3178a5]Received message TRANSACTION from shim -peer0.org1.example.com | [9af 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ea3178a5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org1.example.com | [9b0 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ea3178a5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -peer0.org1.example.com | [9b1 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea3178a5]Transaction completed. Sending COMPLETED -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [535 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [536 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -peer0.org1.example.com | [9b2 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea3178a5]Move state message COMPLETED -peer0.org1.example.com | [9b3 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ea3178a5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [537 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer0.org1.example.com | [9b4 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea3178a5]send state message COMPLETED -peer0.org1.example.com | [9b5 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ea3178a5]Received message COMPLETED from shim -peer0.org1.example.com | [9b6 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ea3178a5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [9b7 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb]HandleMessage- COMPLETED. Notify -orderer.example.com | [538 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -peer0.org1.example.com | [9b8 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb, channelID:businesschannel -orderer.example.com | [539 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -peer0.org1.example.com | [9b9 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [53a 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -peer0.org1.example.com | [9ba 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [9bb 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | [53b 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -peer0.org1.example.com | [9bc 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb] -orderer.example.com | [53c 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -orderer.example.com | [53d 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -peer0.org1.example.com | [9bd 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [9be 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb channel id: businesschannel chaincode id: name:"lscc" -peer0.org1.example.com | [9bf 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer0.org1.example.com | [9c0 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb channel id: businesschannel version: 1.1.0 -orderer.example.com | [53e 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -peer0.org1.example.com | [9c1 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb,syscc=true,proposal=0xc4226cddb0,canname=escc:1.1.0 -orderer.example.com | [53f 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -peer0.org1.example.com | [9c2 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -orderer.example.com | [540 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -peer0.org1.example.com | [9c3 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [541 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -peer0.org1.example.com | [9c4 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer0.org1.example.com | [9c5 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ea3178a5]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [9c6 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [542 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -peer0.org1.example.com | [9c7 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [543 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -orderer.example.com | [544 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -orderer.example.com | [545 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -orderer.example.com | [546 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -peer0.org1.example.com | [9c8 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ea3178a5]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [547 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -peer0.org1.example.com | [9c9 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ea3178a5]Move state message TRANSACTION -orderer.example.com | [548 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -peer0.org1.example.com | [9ca 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ea3178a5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [549 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -peer0.org1.example.com | [9cb 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [9cc 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ea3178a5]sending state message TRANSACTION -peer0.org1.example.com | [9cd 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea3178a5]Received message TRANSACTION from shim -orderer.example.com | [54a 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [54b 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [9ce 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ea3178a5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [9cf 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ea3178a5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [54c 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [54d 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [9d0 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [54e 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [9d1 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [9d2 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea3178a5]Transaction completed. Sending COMPLETED -orderer.example.com | [54f 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [9d3 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea3178a5]Move state message COMPLETED -orderer.example.com | [550 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [9d4 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ea3178a5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [551 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [552 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org1.example.com | [9d5 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea3178a5]send state message COMPLETED -peer0.org1.example.com | [9d6 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ea3178a5]Received message COMPLETED from shim -orderer.example.com | [553 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [9d7 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ea3178a5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [9d8 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb]HandleMessage- COMPLETED. Notify -orderer.example.com | [554 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org1.example.com | [9d9 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb, channelID:businesschannel -peer0.org1.example.com | [9da 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [9db 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [555 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [9dc 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [9dd 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb] -peer0.org1.example.com | [9de 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36776) -peer0.org1.example.com | [9df 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36778 -peer0.org1.example.com | [9e0 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4231dabd0 -orderer.example.com | [556 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [9e1 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [9e2 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [557 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | [9e3 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -peer0.org1.example.com | [9e4 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [558 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [9e5 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [9e6 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422800ff0, header 0xc4231dac00 -peer0.org1.example.com | [9e7 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -orderer.example.com | [559 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [9e8 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed -peer0.org1.example.com | [9e9 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed] -peer0.org1.example.com | [9ea 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [9eb 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed] -peer0.org1.example.com | [9ec 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed channel id: businesschannel -orderer.example.com | [55a 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org1.example.com | [9ed 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed channel id: businesschannel version: 1.1.0 -peer0.org1.example.com | [9ee 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed,syscc=true,proposal=0xc422800ff0,canname=lscc:1.1.0 -peer0.org1.example.com | [9ef 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org1.example.com | [9f0 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [9f1 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org1.example.com | [9f2 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8355b50c]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [55b 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [9f3 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [55c 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [55d 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [55e 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [55f 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [560 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [9f4 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [561 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [562 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [563 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [9f5 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8355b50c]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [564 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [565 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [566 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [567 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [9f6 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8355b50c]Move state message TRANSACTION -orderer.example.com | [568 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [9f7 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8355b50c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [569 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [9f8 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [56a 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org1.example.com | [9f9 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8355b50c]sending state message TRANSACTION -orderer.example.com | [56b 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org1.example.com | [9fa 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8355b50c]Received message TRANSACTION from shim -peer0.org1.example.com | [9fb 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8355b50c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [56c 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org1.example.com | [9fc 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8355b50c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [9fd 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [8355b50c]Sending GET_STATE_BY_RANGE -orderer.example.com | [56d 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [9fe 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8355b50c]Received message GET_STATE_BY_RANGE from shim -peer0.org1.example.com | [9ff 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8355b50c]Fabric side Handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready -orderer.example.com | [56e 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org1.example.com | [a00 12-12 14:20:18.68 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 | [56f 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [a01 12-12 14:20:18.68 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 | [a03 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] GetStateRangeScanIterator.getStateRangeScanIterator.newResultsItr.GetStateRangeScanIterator.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 | [570 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [571 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [a04 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] getQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result -peer0.org1.example.com | [a05 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Got keys and values. Sending RESPONSE -orderer.example.com | [572 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: appchannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:36754 -orderer.example.com | [573 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org1.example.com | [a06 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [8355b50c]handleGetStateByRange serial send RESPONSE -orderer.example.com | [574 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [a07 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8355b50c]Received message RESPONSE from shim -peer0.org1.example.com | [a08 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8355b50c]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | [575 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [a09 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [8355b50c]before send -orderer.example.com | [576 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [a0a 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [8355b50c]after send -orderer.example.com | [577 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [578 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [a0b 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [8355b50c]Received RESPONSE, communicated (state:ready) -orderer.example.com | [579 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [57a 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [57b 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [57c 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [57d 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [a02 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [a0c 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [8355b50c]Received RESPONSE. Successfully got range -orderer.example.com | [57e 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [57f 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [580 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [a0d 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [8355b50c]Sending QUERY_STATE_CLOSE -orderer.example.com | [581 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [a0e 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8355b50c]Received message QUERY_STATE_CLOSE from shim -peer0.org1.example.com | [a0f 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8355b50c]Fabric side Handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready -orderer.example.com | [582 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [583 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [584 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [a10 12-12 14:20:18.68 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 | MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [a11 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Exiting QUERY_STATE_CLOSE -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [a12 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer0.org1.example.com | [a13 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Closed. Sending RESPONSE -peer0.org1.example.com | [a14 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [8355b50c]handleQueryStateClose serial send RESPONSE -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [a15 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8355b50c]Received message RESPONSE from shim -peer0.org1.example.com | [a16 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8355b50c]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer0.org1.example.com | [a17 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [8355b50c]before send -peer0.org1.example.com | [a18 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [8355b50c]after send -peer0.org1.example.com | [a19 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [8355b50c]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [a1a 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [8355b50c]Received RESPONSE. Successfully got range -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -peer0.org1.example.com | [a1b 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8355b50c]Transaction completed. Sending COMPLETED -orderer.example.com | +8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer0.org1.example.com | [a1c 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8355b50c]Move state message COMPLETED -peer0.org1.example.com | [a1d 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8355b50c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [a1e 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8355b50c]send state message COMPLETED -peer0.org1.example.com | [a1f 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8355b50c]Received message COMPLETED from shim -peer0.org1.example.com | [a20 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8355b50c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -peer0.org1.example.com | [a21 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [a22 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed, channelID:businesschannel -orderer.example.com | SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -orderer.example.com | uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -peer0.org1.example.com | [a23 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | cNvAXU8LlQ== -peer0.org1.example.com | [a24 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [a25 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [a26 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed] -peer0.org1.example.com | [a27 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [585 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [a28 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed channel id: businesschannel chaincode id: name:"lscc" -peer0.org1.example.com | [a29 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer0.org1.example.com | [a2a 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed channel id: businesschannel version: 1.1.0 -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [a2b 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed,syscc=true,proposal=0xc422800ff0,canname=escc:1.1.0 -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [a2c 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer0.org1.example.com | [a2d 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [a2e 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [a2f 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8355b50c]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [a30 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -peer0.org1.example.com | [a31 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -peer0.org1.example.com | [a32 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8355b50c]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -peer0.org1.example.com | [a33 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8355b50c]Move state message TRANSACTION -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -peer0.org1.example.com | [a34 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8355b50c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -orderer.example.com | ZM8rwLlgV6XUeTLW -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [a35 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [586 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [a36 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8355b50c]sending state message TRANSACTION -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [a37 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8355b50c]Received message TRANSACTION from shim -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [a38 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8355b50c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [a39 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8355b50c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -peer0.org1.example.com | [a3a 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [a3b 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [a3c 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8355b50c]Transaction completed. Sending COMPLETED -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -peer0.org1.example.com | [a3d 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8355b50c]Move state message COMPLETED -peer0.org1.example.com | [a3e 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8355b50c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [a3f 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8355b50c]send state message COMPLETED -peer0.org1.example.com | [a40 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8355b50c]Received message COMPLETED from shim -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -peer0.org1.example.com | [a41 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8355b50c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [a42 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed]HandleMessage- COMPLETED. Notify -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -peer0.org1.example.com | [a43 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed, channelID:businesschannel -peer0.org1.example.com | [a44 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | ZM8rwLlgV6XUeTLW -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [a45 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [a46 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | [587 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [588 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [a47 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed] -peer0.org1.example.com | [a48 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36778) -orderer.example.com | [589 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [58a 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [a49 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36780 -peer0.org1.example.com | [a4a 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4231c9440 -orderer.example.com | [58b 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [58c 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -peer0.org1.example.com | [a4b 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [a4c 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [58d 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [58f 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:36754: rpc error: code = Canceled desc = context canceled -orderer.example.com | [590 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -peer0.org1.example.com | [a4d 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -orderer.example.com | [591 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU Rejecting deliver for 172.18.0.7:36752 because channel appchannel not found -peer0.org1.example.com | [a4e 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [a4f 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [592 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36752 -peer0.org1.example.com | [a50 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4228a94f0, header 0xc4231c9470 -orderer.example.com | [593 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36752 -orderer.example.com | [594 12-12 14:19:39.79 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36752: rpc error: code = Canceled desc = context canceled -peer0.org1.example.com | [a51 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -orderer.example.com | [595 12-12 14:19:39.79 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [58e 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [596 12-12 14:19:39.79 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org1.example.com | [a52 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744 -orderer.example.com | [597 12-12 14:19:39.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -peer0.org1.example.com | [a53 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744] -orderer.example.com | [598 12-12 14:19:39.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [a54 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [a55 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744] -peer0.org1.example.com | [a56 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744 channel id: businesschannel -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [a57 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744 channel id: businesschannel version: 1.1.0 -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -orderer.example.com | z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [a58 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744,syscc=true,proposal=0xc4228a94f0,canname=qscc:1.1.0 -peer0.org1.example.com | [a59 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -peer0.org1.example.com | [a5a 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -peer0.org1.example.com | [a5b 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -orderer.example.com | OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -peer0.org1.example.com | [a5c 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5f7b395b]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | xEFWkMtGbgY= -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [a5d 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [599 12-12 14:19:39.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [a5e 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [a5f 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5f7b395b]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [a60 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f7b395b]Move state message TRANSACTION -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [a61 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5f7b395b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [a62 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -peer0.org1.example.com | [a63 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f7b395b]sending state message TRANSACTION -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [a64 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f7b395b]Received message TRANSACTION from shim -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [a65 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f7b395b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -peer0.org1.example.com | [a66 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5f7b395b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -peer0.org1.example.com | [a67 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -peer0.org1.example.com | [a68 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f7b395b]Transaction completed. Sending COMPLETED -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -peer0.org1.example.com | [a69 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f7b395b]Move state message COMPLETED -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -peer0.org1.example.com | [a6a 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f7b395b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | OwJpoynNCyKsWozuVw== -peer0.org1.example.com | [a6b 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f7b395b]send state message COMPLETED -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [a6c 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f7b395b]Received message COMPLETED from shim -orderer.example.com | [59a 12-12 14:19:39.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [a6d 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5f7b395b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [a6e 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744]HandleMessage- COMPLETED. Notify -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -peer0.org1.example.com | [a6f 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744, channelID:businesschannel -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -peer0.org1.example.com | [a70 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [a71 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [a72 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -orderer.example.com | OwJpoynNCyKsWozuVw== -peer0.org1.example.com | [a73 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744] -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [59b 12-12 14:19:39.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [59c 12-12 14:19:39.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [59d 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [59e 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [a74 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [59f 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [5a0 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [5a1 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [5a2 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [5a3 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -peer0.org1.example.com | [a75 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744 channel id: businesschannel chaincode id: name:"qscc" -orderer.example.com | [5a4 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36756 -orderer.example.com | [5a5 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36756 -peer0.org1.example.com | [a76 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc -peer0.org1.example.com | [a77 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744 channel id: businesschannel version: 1.1.0 -orderer.example.com | [5a6 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [a78 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744,syscc=true,proposal=0xc4228a94f0,canname=escc:1.1.0 -orderer.example.com | [5a7 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [5a8 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [a79 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer0.org1.example.com | [a7a 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [a7b 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer0.org1.example.com | [a7c 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5f7b395b]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [a7d 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [a7e 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [5a9 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [5aa 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [5ab 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -peer0.org1.example.com | [a7f 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5f7b395b]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [5ac 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [a80 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f7b395b]Move state message TRANSACTION -orderer.example.com | MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [a81 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5f7b395b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -orderer.example.com | ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -peer0.org1.example.com | [a82 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -peer0.org1.example.com | [a83 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f7b395b]sending state message TRANSACTION -orderer.example.com | Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -peer0.org1.example.com | [a84 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f7b395b]Received message TRANSACTION from shim -orderer.example.com | 0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [5ad 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [a85 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f7b395b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [a86 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5f7b395b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [a87 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [a88 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [a89 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f7b395b]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [a8a 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f7b395b]Move state message COMPLETED -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [a8b 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f7b395b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [a8c 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f7b395b]send state message COMPLETED -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org1.example.com | [a8d 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f7b395b]Received message COMPLETED from shim -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -peer0.org1.example.com | [a8e 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5f7b395b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -peer0.org1.example.com | [a8f 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744]HandleMessage- COMPLETED. Notify -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -peer0.org1.example.com | [a90 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744, channelID:businesschannel -peer0.org1.example.com | [a91 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [a92 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [5ae 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [a93 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [a94 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744] -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [a95 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36780) -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -peer0.org1.example.com | [a96 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36782 -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [a97 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4231c9f20 -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -peer0.org1.example.com | [a98 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [a99 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org1.example.com | [a9a 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -peer0.org1.example.com | [a9b 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [5af 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [5b0 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -peer0.org1.example.com | [a9c 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [a9d 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4228a9720, header 0xc4231c9f50 -orderer.example.com | [5b1 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer0.org1.example.com | [a9e 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -orderer.example.com | [5b2 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -peer0.org1.example.com | [a9f 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e -orderer.example.com | [5b3 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -peer0.org1.example.com | [aa0 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e] -orderer.example.com | [5b4 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -peer0.org1.example.com | [aa1 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [5b5 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -orderer.example.com | [5b6 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -peer0.org1.example.com | [aa2 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e] -orderer.example.com | [5b7 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -orderer.example.com | [5b8 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -peer0.org1.example.com | [aa3 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e channel id: businesschannel -orderer.example.com | [5b9 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -peer0.org1.example.com | [aa4 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e channel id: businesschannel version: 1.1.0 -orderer.example.com | [5ba 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -peer0.org1.example.com | [aa5 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e,syscc=true,proposal=0xc4228a9720,canname=qscc:1.1.0 -orderer.example.com | [5bb 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -peer0.org1.example.com | [aa6 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 -peer0.org1.example.com | [aa7 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [5bc 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -peer0.org1.example.com | [aa8 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -peer0.org1.example.com | [aa9 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55c63c39]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [5bd 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -peer0.org1.example.com | [aaa 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [5be 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -peer0.org1.example.com | [aab 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [5bf 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -orderer.example.com | [5c0 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -peer0.org1.example.com | [aac 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55c63c39]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [5c1 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -peer0.org1.example.com | [aad 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55c63c39]Move state message TRANSACTION -orderer.example.com | [5c2 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [5c3 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -peer0.org1.example.com | [aae 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [55c63c39]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [5c4 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [5c5 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [aaf 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [5c6 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [ab0 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55c63c39]sending state message TRANSACTION -orderer.example.com | [5c7 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [5c8 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [ab1 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55c63c39]Received message TRANSACTION from shim -orderer.example.com | [5c9 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [ab2 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55c63c39]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [ab3 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [55c63c39]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [ab4 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel -orderer.example.com | [5ca 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [5cb 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [5cc 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [ab5 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -orderer.example.com | [5cd 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [5ce 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [5cf 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [ab6 12-12 14:20:19.08 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=[26079] -orderer.example.com | [5d0 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [ab7 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[29412], Going to peek [8] bytes -peer0.org1.example.com | [ab8 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14006], placementInfo={fileNum=[0], startOffset=[26079], bytesOffset=[26081]} -peer0.org1.example.com | [ab9 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55c63c39]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [aba 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55c63c39]Move state message COMPLETED -orderer.example.com | [5d1 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org1.example.com | [abb 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55c63c39]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [abc 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55c63c39]send state message COMPLETED -peer0.org1.example.com | [abd 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55c63c39]Received message COMPLETED from shim -orderer.example.com | [5d2 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [abe 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [55c63c39]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [abf 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [ac0 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e, channelID:businesschannel -peer0.org1.example.com | [ac1 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [ac2 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | [5d3 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [5d4 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [ac3 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [ac4 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e] -peer0.org1.example.com | [ac5 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [ac6 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e channel id: businesschannel chaincode id: name:"qscc" -peer0.org1.example.com | [ac7 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc -peer0.org1.example.com | [ac8 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e channel id: businesschannel version: 1.1.0 -peer0.org1.example.com | [ac9 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e,syscc=true,proposal=0xc4228a9720,canname=escc:1.1.0 -peer0.org1.example.com | [aca 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer0.org1.example.com | [acb 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [5d5 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org1.example.com | [acc 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer0.org1.example.com | [acd 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55c63c39]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [5d6 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [ace 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [5d7 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [acf 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [5d8 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [5d9 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [ad0 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55c63c39]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [ad1 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55c63c39]Move state message TRANSACTION -orderer.example.com | [5da 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [ad2 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [55c63c39]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [5db 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [ad3 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [5dc 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [ad4 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55c63c39]sending state message TRANSACTION -orderer.example.com | [5dd 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | [5de 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [ad5 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55c63c39]Received message TRANSACTION from shim -peer0.org1.example.com | [ad6 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55c63c39]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [5df 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | [5e0 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org1.example.com | [ad7 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [55c63c39]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [5e1 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | [ad8 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [5e2 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [ad9 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [ada 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55c63c39]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [adb 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55c63c39]Move state message COMPLETED -peer0.org1.example.com | [adc 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55c63c39]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [5e3 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [5e4 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -orderer.example.com | [5e5 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [5e6 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [5e7 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [5e8 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [5e9 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [5ea 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [5eb 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [5ec 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [5ed 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [5ee 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [5ef 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [5f0 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [5f1 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -peer0.org1.example.com | [add 12-12 14:20:19.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55c63c39]send state message COMPLETED -orderer.example.com | [5f2 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [5f3 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -peer0.org1.example.com | [ade 12-12 14:20:19.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55c63c39]Received message COMPLETED from shim -orderer.example.com | [5f4 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org1.example.com | [adf 12-12 14:20:19.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [55c63c39]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [5f5 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org1.example.com | [ae0 12-12 14:20:19.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [ae1 12-12 14:20:19.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e, channelID:businesschannel -orderer.example.com | [5f6 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org1.example.com | [ae2 12-12 14:20:19.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [ae3 12-12 14:20:19.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [5f7 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -peer0.org1.example.com | [ae4 12-12 14:20:19.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | [5f8 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -peer0.org1.example.com | [ae5 12-12 14:20:19.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e] -orderer.example.com | [5f9 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [5fa 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -peer0.org1.example.com | [ae6 12-12 14:20:19.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36782) -peer0.org1.example.com | [ae7 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -orderer.example.com | [5fb 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -peer0.org1.example.com | [ae8 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | [5fc 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [5fd 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate -> DEBU Initializing chain appchannel at: /var/hyperledger/production/orderer/chain_appchannel -peer0.org1.example.com | [ae9 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42333cba0 env 0xc4232fd230 txn 0 -orderer.example.com | [5fe 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.newChain -> DEBU Initialized to block height 18446744073709551615 with hash -orderer.example.com | [5ff 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] WriteConfigBlock.newChain.Append.writeBlock -> DEBU Wrote block 0 -orderer.example.com | [600 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.readBlock -> DEBU Read block 0 -orderer.example.com | [601 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport.newBlockWriter -> DEBU [channel: appchannel] Creating block writer for tip of chain (blockNumber=0, lastConfigBlockNum=0, lastConfigSeq=1) -orderer.example.com | [602 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport -> DEBU [channel: appchannel] Done creating channel support resources -orderer.example.com | [603 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain -> INFO Created and starting new chain appchannel -peer0.org1.example.com | [aea 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4232fd230 -orderer.example.com | [604 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [605 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [aeb 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\241\313\277\321\005\020\250\211\347\344\001\"\017businesschannel*@d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a:\010\022\006\022\004mycc" signature_header:"\n\236\006\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk\nEEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT\n6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB\n9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf\nZM8rwLlgV6XUeTLW\n-----END CERTIFICATE-----\n\022\030\322\371\2771\000\220_B\361\026\262\240y{\306\361\223D\301~\251G\266\034" -orderer.example.com | [606 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [607 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [608 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...5E14A620AF959339E865CA50A299FB0C -peer0.org1.example.com | [aec 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | [609 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 76E09E4E725FD7C77F977B4CC0A88227B74FD1A5A157FDA1EF4018C27F28A45C -peer0.org1.example.com | [aed 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [60a 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [60b 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [60c 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 -peer0.org1.example.com | [aee 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP cec57e02e224c3efa1075c97d8c3172cd78fec768b3b75afcf280ac60a493411} -orderer.example.com | [60d 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [aef 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [60e 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [60f 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...5E14A620AF959339E865CA50A299FB0C -peer0.org1.example.com | [af0 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [610 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: EDDE8E195DF532E1651CE3CBC615FCA8502A3402D7AA6D0DC879E38A3D3A933E -orderer.example.com | [611 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] commitBlock.Append.Append.writeBlock -> DEBU Wrote block 2 -peer0.org1.example.com | [af1 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4233a6800, header channel_header:"\010\003\032\014\010\241\313\277\321\005\020\250\211\347\344\001\"\017businesschannel*@d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a:\010\022\006\022\004mycc" signature_header:"\n\236\006\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk\nEEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT\n6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB\n9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf\nZM8rwLlgV6XUeTLW\n-----END CERTIFICATE-----\n\022\030\322\371\2771\000\220_B\361\026\262\240y{\306\361\223D\301~\251G\266\034" -orderer.example.com | [612 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: testchainid] Wrote block 2 -orderer.example.com | [613 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [614 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [615 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [616 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [af2 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | [617 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [618 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [619 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [af3 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [af4 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [af5 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [af6 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -peer0.org1.example.com | [af7 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [af8 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4232fd230 envbytes 0xc4233a0400 -peer0.org1.example.com | [af9 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [1eaa45b9-c0bf-4deb-b825-c5d447d71139] -peer0.org1.example.com | [afa 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -peer0.org1.example.com | [afb 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [1eaa45b9-c0bf-4deb-b825-c5d447d71139] -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -peer0.org1.example.com | [afc 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc4233a0400 -peer0.org1.example.com | [afd 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -peer0.org1.example.com | [afe 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] -orderer.example.com | OwJpoynNCyKsWozuVw== -peer0.org1.example.com | [aff 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=89edb4a0-dd73-465a-be72-b18060230d1c,syscc=true,proposal=0x0,canname=vscc:1.1.0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [61a 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e280 gate 1513088380005795100 evaluation starts -orderer.example.com | [61b 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e280 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [b00 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a chaindID businesschannel -orderer.example.com | [61c 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e280 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [b01 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -orderer.example.com | [61d 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e280 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -peer0.org1.example.com | [b02 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [61e 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e280 principal evaluation fails -peer0.org1.example.com | [b03 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer0.org1.example.com | [b04 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [89edb4a0]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [61f 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e280 gate 1513088380005795100 evaluation fails -orderer.example.com | [620 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [b05 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [621 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [622 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -peer0.org1.example.com | [b06 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [89edb4a0]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [b07 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89edb4a0]Move state message TRANSACTION -orderer.example.com | [623 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -orderer.example.com | [624 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -peer0.org1.example.com | [b08 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [89edb4a0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [625 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -peer0.org1.example.com | [b09 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [b0a 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89edb4a0]sending state message TRANSACTION -orderer.example.com | [626 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [b0b 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89edb4a0]Received message TRANSACTION from shim -peer0.org1.example.com | [b0c 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [89edb4a0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [b0d 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [89edb4a0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [627 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -peer0.org1.example.com | [b0e 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [b0f 12-12 14:20:19.55 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 | [b10 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org1.example.com | [b11 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89edb4a0]Transaction completed. Sending COMPLETED -orderer.example.com | [628 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e290 gate 1513088380007671400 evaluation starts -orderer.example.com | [629 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e290 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [b12 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89edb4a0]Move state message COMPLETED -orderer.example.com | [62a 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e290 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [b13 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [89edb4a0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [62b 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e290 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -orderer.example.com | [62c 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e290 principal evaluation fails -peer0.org1.example.com | [b14 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89edb4a0]send state message COMPLETED -peer0.org1.example.com | [b15 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89edb4a0]Received message COMPLETED from shim -orderer.example.com | [62d 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e290 gate 1513088380007671400 evaluation fails -orderer.example.com | [62e 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [62f 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [630 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -peer0.org1.example.com | [b16 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [89edb4a0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [b17 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [89edb4a0-dd73-465a-be72-b18060230d1c]HandleMessage- COMPLETED. Notify -orderer.example.com | [631 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e298 gate 1513088380008744900 evaluation starts -peer0.org1.example.com | [b18 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:89edb4a0-dd73-465a-be72-b18060230d1c, channelID:businesschannel -orderer.example.com | [632 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [633 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [b19 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [b1a 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] -orderer.example.com | [634 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -peer0.org1.example.com | [b1b 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc4233a0400 -peer0.org1.example.com | [b1c 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4232fd230 envbytes 0xc4233a0400 -orderer.example.com | [635 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [b1e 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org1.example.com | [b1f 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -orderer.example.com | [636 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 principal matched by identity 0 -orderer.example.com | [637 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d8 e6 68 2d 95 0b f4 15 38 9c 58 af 3f 6c 8b 46 |..h-....8.X.?l.F| -peer0.org1.example.com | [b20 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] -orderer.example.com | 00000010 2f 07 26 76 30 e4 f5 8f 99 a6 26 40 8a c9 3f f3 |/.&v0.....&@..?.| -orderer.example.com | [638 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5b 98 fe 2f 5c 0e 2c 3e 89 17 65 b6 |0D. [../\.,>..e.| -orderer.example.com | 00000010 bd 9f 41 e3 05 fe 1c e6 f6 80 12 81 ab 6f 02 29 |..A..........o.)| -peer0.org1.example.com | [b21 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [b22 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [6] -peer0.org1.example.com | [b23 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -orderer.example.com | 00000020 7d e8 cb a5 02 20 0c 45 97 51 2c 77 90 0b 88 5a |}.... .E.Q,w...Z| -peer0.org1.example.com | [b24 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -orderer.example.com | 00000030 c5 3e f2 5c 85 60 35 67 8c 53 13 7f 67 58 76 09 |.>.\.`5g.S..gXv.| -orderer.example.com | 00000040 47 a7 bb fb 05 bb |G.....| -peer0.org1.example.com | [b25 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [b26 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -orderer.example.com | [639 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [b27 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=a -orderer.example.com | [63a 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e298 gate 1513088380008744900 evaluation succeeds -peer0.org1.example.com | [b28 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -orderer.example.com | [63b 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [b29 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=b -peer0.org1.example.com | [b2a 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -orderer.example.com | [63c 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [b2b 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] marked as valid by state validator -orderer.example.com | [63d 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -peer0.org1.example.com | [b2c 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org1.example.com | [b2d 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org1.example.com | [b2e 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -orderer.example.com | [63e 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -peer0.org1.example.com | [b2f 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage -orderer.example.com | [63f 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -peer0.org1.example.com | [b1d 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42333cba0 env 0xc4232fd230 txn 0 -peer0.org1.example.com | [b30 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [6] -orderer.example.com | [640 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -peer0.org1.example.com | [b31 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x1b, 0x80, 0x67, 0xcc, 0xf8, 0xad, 0x90, 0xca, 0xc9, 0x3a, 0x94, 0x5b, 0x5c, 0x45, 0x7f, 0xc3, 0xbc, 0xd9, 0x89, 0x55, 0xf6, 0xf7, 0xb, 0x3d, 0x1f, 0x3b, 0xee, 0xd0, 0x48, 0xdd, 0x9e, 0xe0} txOffsets= -peer0.org1.example.com | txId=d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a locPointer=offset=70, bytesLength=2907 -orderer.example.com | [641 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: appchannel] Received seekInfo (0xc4204b6840) start: > stop: > from 172.18.0.7:36756 -peer0.org1.example.com | ] -peer0.org1.example.com | [b32 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55561, bytesLength=2907] for tx ID: [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] to index -orderer.example.com | [642 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 0 -peer0.org1.example.com | [b33 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55561, bytesLength=2907] for tx number:[0] ID: [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] to blockNumTranNum index -peer0.org1.example.com | [b34 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60263], isChainEmpty=[false], lastBlockNumber=[6] -peer0.org1.example.com | [b35 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 6 -peer0.org1.example.com | [b36 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 6 -peer0.org1.example.com | [b37 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) -peer0.org1.example.com | [b38 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database -peer0.org1.example.com | [b39 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [b3a 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [b3b 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer0.org1.example.com | [b3c 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer0.org1.example.com | [b3d 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [b3e 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database -peer0.org1.example.com | [b3f 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -orderer.example.com | [643 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: appchannel] Delivering block for (0xc4204b6840) for 172.18.0.7:36756 -peer0.org1.example.com | [b40 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -peer0.org1.example.com | [b41 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [b42 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a -orderer.example.com | [644 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: appchannel] Done delivering to 172.18.0.7:36756 for (0xc4204b6840) -peer0.org1.example.com | [b43 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [b44 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [645 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36756 -peer0.org1.example.com | [b45 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [646 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36756 -peer0.org1.example.com | [b46 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [b47 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [647 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36756: rpc error: code = Canceled desc = context canceled -peer0.org1.example.com | [b48 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [648 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -peer0.org1.example.com | [b49 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [649 12-12 14:19:41.09 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -peer0.org1.example.com | [b4a 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [64a 12-12 14:19:41.10 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36766 -orderer.example.com | [64b 12-12 14:19:41.10 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36766 -orderer.example.com | [64c 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -peer0.org1.example.com | [b4b 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [64d 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:36768 -orderer.example.com | [64e 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.18.0.7:36768 -orderer.example.com | [64f 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update message for channel businesschannel -orderer.example.com | [650 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -orderer.example.com | [651 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [652 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -orderer.example.com | [653 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [654 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -orderer.example.com | [655 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e030 gate 1513088381115793100 evaluation starts -orderer.example.com | [656 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e030 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [657 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e030 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [658 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e030 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | [659 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e030 principal evaluation fails -orderer.example.com | [65a 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e030 gate 1513088381115793100 evaluation fails -orderer.example.com | [65b 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [65c 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [65d 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -orderer.example.com | [65e 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -orderer.example.com | [65f 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -orderer.example.com | [660 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -orderer.example.com | [661 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [662 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -orderer.example.com | [663 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e038 gate 1513088381118063300 evaluation starts -orderer.example.com | [664 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [665 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [666 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -orderer.example.com | [667 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 principal evaluation fails -orderer.example.com | [668 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e038 gate 1513088381118063300 evaluation fails -orderer.example.com | [669 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [66a 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [66b 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -orderer.example.com | [66c 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e040 gate 1513088381119431200 evaluation starts -orderer.example.com | [66d 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e040 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [66e 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e040 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [66f 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [670 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [671 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e040 principal matched by identity 0 -orderer.example.com | [672 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 c3 e0 46 5f 23 ff 31 85 b1 92 5d a1 49 83 9a 8c |..F_#.1...].I...| -orderer.example.com | 00000010 d2 dc c2 ed b1 f2 bb c3 77 e7 ab ca 36 3f 21 24 |........w...6?!$| -orderer.example.com | [673 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 97 1c 0b d3 9f d8 c9 cc b8 e9 72 |0E.!...........r| -orderer.example.com | 00000010 16 51 55 51 1a d8 20 3e 04 a1 07 42 78 4c ef b0 |.QUQ.. >...BxL..| -orderer.example.com | 00000020 ef 62 c8 6c d6 02 20 71 4b 18 c1 03 d1 05 ca f5 |.b.l.. qK.......| -orderer.example.com | 00000030 49 a7 89 f2 11 a9 5a 73 50 07 35 0a af 98 f6 a4 |I.....ZsP.5.....| -orderer.example.com | 00000040 3f 05 87 7f 68 32 06 |?...h2.| -orderer.example.com | [674 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e040 principal evaluation succeeds for identity 0 -orderer.example.com | [675 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e040 gate 1513088381119431200 evaluation succeeds -orderer.example.com | [676 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers -orderer.example.com | [677 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -orderer.example.com | [678 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -orderer.example.com | [679 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -orderer.example.com | [67a 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -orderer.example.com | [67b 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -orderer.example.com | [67c 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [67d 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [67e 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [67f 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [680 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [681 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [682 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [683 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [684 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [685 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [686 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [687 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [688 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [689 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [68a 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [68b 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -orderer.example.com | [68c 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -orderer.example.com | [68d 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [68e 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [68f 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [690 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [691 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [692 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [693 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org1MSP] -orderer.example.com | [694 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [695 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [696 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org1MSP looking up path [] -orderer.example.com | [697 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -orderer.example.com | [698 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000e4a0 gate 1513088381126545900 evaluation starts -orderer.example.com | [699 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4a0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [69a 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4a0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [69b 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | [69c 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4a0 principal matched by identity 0 -orderer.example.com | [69d 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 8f 9f 17 cb ec 19 a5 bd 38 53 60 42 6b 06 57 58 |........8S`Bk.WX| -orderer.example.com | 00000010 06 97 66 b1 66 bf 8c 2b 47 2e f7 cf a2 2c 87 c4 |..f.f..+G....,..| -orderer.example.com | [69e 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 6e 3c f7 a2 0b 18 74 47 57 83 f5 4e |0D. n<....tGW..N| -orderer.example.com | 00000010 c1 f2 c3 d3 ab 46 24 55 af d6 ba 74 c9 e3 6f 53 |.....F$U...t..oS| -orderer.example.com | 00000020 54 0d fe 03 02 20 54 30 83 45 87 dc e3 49 84 c3 |T.... T0.E...I..| -orderer.example.com | 00000030 78 7e d2 4b 52 6f 0a 9d 45 a7 99 c2 c0 24 24 c8 |x~.KRo..E....$$.| -orderer.example.com | 00000040 fb c3 05 59 77 b0 |...Yw.| -orderer.example.com | [69f 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4a0 principal evaluation succeeds for identity 0 -orderer.example.com | [6a0 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000e4a0 gate 1513088381126545900 evaluation succeeds -orderer.example.com | [6a1 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -orderer.example.com | [6a2 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -orderer.example.com | [6a3 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [6a4 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [6a5 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [6a6 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [6a7 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [6a8 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [6a9 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [6aa 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [6ab 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [6ac 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [6ad 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [6ae 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | [6af 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [6b0 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | [6b1 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [6b2 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [6b3 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [6b4 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [6b5 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [6b6 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [6b7 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [6b8 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [6b9 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [6ba 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [6bb 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [6bc 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [6bd 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [6be 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [6bf 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [6c0 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [6c1 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [6c2 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [6c3 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [6c4 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [6c5 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [6c6 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [6c7 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [6c8 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [6c9 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [6ca 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -orderer.example.com | ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -orderer.example.com | Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -orderer.example.com | 0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6cb 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6cc 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6cd 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [6ce 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [6cf 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [6d0 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [6d1 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [6d2 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [6d3 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [6d4 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [6d5 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [6d6 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [6d7 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [6d8 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [6d9 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -orderer.example.com | +8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -orderer.example.com | SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -orderer.example.com | uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -orderer.example.com | cNvAXU8LlQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6da 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -orderer.example.com | ZM8rwLlgV6XUeTLW -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6db 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -orderer.example.com | ZM8rwLlgV6XUeTLW -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6dc 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [6dd 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [6de 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [6df 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [6e0 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [6e1 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | [6e2 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [6e3 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [6e4 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [6e5 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [6e6 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -orderer.example.com | z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -orderer.example.com | GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -orderer.example.com | OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -orderer.example.com | xEFWkMtGbgY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6e7 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -orderer.example.com | OwJpoynNCyKsWozuVw== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6e8 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -orderer.example.com | OwJpoynNCyKsWozuVw== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6e9 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [6ea 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [6eb 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [6ec 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -orderer.example.com | [6ed 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -orderer.example.com | [6ee 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -orderer.example.com | [6ef 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -orderer.example.com | [6f0 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -orderer.example.com | [6f1 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -orderer.example.com | [6f2 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -orderer.example.com | [6f3 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -orderer.example.com | [6f4 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -orderer.example.com | [6f5 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -orderer.example.com | [6f6 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -orderer.example.com | [6f7 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -orderer.example.com | [6f8 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -orderer.example.com | [6f9 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -orderer.example.com | [6fa 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -orderer.example.com | [6fb 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -orderer.example.com | [6fc 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [6fd 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [6fe 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [6ff 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [700 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [701 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [702 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [703 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [704 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [705 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [706 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [707 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [708 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [709 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [70a 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [70b 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [70c 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [70d 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [70e 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [70f 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [710 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [711 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -orderer.example.com | [712 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [713 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [714 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [715 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [716 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | [717 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | [718 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | [719 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | [71a 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [71b 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [71c 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [71d 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [71e 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [71f 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [720 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [721 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -orderer.example.com | [722 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [723 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [724 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [725 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [726 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [727 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [728 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [729 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [72a 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [72b 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [72c 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [72d 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [72e 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [72f 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [730 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [731 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [732 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -orderer.example.com | [733 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [734 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [735 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -orderer.example.com | [736 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -orderer.example.com | [737 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [738 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [739 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [73a 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [73b 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [73c 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608FDCABFD10522...735007350AAF98F6A43F05877F683206 -orderer.example.com | [73d 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: 3ECA6E9D6B05FB516A0E0D7129043609074D5D3885918D69AE433B72BC91AAEB -orderer.example.com | [73e 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -orderer.example.com | [73f 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [740 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -orderer.example.com | [741 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [742 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -orderer.example.com | [743 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [744 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN -orderer.example.com | tV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE -orderer.example.com | +EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q -orderer.example.com | XZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [745 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e428 gate 1513088381148320500 evaluation starts -orderer.example.com | [746 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e428 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [747 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e428 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624b6741774942416749515a514232667a33766f54575838334f36754e592b796a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d566f58445449334d5449784d4441344e4441784d566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415273516c4d6e6a7836777a4c5133455649357a4357785845485248413046674a6f6148586363505a595a4d746743534b684e0a7456346d424f31762b785565392b313755394f2f467037694b54616c68622f65676e71776f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344416b43387863556452672b44333878734373535a64304b343343724f450a2b455833697a4773554d7931527a414b42676771686b6a4f5051514441674e494144424641694541676e494d4e3768725a5370345561565238752b65746f2f710a585a4e4d476a6b7664614150486f316176673843494736454a4336356e6f6a684b6c754f53484841596b6a72356347646d6159455249576644737935544667640a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [748 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [749 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [74a 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e428 principal matched by identity 0 -orderer.example.com | [74b 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 3e ca 6e 9d 6b 05 fb 51 6a 0e 0d 71 29 04 36 09 |>.n.k..Qj..q).6.| -orderer.example.com | 00000010 07 4d 5d 38 85 91 8d 69 ae 43 3b 72 bc 91 aa eb |.M]8...i.C;r....| -orderer.example.com | [74c 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 17 64 93 dd fa ff 2c 44 15 c3 92 f6 |0D. .d....,D....| -orderer.example.com | 00000010 45 fd 6f 87 b7 96 ac 45 fa e0 cf 9b 78 6f b2 34 |E.o....E....xo.4| -orderer.example.com | 00000020 88 5d 17 6d 02 20 32 92 d3 3c 97 b6 d2 5a 28 08 |.].m. 2..<...Z(.| -orderer.example.com | 00000030 59 b6 6d 43 a7 14 d4 0b 6a 7b 58 63 6a 8d 7b cc |Y.mC....j{Xcj.{.| -orderer.example.com | 00000040 3e 19 f5 29 17 20 |>..). | -orderer.example.com | [74d 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e428 principal evaluation succeeds for identity 0 -orderer.example.com | [74e 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e428 gate 1513088381148320500 evaluation succeeds -orderer.example.com | [74f 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [750 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [751 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers -orderer.example.com | [752 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -orderer.example.com | [753 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -orderer.example.com | [754 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -orderer.example.com | [755 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:36768 -orderer.example.com | [756 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [757 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [758 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [759 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [75a 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [75b 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [75c 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [75d 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [75e 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [75f 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [760 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [761 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [762 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [763 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [764 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [765 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -orderer.example.com | [766 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -orderer.example.com | [769 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [76a 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [76b 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [76c 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [767 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36766: rpc error: code = Canceled desc = context canceled -orderer.example.com | [768 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:36768: rpc error: code = Canceled desc = context canceled -orderer.example.com | [76d 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [770 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [771 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org1MSP] -orderer.example.com | [772 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [773 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [774 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org1MSP looking up path [] -orderer.example.com | [775 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -orderer.example.com | [776 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420116da8 gate 1513088381156227200 evaluation starts -orderer.example.com | [777 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116da8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [778 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116da8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [779 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | [76e 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [76f 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [77a 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116da8 principal matched by identity 0 -orderer.example.com | [77b 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 8f 9f 17 cb ec 19 a5 bd 38 53 60 42 6b 06 57 58 |........8S`Bk.WX| -orderer.example.com | 00000010 06 97 66 b1 66 bf 8c 2b 47 2e f7 cf a2 2c 87 c4 |..f.f..+G....,..| -orderer.example.com | [77c 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 6e 3c f7 a2 0b 18 74 47 57 83 f5 4e |0D. n<....tGW..N| -orderer.example.com | 00000010 c1 f2 c3 d3 ab 46 24 55 af d6 ba 74 c9 e3 6f 53 |.....F$U...t..oS| -orderer.example.com | 00000020 54 0d fe 03 02 20 54 30 83 45 87 dc e3 49 84 c3 |T.... T0.E...I..| -orderer.example.com | 00000030 78 7e d2 4b 52 6f 0a 9d 45 a7 99 c2 c0 24 24 c8 |x~.KRo..E....$$.| -orderer.example.com | 00000040 fb c3 05 59 77 b0 |...Yw.| -orderer.example.com | [77d 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116da8 principal evaluation succeeds for identity 0 -orderer.example.com | [77e 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420116da8 gate 1513088381156227200 evaluation succeeds -orderer.example.com | [77f 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -orderer.example.com | [780 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -orderer.example.com | [781 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [782 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [783 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [784 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [785 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [786 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [787 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [788 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [789 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [78a 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [78b 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [78c 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | [78d 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [78e 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | [78f 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [790 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [791 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [792 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [793 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [794 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [795 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [796 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [797 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [798 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [799 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [79a 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [79b 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [79c 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [79d 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [79e 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [79f 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [7a0 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [7a1 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [7a2 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [7a3 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [7a4 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [7a5 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [7a6 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [7a7 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [7a8 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -orderer.example.com | ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -orderer.example.com | Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -orderer.example.com | 0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [7a9 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [7aa 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [7ab 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [7ac 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [7ad 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [7ae 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [7af 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [7b0 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [7b1 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [7b2 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [7b3 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [7b4 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [7b5 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [7b6 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [7b7 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -orderer.example.com | +8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -orderer.example.com | SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -orderer.example.com | uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -orderer.example.com | cNvAXU8LlQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [7b8 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -orderer.example.com | ZM8rwLlgV6XUeTLW -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [7b9 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -orderer.example.com | ZM8rwLlgV6XUeTLW -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [7ba 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [7bb 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [7bc 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [7bd 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [7be 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [7bf 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | [7c0 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [7c1 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [7c2 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [7c3 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [7c4 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -orderer.example.com | z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -orderer.example.com | GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -orderer.example.com | OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -orderer.example.com | xEFWkMtGbgY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [7c5 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -orderer.example.com | OwJpoynNCyKsWozuVw== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [7c6 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -orderer.example.com | OwJpoynNCyKsWozuVw== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [7c7 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [7c8 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [7c9 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [7ca 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -orderer.example.com | [7cb 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -orderer.example.com | [7cc 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -orderer.example.com | [7cd 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -orderer.example.com | [7ce 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -orderer.example.com | [7cf 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -orderer.example.com | [7d0 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -orderer.example.com | [7d1 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -orderer.example.com | [7d2 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -orderer.example.com | [7d3 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -orderer.example.com | [7d4 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -orderer.example.com | [7d5 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -orderer.example.com | [7d6 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -orderer.example.com | [7d7 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -orderer.example.com | [7d8 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -orderer.example.com | [7d9 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -orderer.example.com | [7da 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [7db 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [7dc 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [7dd 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [7de 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [7df 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -orderer.example.com | [7e0 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [7e1 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [7e2 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [7e3 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [7e4 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | [7e5 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | [7e6 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | [7e7 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | [7e8 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [7e9 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [7ea 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [7eb 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [7ec 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [7ed 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [7ee 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [7ef 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [7f0 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [7f1 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [7f2 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [7f3 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [7f4 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [7f5 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [7f6 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [7f7 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [7f8 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [7f9 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [7fa 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [7fb 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [7fc 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [7fd 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [7fe 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [7ff 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [800 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [801 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -orderer.example.com | [802 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [803 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [804 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [805 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [806 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [807 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [808 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [809 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [80a 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [80b 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [80c 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [80d 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [80e 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [80f 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [810 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -orderer.example.com | [811 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [812 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [813 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -orderer.example.com | [814 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -orderer.example.com | [815 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [816 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [817 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [818 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [819 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [81a 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...4CF6A70ABBFAC8F76AFFD28E3B63EE3A -orderer.example.com | [81b 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 6897BDD330A6994DD5982094D92B99B90C516D3EE0BCE153847492BAE3A2B14A -orderer.example.com | [81c 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 1 to 2, setting lastConfigBlockNum from 0 to 1 -orderer.example.com | [81d 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [81e 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [81f 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 -orderer.example.com | [820 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [821 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [822 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08010A90060A0A4F7264657265724D53...4CF6A70ABBFAC8F76AFFD28E3B63EE3A -orderer.example.com | [823 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 5AF3D28DADF2ECF8E91DF524F2727F003CF15861BBB592C5B7366961DB4A1DF4 -orderer.example.com | [824 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] commitBlock.Append.Append.writeBlock -> DEBU Wrote block 1 -orderer.example.com | [825 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 1 -orderer.example.com | [826 12-12 14:19:43.25 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [827 12-12 14:19:43.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36770 -orderer.example.com | [828 12-12 14:19:43.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36770 -orderer.example.com | [829 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [82a 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:36772 -orderer.example.com | [82b 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.18.0.7:36772 -orderer.example.com | [82c 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update message for channel businesschannel -orderer.example.com | [82d 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -orderer.example.com | [82e 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [82f 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -orderer.example.com | [830 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [831 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -orderer.example.com | [832 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [833 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -orderer.example.com | ZM8rwLlgV6XUeTLW -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [834 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116278 gate 1513088383264448000 evaluation starts -orderer.example.com | [835 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116278 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [836 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116278 processing identity 0 with bytes of 0a074f7267324d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b67417749424167495142487a565451465670357636657347472f4146767044414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544661467730794e7a45794d5441774f4451774d5446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414549514f2b6d3649736c4a37534732682f415774365570564762496648312b586b0a454541534c76597a3177514c576837336a556d72446530473755684c355275796d6b337548312b5156534b587364553833474e7337714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416748545163787371594e4a58540a364f6b4c4e464e7353654b6b556e30444a50324c4e444f596a3261704a6a3077436759494b6f5a497a6a30454177494452774177524149674d6e6f444c7976420a396f4e6c4a6c564e5876647371582f72722f614c6743626c5952626374304c36575538434941774a6964677163706e565737344f3334556268416e65715143660a5a4d3872774c6c675636585565544c570a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [837 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116278 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -orderer.example.com | [838 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116278 principal evaluation fails -orderer.example.com | [839 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116278 gate 1513088383264448000 evaluation fails -orderer.example.com | [83a 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [83b 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [83c 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -orderer.example.com | [83d 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -orderer.example.com | [83e 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -orderer.example.com | [83f 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -orderer.example.com | [840 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [841 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -orderer.example.com | [842 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116288 gate 1513088383265238600 evaluation starts -orderer.example.com | [843 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116288 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [844 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116288 processing identity 0 with bytes of 0a074f7267324d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b67417749424167495142487a565451465670357636657347472f4146767044414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544661467730794e7a45794d5441774f4451774d5446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414549514f2b6d3649736c4a37534732682f415774365570564762496648312b586b0a454541534c76597a3177514c576837336a556d72446530473755684c355275796d6b337548312b5156534b587364553833474e7337714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416748545163787371594e4a58540a364f6b4c4e464e7353654b6b556e30444a50324c4e444f596a3261704a6a3077436759494b6f5a497a6a30454177494452774177524149674d6e6f444c7976420a396f4e6c4a6c564e5876647371582f72722f614c6743626c5952626374304c36575538434941774a6964677163706e565737344f3334556268416e65715143660a5a4d3872774c6c675636585565544c570a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [845 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | [846 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [847 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116288 principal matched by identity 0 -orderer.example.com | [848 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 9f eb e8 ee 7b 4a f3 74 1b d1 a3 2c bc f3 c4 c4 |....{J.t...,....| -orderer.example.com | 00000010 e6 38 39 95 ee 94 09 45 dd 7d 63 64 0c 57 c0 c0 |.89....E.}cd.W..| -orderer.example.com | [849 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 69 11 8e f0 c2 d4 24 27 90 9c fd 3e |0D. i.....$'...>| -orderer.example.com | 00000010 35 46 b1 37 39 c0 a2 ee 7f 01 ec 09 0c 5e 5e ae |5F.79........^^.| -orderer.example.com | 00000020 d3 36 ff 7b 02 20 5b 4d b6 b8 c6 14 f7 cf e9 35 |.6.{. [M.......5| -orderer.example.com | 00000030 b5 ab 1d 4a e9 44 be 0d 8c 29 35 6d 2f c9 bb c6 |...J.D...)5m/...| -orderer.example.com | 00000040 54 d3 25 30 f2 6f |T.%0.o| -orderer.example.com | [84a 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116288 principal evaluation succeeds for identity 0 -orderer.example.com | [84b 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116288 gate 1513088383265238600 evaluation succeeds -orderer.example.com | [84c 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [84d 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [84e 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -orderer.example.com | [84f 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -orderer.example.com | [850 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -orderer.example.com | [851 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -orderer.example.com | [852 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [853 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [854 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [855 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [856 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [857 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [858 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [859 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [85a 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [85b 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [85c 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [85d 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [85e 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [85f 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [860 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [861 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -orderer.example.com | [862 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins -orderer.example.com | [863 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [864 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [865 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [866 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [867 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [868 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [869 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org2MSP] -orderer.example.com | [86a 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [86b 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [86c 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org2MSP looking up path [] -orderer.example.com | [86d 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -orderer.example.com | [86e 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420116ae0 gate 1513088383269021000 evaluation starts -orderer.example.com | [86f 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116ae0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [870 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116ae0 processing identity 0 with bytes of 0a074f7267324d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b67417749424167495142487a565451465670357636657347472f4146767044414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544661467730794e7a45794d5441774f4451774d5446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414549514f2b6d3649736c4a37534732682f415774365570564762496648312b586b0a454541534c76597a3177514c576837336a556d72446530473755684c355275796d6b337548312b5156534b587364553833474e7337714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416748545163787371594e4a58540a364f6b4c4e464e7353654b6b556e30444a50324c4e444f596a3261704a6a3077436759494b6f5a497a6a30454177494452774177524149674d6e6f444c7976420a396f4e6c4a6c564e5876647371582f72722f614c6743626c5952626374304c36575538434941774a6964677163706e565737344f3334556268416e65715143660a5a4d3872774c6c675636585565544c570a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [871 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP -orderer.example.com | [872 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116ae0 principal matched by identity 0 -orderer.example.com | [873 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 07 bb 89 6b b2 c6 1a e0 2f 9a d6 d8 e5 dc f2 23 |...k..../......#| -orderer.example.com | 00000010 87 5b 62 90 21 78 f3 2c 3f 1b 88 91 6a da e1 4e |.[b.!x.,?...j..N| -orderer.example.com | [874 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 bc e8 f3 06 59 cd f4 78 0f 09 29 |0E.!.....Y..x..)| -orderer.example.com | 00000010 ca 6a a7 af c2 d5 d3 1b f2 69 e6 75 d8 55 90 38 |.j.......i.u.U.8| -orderer.example.com | 00000020 5a 65 68 7e c2 02 20 1f 09 19 79 f4 d3 5c 0e 72 |Zeh~.. ...y..\.r| -orderer.example.com | 00000030 ae 00 af d6 4b ad 09 83 09 4c 5d 11 75 74 30 4c |....K....L].ut0L| -orderer.example.com | 00000040 ab 56 80 1b d4 e6 6d |.V....m| -orderer.example.com | [875 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116ae0 principal evaluation succeeds for identity 0 -orderer.example.com | [876 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420116ae0 gate 1513088383269021000 evaluation succeeds -orderer.example.com | [877 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins -orderer.example.com | [878 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -orderer.example.com | [879 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [87a 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [87b 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [87c 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [87d 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [87e 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [87f 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [880 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [881 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | [882 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [883 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | [884 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [885 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [886 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [887 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [888 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [889 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [88a 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [88b 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [88c 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [88d 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [88e 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [88f 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [890 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [891 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [892 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [893 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [894 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [895 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [896 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [897 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [898 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [899 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [89a 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [89b 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [89c 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [89d 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [89e 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [89f 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [8a0 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -orderer.example.com | ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -orderer.example.com | Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -orderer.example.com | 0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [8a1 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [8a2 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [8a3 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [8a4 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [8a5 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [8a6 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [8a7 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [8a8 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [8a9 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [8aa 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -orderer.example.com | [8ab 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [8ac 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [8ad 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [8ae 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [8af 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -orderer.example.com | +8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -orderer.example.com | SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -orderer.example.com | uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -orderer.example.com | cNvAXU8LlQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [8b0 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -orderer.example.com | ZM8rwLlgV6XUeTLW -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [8b1 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -orderer.example.com | ZM8rwLlgV6XUeTLW -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [8b2 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [8b3 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [8b4 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [8b5 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [8b6 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [8b7 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | [8b8 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [8b9 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [8ba 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [8bb 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [8bc 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -orderer.example.com | z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -orderer.example.com | GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -orderer.example.com | OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -orderer.example.com | xEFWkMtGbgY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [8bd 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -orderer.example.com | OwJpoynNCyKsWozuVw== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [8be 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -orderer.example.com | OwJpoynNCyKsWozuVw== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [8bf 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [8c0 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [8c1 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [8c2 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -orderer.example.com | [8c3 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -orderer.example.com | [8c4 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -orderer.example.com | [8c5 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -orderer.example.com | [8c6 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -orderer.example.com | [8c7 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -orderer.example.com | [8c8 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -orderer.example.com | [8c9 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -orderer.example.com | [8ca 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -orderer.example.com | [8cb 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -orderer.example.com | [8cc 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -orderer.example.com | [8cd 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -orderer.example.com | [8ce 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -orderer.example.com | [8cf 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -orderer.example.com | [8d0 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -orderer.example.com | [8d1 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -orderer.example.com | [8d2 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [8d3 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [8d4 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [8d5 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [8d6 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [8d7 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -orderer.example.com | [8d8 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [8d9 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [8da 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [8db 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [8dc 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | [8dd 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [8de 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | [8df 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | [8e0 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | [8e1 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [8e2 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [8e3 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [8e4 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [8e5 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [8e6 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [8e7 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [8e8 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [8e9 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [8ea 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [8eb 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [8ec 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [8ed 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [8ee 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [8ef 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [8f0 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [8f1 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [8f2 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [8f3 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [8f4 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [8f5 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [8f6 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [8f7 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [8f8 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [8f9 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [8fa 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -orderer.example.com | [8fb 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [8fc 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [8fd 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [8fe 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [8ff 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [900 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [901 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [902 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [903 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [904 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [905 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [906 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [907 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [908 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [909 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -orderer.example.com | [90a 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [90b 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [90c 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -orderer.example.com | [90d 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -orderer.example.com | [90e 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [90f 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [910 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [911 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [912 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [913 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608FFCABFD10522...BE0D8C29356D2FC9BBC654D32530F26F -orderer.example.com | [914 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: 49651D55C31F9E75B6DDD7DB1E7B66357EF4C99D579C91D027AEA79A30753BE3 -orderer.example.com | [915 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -orderer.example.com | [916 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [917 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -orderer.example.com | [918 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [919 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -orderer.example.com | [91a 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [91b 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN -orderer.example.com | tV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE -orderer.example.com | +EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q -orderer.example.com | XZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [91c 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116a38 gate 1513088383308817400 evaluation starts -orderer.example.com | [91d 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116a38 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [91e 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116a38 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624b6741774942416749515a514232667a33766f54575838334f36754e592b796a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d566f58445449334d5449784d4441344e4441784d566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415273516c4d6e6a7836777a4c5133455649357a4357785845485248413046674a6f6148586363505a595a4d746743534b684e0a7456346d424f31762b785565392b313755394f2f467037694b54616c68622f65676e71776f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344416b43387863556452672b44333878734373535a64304b343343724f450a2b455833697a4773554d7931527a414b42676771686b6a4f5051514441674e494144424641694541676e494d4e3768725a5370345561565238752b65746f2f710a585a4e4d476a6b7664614150486f316176673843494736454a4336356e6f6a684b6c754f53484841596b6a72356347646d6159455249576644737935544667640a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [91f 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [920 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [921 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116a38 principal matched by identity 0 -orderer.example.com | [922 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 49 65 1d 55 c3 1f 9e 75 b6 dd d7 db 1e 7b 66 35 |Ie.U...u.....{f5| -orderer.example.com | 00000010 7e f4 c9 9d 57 9c 91 d0 27 ae a7 9a 30 75 3b e3 |~...W...'...0u;.| -orderer.example.com | [923 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 79 72 d4 c7 42 2d d5 71 29 3b 9c 05 |0D. yr..B-.q);..| -orderer.example.com | 00000010 6a 80 eb c3 19 da 53 aa 0a d8 3d 72 3d 5d a1 50 |j.....S...=r=].P| -orderer.example.com | 00000020 8c f8 a3 0c 02 20 0b f8 2e 99 69 05 81 c7 a6 de |..... ....i.....| -orderer.example.com | 00000030 0c 1b 2b 1b 1c 42 c3 f7 18 62 86 75 32 38 e9 32 |..+..B...b.u28.2| -orderer.example.com | 00000040 82 4f de 74 bb df |.O.t..| -orderer.example.com | [924 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116a38 principal evaluation succeeds for identity 0 -orderer.example.com | [925 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116a38 gate 1513088383308817400 evaluation succeeds -orderer.example.com | [926 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [927 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [928 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers -orderer.example.com | [929 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -orderer.example.com | [92a 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -orderer.example.com | [92b 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -orderer.example.com | [92c 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:36772 -orderer.example.com | [92d 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [92e 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [92f 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [930 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [931 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [932 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [933 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [934 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [935 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [936 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [937 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [938 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [939 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [93a 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [93b 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [93c 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -orderer.example.com | [93d 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins -orderer.example.com | [93f 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [93e 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/flogging] serveHTTP2Transport.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.3:7050->172.18.0.7:36772: read: connection reset by peer -orderer.example.com | [941 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36770: rpc error: code = Canceled desc = context canceled -orderer.example.com | [942 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [940 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [944 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [945 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [943 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:36772: rpc error: code = Canceled desc = context canceled -orderer.example.com | [946 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [948 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [947 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [949 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org2MSP] -orderer.example.com | [94a 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [94b 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [94c 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org2MSP looking up path [] -orderer.example.com | [94d 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -orderer.example.com | [94e 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420116a50 gate 1513088383321054000 evaluation starts -orderer.example.com | [94f 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116a50 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [950 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116a50 processing identity 0 with bytes of 0a074f7267324d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b67417749424167495142487a565451465670357636657347472f4146767044414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544661467730794e7a45794d5441774f4451774d5446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414549514f2b6d3649736c4a37534732682f415774365570564762496648312b586b0a454541534c76597a3177514c576837336a556d72446530473755684c355275796d6b337548312b5156534b587364553833474e7337714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416748545163787371594e4a58540a364f6b4c4e464e7353654b6b556e30444a50324c4e444f596a3261704a6a3077436759494b6f5a497a6a30454177494452774177524149674d6e6f444c7976420a396f4e6c4a6c564e5876647371582f72722f614c6743626c5952626374304c36575538434941774a6964677163706e565737344f3334556268416e65715143660a5a4d3872774c6c675636585565544c570a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [951 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP -orderer.example.com | [952 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116a50 principal matched by identity 0 -orderer.example.com | [953 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 07 bb 89 6b b2 c6 1a e0 2f 9a d6 d8 e5 dc f2 23 |...k..../......#| -orderer.example.com | 00000010 87 5b 62 90 21 78 f3 2c 3f 1b 88 91 6a da e1 4e |.[b.!x.,?...j..N| -orderer.example.com | [954 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 bc e8 f3 06 59 cd f4 78 0f 09 29 |0E.!.....Y..x..)| -orderer.example.com | 00000010 ca 6a a7 af c2 d5 d3 1b f2 69 e6 75 d8 55 90 38 |.j.......i.u.U.8| -orderer.example.com | 00000020 5a 65 68 7e c2 02 20 1f 09 19 79 f4 d3 5c 0e 72 |Zeh~.. ...y..\.r| -orderer.example.com | 00000030 ae 00 af d6 4b ad 09 83 09 4c 5d 11 75 74 30 4c |....K....L].ut0L| -orderer.example.com | 00000040 ab 56 80 1b d4 e6 6d |.V....m| -orderer.example.com | [955 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116a50 principal evaluation succeeds for identity 0 -orderer.example.com | [956 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420116a50 gate 1513088383321054000 evaluation succeeds -orderer.example.com | [957 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins -orderer.example.com | [958 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -orderer.example.com | [959 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [95a 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [95b 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [95c 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [95d 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [95e 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [95f 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [960 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [961 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | [962 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [963 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | [964 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [965 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [966 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [967 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [968 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [969 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [96a 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [96b 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [96c 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [96d 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [96e 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [96f 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [970 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [971 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [972 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [973 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [974 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [975 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [976 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [977 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [978 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [979 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [97a 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [97b 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [97c 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [97d 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [97e 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [97f 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [980 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -orderer.example.com | ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -orderer.example.com | Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -orderer.example.com | 0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [981 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [982 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [983 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [984 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [985 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [986 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [987 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [988 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [989 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [98a 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | [98b 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [98c 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [98d 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [98e 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [98f 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -orderer.example.com | z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -orderer.example.com | GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -orderer.example.com | OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -orderer.example.com | xEFWkMtGbgY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [990 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -orderer.example.com | OwJpoynNCyKsWozuVw== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [991 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -orderer.example.com | OwJpoynNCyKsWozuVw== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [992 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [993 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [994 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [995 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [996 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [997 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -orderer.example.com | [998 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [999 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [99a 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [99b 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [99c 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -orderer.example.com | +8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -orderer.example.com | SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -orderer.example.com | uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -orderer.example.com | cNvAXU8LlQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [99d 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -orderer.example.com | ZM8rwLlgV6XUeTLW -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [99e 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -orderer.example.com | ZM8rwLlgV6XUeTLW -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [99f 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [9a0 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [9a1 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [9a2 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -orderer.example.com | [9a3 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -orderer.example.com | [9a4 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -orderer.example.com | [9a5 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -orderer.example.com | [9a6 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -orderer.example.com | [9a7 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -orderer.example.com | [9a8 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -orderer.example.com | [9a9 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -orderer.example.com | [9aa 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -orderer.example.com | [9ab 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -orderer.example.com | [9ac 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -orderer.example.com | [9ad 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -orderer.example.com | [9ae 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -orderer.example.com | [9af 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -orderer.example.com | [9b0 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -orderer.example.com | [9b1 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -orderer.example.com | [9b2 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [9b3 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [9b4 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [9b5 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [9b6 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [9b7 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -orderer.example.com | [9b8 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [9b9 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [9ba 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [9bb 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [9bc 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | [9bd 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | [9be 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [9bf 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | [9c0 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | [9c1 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [9c2 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [9c3 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [9c4 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [9c5 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [9c6 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [9c7 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [9c8 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [9c9 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [9ca 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [9cb 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [9cc 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [9cd 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [9ce 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [9cf 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [9d0 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [9d1 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [9d2 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [9d3 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [9d4 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [9d5 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [9d6 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -orderer.example.com | [9d7 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [9d8 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [9d9 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [9da 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [9db 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [9dc 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [9dd 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [9de 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [9df 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [9e0 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [9e1 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [9e2 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [9e3 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [9e4 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [9e5 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [9e6 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [9e7 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [9e8 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [9e9 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -orderer.example.com | [9ea 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [9eb 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [9ec 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -orderer.example.com | [9ed 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -orderer.example.com | [9ee 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [9ef 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [9f0 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [9f1 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [9f2 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [9f3 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...B6FA6CC63579766702F2D59568356AF2 -orderer.example.com | [9f4 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: EB4424609345F17855040034CC7F16366B2B2BD61A26E49994B2373649080ABD -orderer.example.com | [9f5 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 2 to 3, setting lastConfigBlockNum from 1 to 2 -orderer.example.com | [9f6 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [9f7 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [9f8 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | [9f9 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [9fa 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [9fb 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...B6FA6CC63579766702F2D59568356AF2 -orderer.example.com | [9fc 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: BD8C45264FC22347355103694C09621774B8B055F799824ACC49AD61A701F2BF -orderer.example.com | [9fd 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] commitBlock.Append.Append.writeBlock -> DEBU Wrote block 2 -orderer.example.com | [9fe 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 2 -orderer.example.com | [9ff 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [a00 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.6:53324 -orderer.example.com | [a01 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.6:53324 -orderer.example.com | [a02 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [a03 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a04 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [a05 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a06 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [a07 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [a08 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQfxCgdHnKWSB1ck7NCIf+4jAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEttPjC3up1Q77jKnXYIA7Wu2YrLoAKqPa -orderer.example.com | Cj9pdoCw3vR9Imf/c8dgnaRHBvU+dgxN5en1+n4tkq0DFamZ843WpqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAKrUoMIb -orderer.example.com | 2WwA9949iLHY+idNaQnD9S2wuUoml0JPNu/NAiBQlxXukEi49c9p1+nROwn0IuOM -orderer.example.com | 3NSyqtTUGH26cyVUgw== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a09 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e458 gate 1513088386374261500 evaluation starts -orderer.example.com | [a0a 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e458 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a0b 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e458 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749516678436764486e4b57534231636b374e4349662b346a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741457474506a43337570315137376a4b6e585949413757753259724c6f414b7150610a436a3970646f437733765239496d662f633864676e6152484276552b6467784e35656e312b6e34746b71304446616d5a3834335770714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a3045417749445341417752514968414b72556f4d49620a3257774139393439694c48592b69644e61516e443953327775556f6d6c304a504e752f4e416942516c7858756b45693439633970312b6e524f776e3049754f4d0a334e537971745455474832366379565567773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [a0c 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e458 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | [a0d 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e458 principal evaluation fails -orderer.example.com | [a0e 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e458 gate 1513088386374261500 evaluation fails -orderer.example.com | [a0f 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [a10 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [a11 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -orderer.example.com | [a12 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -orderer.example.com | [a13 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [a14 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [a15 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a16 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [a17 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e498 gate 1513088386376027800 evaluation starts -orderer.example.com | [a18 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e498 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a19 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e498 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749516678436764486e4b57534231636b374e4349662b346a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741457474506a43337570315137376a4b6e585949413757753259724c6f414b7150610a436a3970646f437733765239496d662f633864676e6152484276552b6467784e35656e312b6e34746b71304446616d5a3834335770714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a3045417749445341417752514968414b72556f4d49620a3257774139393439694c48592b69644e61516e443953327775556f6d6c304a504e752f4e416942516c7858756b45693439633970312b6e524f776e3049754f4d0a334e537971745455474832366379565567773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [a1a 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [a1b 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [a1c 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e498 principal matched by identity 0 -orderer.example.com | [a1d 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 0f a5 8f 8c 77 e1 b0 20 a3 25 4d 9a 13 96 30 89 |....w.. .%M...0.| -orderer.example.com | 00000010 f0 94 4a e2 a3 f2 1c 92 a4 c1 c5 b9 c0 42 d9 03 |..J..........B..| -orderer.example.com | [a1e 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7c 7b 86 0d f3 5d 46 04 51 ce 10 84 |0D. |{...]F.Q...| -orderer.example.com | 00000010 e7 07 db 40 24 17 8a 63 b0 30 10 78 33 50 84 de |...@$..c.0.x3P..| -orderer.example.com | 00000020 aa 58 b5 39 02 20 79 4d 1f 3f 42 93 85 c8 e1 c3 |.X.9. yM.?B.....| -orderer.example.com | 00000030 18 4c d4 8d 36 af d6 6e bc 10 31 a9 49 e3 2a 3d |.L..6..n..1.I.*=| -orderer.example.com | 00000040 57 62 eb 45 3f ba |Wb.E?.| -orderer.example.com | [a1f 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e498 principal evaluation succeeds for identity 0 -orderer.example.com | [a20 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e498 gate 1513088386376027800 evaluation succeeds -orderer.example.com | [a21 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [a22 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [a23 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -orderer.example.com | [a24 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [a25 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [a26 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [a27 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203880e0) start: > stop: > from 172.18.0.6:53324 -orderer.example.com | [a28 12-12 14:19:46.38 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 1 -orderer.example.com | [a29 12-12 14:19:46.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203880e0) for 172.18.0.6:53324 -orderer.example.com | [a2a 12-12 14:19:46.39 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 2 -orderer.example.com | [a2b 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203880e0) for 172.18.0.6:53324 -orderer.example.com | [a2c 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [a2d 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.5:33552 -orderer.example.com | [a2e 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.5:33552 -orderer.example.com | [a2f 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [a30 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a31 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [a32 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a33 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [a34 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [a35 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRALADzPPE97iyHtSxn9RqjfgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHbbFgxKR+4UJyrZzRgvS6CFZZxY7Pbi -orderer.example.com | Odp+osNIcE3Xvigd0wdt9TBstawIYqqncekYq/Gow7DZmYdR7nOFFL6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPkf6WVvtt9c -orderer.example.com | 0qvn754rGzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQC7onwy -orderer.example.com | Xg1MdE8XzzNqF0O4QX5DPfr1EaZNMNriGihkKwIgDrlllaiu+/kP74QuITuz6eUr -orderer.example.com | Zs7vWf/TFL+lCFpVqNE= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a36 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e058 gate 1513088386503629900 evaluation starts -orderer.example.com | [a37 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e058 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a38 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e058 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c41447a50504539376979487453786e3952716a666777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45794d4467304d4445775768634e4d6a63784d6a45774d4467304d4445770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424862624667784b522b34554a79725a7a526776533643465a5a7859375062690a4f64702b6f734e4963453358766967643077647439544273746177495971716e63656b59712f476f7737445a6d596452376e4f46464c366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506b6636575676747439630a3071766e37353472477a70522f38566b494b516c5871784249517a6e694b6c584d416f4743437147534d343942414d43413067414d455543495143376f6e77790a5867314d644538587a7a4e7146304f34515835445066723145615a4e4d4e72694769686b4b77496744726c6c6c6169752b2f6b50373451754954757a366555720a5a73377657662f54464c2b6c43467056714e453d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [a39 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e058 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | [a3a 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e058 principal evaluation fails -orderer.example.com | [a3b 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e058 gate 1513088386503629900 evaluation fails -orderer.example.com | [a3c 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [a3d 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [a3e 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -orderer.example.com | [a3f 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -orderer.example.com | [a40 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [a41 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [a42 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a43 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [a44 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0a0 gate 1513088386505268400 evaluation starts -orderer.example.com | [a45 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0a0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a46 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0a0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c41447a50504539376979487453786e3952716a666777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45794d4467304d4445775768634e4d6a63784d6a45774d4467304d4445770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424862624667784b522b34554a79725a7a526776533643465a5a7859375062690a4f64702b6f734e4963453358766967643077647439544273746177495971716e63656b59712f476f7737445a6d596452376e4f46464c366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506b6636575676747439630a3071766e37353472477a70522f38566b494b516c5871784249517a6e694b6c584d416f4743437147534d343942414d43413067414d455543495143376f6e77790a5867314d644538587a7a4e7146304f34515835445066723145615a4e4d4e72694769686b4b77496744726c6c6c6169752b2f6b50373451754954757a366555720a5a73377657662f54464c2b6c43467056714e453d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [a47 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [a48 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [a49 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0a0 principal matched by identity 0 -orderer.example.com | [a4a 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 97 99 61 58 3f 92 90 8f ab 55 59 b9 95 6d 1a 16 |..aX?....UY..m..| -orderer.example.com | 00000010 35 84 b1 5f 49 4f e0 5d 70 93 c7 a5 4d ce d8 6e |5.._IO.]p...M..n| -orderer.example.com | [a4b 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 1d c6 e5 a5 8d 7d 9b 89 39 c9 33 9d |0D. .....}..9.3.| -orderer.example.com | 00000010 c1 e0 1b 10 bc 35 27 86 9d 2d a8 fe 04 56 9b 46 |.....5'..-...V.F| -orderer.example.com | 00000020 ae c3 93 52 02 20 62 6d 92 c1 f6 b3 d0 a8 47 36 |...R. bm......G6| -orderer.example.com | 00000030 5d 31 a6 69 91 21 44 b7 ad 24 58 f6 78 7e 4a 11 |]1.i.!D..$X.x~J.| -orderer.example.com | 00000040 af 3e ef 1a 7b 18 |.>..{.| -orderer.example.com | [a4c 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0a0 principal evaluation succeeds for identity 0 -orderer.example.com | [a4d 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0a0 gate 1513088386505268400 evaluation succeeds -orderer.example.com | [a4e 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [a4f 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [a50 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -orderer.example.com | [a51 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [a52 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [a53 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [a54 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4200d3ce0) start: > stop: > from 172.18.0.5:33552 -orderer.example.com | [a55 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 1 -orderer.example.com | [a56 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3ce0) for 172.18.0.5:33552 -orderer.example.com | [a57 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 2 -orderer.example.com | [a58 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3ce0) for 172.18.0.5:33552 -orderer.example.com | [a59 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [a5a 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.4:60104 -orderer.example.com | [a5b 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.4:60104 -orderer.example.com | [a5c 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [a5d 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a5e 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [a5f 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a60 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [a61 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [a62 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGDCCAb+gAwIBAgIQHUKqjkG4EzqFzYBhVKiDXDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEvvO9+zYtRj0iGF59mG/hah0Pu/RoFfei -orderer.example.com | f+cdfmT/meA3Hq5c8VwZvcDrd9LOWzhpbhVWPSE++iqWuBNuNZc55qNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgYyekaRBc -orderer.example.com | HJDyS9hMK2kIbliGQhn65H8LUHIDlt22I8ECIBg0+i2f6Oc4x1ME19m5p5oSf2n8 -orderer.example.com | iyI6uwCYclK0dU1/ -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a63 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116038 gate 1513088386670549000 evaluation starts -orderer.example.com | [a64 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116038 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a65 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116038 processing identity 0 with bytes of 0a074f7267324d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b67417749424167495148554b716a6b4734457a71467a594268564b69445844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544661467730794e7a45794d5441774f4451774d5446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414576764f392b7a5974526a3069474635396d472f6861683050752f526f466665690a662b6364666d542f6d654133487135633856775a7663447264394c4f577a6870626856575053452b2b69715775424e754e5a633535714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416748545163787371594e4a58540a364f6b4c4e464e7353654b6b556e30444a50324c4e444f596a3261704a6a3077436759494b6f5a497a6a30454177494452774177524149675979656b615242630a484a44795339684d4b326b49626c694751686e363548384c554849446c74323249384543494267302b693266364f633478314d4531396d3570356f5366326e380a6979493675774359636c4b306455312f0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [a66 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116038 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -orderer.example.com | [a67 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116038 principal evaluation fails -orderer.example.com | [a68 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116038 gate 1513088386670549000 evaluation fails -orderer.example.com | [a69 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [a6a 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [a6b 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -orderer.example.com | [a6c 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -orderer.example.com | [a6d 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [a6e 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [a6f 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a70 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [a71 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116278 gate 1513088386671756900 evaluation starts -orderer.example.com | [a72 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116278 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a73 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116278 processing identity 0 with bytes of 0a074f7267324d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b67417749424167495148554b716a6b4734457a71467a594268564b69445844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544661467730794e7a45794d5441774f4451774d5446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414576764f392b7a5974526a3069474635396d472f6861683050752f526f466665690a662b6364666d542f6d654133487135633856775a7663447264394c4f577a6870626856575053452b2b69715775424e754e5a633535714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416748545163787371594e4a58540a364f6b4c4e464e7353654b6b556e30444a50324c4e444f596a3261704a6a3077436759494b6f5a497a6a30454177494452774177524149675979656b615242630a484a44795339684d4b326b49626c694751686e363548384c554849446c74323249384543494267302b693266364f633478314d4531396d3570356f5366326e380a6979493675774359636c4b306455312f0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [a74 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116278 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | [a75 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116278 principal evaluation fails -orderer.example.com | [a76 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116278 gate 1513088386671756900 evaluation fails -orderer.example.com | [a77 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [a78 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [a79 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [a7a 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116280 gate 1513088386672608200 evaluation starts -orderer.example.com | [a7b 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116280 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a7c 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116280 processing identity 0 with bytes of 0a074f7267324d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b67417749424167495148554b716a6b4734457a71467a594268564b69445844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544661467730794e7a45794d5441774f4451774d5446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414576764f392b7a5974526a3069474635396d472f6861683050752f526f466665690a662b6364666d542f6d654133487135633856775a7663447264394c4f577a6870626856575053452b2b69715775424e754e5a633535714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416748545163787371594e4a58540a364f6b4c4e464e7353654b6b556e30444a50324c4e444f596a3261704a6a3077436759494b6f5a497a6a30454177494452774177524149675979656b615242630a484a44795339684d4b326b49626c694751686e363548384c554849446c74323249384543494267302b693266364f633478314d4531396d3570356f5366326e380a6979493675774359636c4b306455312f0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [a7d 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | [a7e 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [a7f 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116280 principal matched by identity 0 -orderer.example.com | [a80 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 fd 4c e0 f5 73 80 7f dc 6d 1e 0e d7 59 ab d9 20 |.L..s...m...Y.. | -orderer.example.com | 00000010 1c 2c 89 83 61 f3 0f 0a 82 25 5e 30 cc 1d cb 42 |.,..a....%^0...B| -orderer.example.com | [a81 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8b 79 cf fa 20 ba 7e a4 70 f8 90 |0E.!..y.. .~.p..| -orderer.example.com | 00000010 aa f3 eb 16 64 6d a4 42 49 39 d6 9c 80 44 fa a8 |....dm.BI9...D..| -orderer.example.com | 00000020 69 81 95 e2 43 02 20 52 4f 18 21 f1 e0 92 d9 e5 |i...C. RO.!.....| -orderer.example.com | 00000030 30 7b 5e 2b a0 d7 46 f6 a3 e7 83 1f b7 13 7b db |0{^+..F.......{.| -orderer.example.com | 00000040 7b 27 5e 0f 55 f4 b7 |{'^.U..| -orderer.example.com | [a82 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116280 principal evaluation succeeds for identity 0 -orderer.example.com | [a83 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116280 gate 1513088386672608200 evaluation succeeds -orderer.example.com | [a84 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [a85 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [a86 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -orderer.example.com | [a87 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [a88 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [a89 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [a8a 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420112980) start: > stop: > from 172.18.0.4:60104 -orderer.example.com | [a8b 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 1 -orderer.example.com | [a8c 12-12 14:19:46.68 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420112980) for 172.18.0.4:60104 -orderer.example.com | [a8d 12-12 14:19:46.68 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 2 -orderer.example.com | [a8e 12-12 14:19:46.68 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420112980) for 172.18.0.4:60104 -orderer.example.com | [a8f 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [a90 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.2:35612 -orderer.example.com | [a91 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.2:35612 -orderer.example.com | [a92 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [a93 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a94 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [a95 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a96 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [a97 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [a98 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAPGelOdxXc9oj513U/gIAoswCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDExWhcNMjcxMjEwMDg0MDEx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABP48rqtcNNXgWStMJAAcSs0pMybkXlxN -orderer.example.com | g+bvwZCmkq1DbIGJwn5LGRQJ/dnP/9vvQCckEiPkarSuoH3FtkvHuKejTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIB00HMbKmDSV -orderer.example.com | 0+jpCzRTbEnipFJ9AyT9izQzmI9mqSY9MAoGCCqGSM49BAMCA0cAMEQCIFhNymPu -orderer.example.com | 7ilbI62JiuL9JUYa+f6+J31qLbVVou4nkbwIAiBG8ex/sGf2cTf5F51gUhhCQZ42 -orderer.example.com | dERXC0iEeQyYe63F5w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a99 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201163a8 gate 1513088386827388900 evaluation starts -orderer.example.com | [a9a 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163a8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a9b 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163a8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952415047656c4f64785863396f6a353133552f6749416f7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45794d4467304d4445785768634e4d6a63784d6a45774d4467304d4445780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142503438727174634e4e58675753744d4a414163537330704d79626b586c784e0a672b6276775a436d6b7131446249474a776e354c4752514a2f646e502f3976765143636b4569506b617253756f483346746b7648754b656a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149423030484d624b6d4453560a302b6a70437a525462456e6970464a3941795439697a517a6d49396d715359394d416f4743437147534d343942414d43413063414d4551434946684e796d50750a37696c624936324a69754c394a5559612b66362b4a3331714c6256566f75346e6b627749416942473865782f73476632635466354635316755686843515a34320a6445525843306945655179596536334635773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [a9c 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -orderer.example.com | [a9d 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163a8 principal evaluation fails -orderer.example.com | [a9e 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201163a8 gate 1513088386827388900 evaluation fails -orderer.example.com | [a9f 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [aa0 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [aa1 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -orderer.example.com | [aa2 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -orderer.example.com | [aa3 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [aa4 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [aa5 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [aa6 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [aa7 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201163c0 gate 1513088386828403700 evaluation starts -orderer.example.com | [aa8 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163c0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [aa9 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163c0 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952415047656c4f64785863396f6a353133552f6749416f7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45794d4467304d4445785768634e4d6a63784d6a45774d4467304d4445780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142503438727174634e4e58675753744d4a414163537330704d79626b586c784e0a672b6276775a436d6b7131446249474a776e354c4752514a2f646e502f3976765143636b4569506b617253756f483346746b7648754b656a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149423030484d624b6d4453560a302b6a70437a525462456e6970464a3941795439697a517a6d49396d715359394d416f4743437147534d343942414d43413063414d4551434946684e796d50750a37696c624936324a69754c394a5559612b66362b4a3331714c6256566f75346e6b627749416942473865782f73476632635466354635316755686843515a34320a6445525843306945655179596536334635773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [aaa 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163c0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | [aab 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163c0 principal evaluation fails -orderer.example.com | [aac 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201163c0 gate 1513088386828403700 evaluation fails -orderer.example.com | [aad 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [aae 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [aaf 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [ab0 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e238 gate 1513088386830872800 evaluation starts -orderer.example.com | [ab1 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [ab2 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952415047656c4f64785863396f6a353133552f6749416f7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45794d4467304d4445785768634e4d6a63784d6a45774d4467304d4445780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142503438727174634e4e58675753744d4a414163537330704d79626b586c784e0a672b6276775a436d6b7131446249474a776e354c4752514a2f646e502f3976765143636b4569506b617253756f483346746b7648754b656a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149423030484d624b6d4453560a302b6a70437a525462456e6970464a3941795439697a517a6d49396d715359394d416f4743437147534d343942414d43413063414d4551434946684e796d50750a37696c624936324a69754c394a5559612b66362b4a3331714c6256566f75346e6b627749416942473865782f73476632635466354635316755686843515a34320a6445525843306945655179596536334635773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [ab3 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | [ab4 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [ab5 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 principal matched by identity 0 -orderer.example.com | [ab6 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 01 ec 46 dd ff c9 0e 52 26 84 e0 17 22 82 bf 25 |..F....R&..."..%| -orderer.example.com | 00000010 02 93 89 0e a6 7c 2c 1e a6 02 81 60 52 47 65 35 |.....|,....`RGe5| -orderer.example.com | [ab7 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 54 65 9c c3 22 82 17 db fb 72 0c e2 |0D. Te.."....r..| -orderer.example.com | 00000010 fc aa 51 b1 b1 3c ca 37 6c 3a b5 fa 82 07 1c 0a |..Q..<.7l:......| -orderer.example.com | 00000020 50 a2 1f ff 02 20 1e a9 76 f5 83 0b 4f e7 0f 56 |P.... ..v...O..V| -orderer.example.com | 00000030 61 6f b1 c7 c9 f0 89 67 ee 67 cf 79 74 d3 04 b9 |ao.....g.g.yt...| -orderer.example.com | 00000040 75 06 47 7f bf 4c |u.G..L| -orderer.example.com | [ab8 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 principal evaluation succeeds for identity 0 -orderer.example.com | [ab9 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e238 gate 1513088386830872800 evaluation succeeds -orderer.example.com | [aba 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [abb 12-12 14:19:46.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [abc 12-12 14:19:46.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -orderer.example.com | [abd 12-12 14:19:46.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [abe 12-12 14:19:46.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [abf 12-12 14:19:46.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [ac0 12-12 14:19:46.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420307b20) start: > stop: > from 172.18.0.2:35612 -orderer.example.com | [ac1 12-12 14:19:46.84 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 1 -orderer.example.com | [ac2 12-12 14:19:46.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420307b20) for 172.18.0.2:35612 -orderer.example.com | [ac3 12-12 14:19:46.86 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 2 -orderer.example.com | [ac4 12-12 14:19:46.86 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420307b20) for 172.18.0.2:35612 -orderer.example.com | [ac5 12-12 14:19:49.42 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [ac6 12-12 14:19:49.42 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:36824 -orderer.example.com | [ac7 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:36824 with txid 'd107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d' of type ENDORSER_TRANSACTION -orderer.example.com | [ac8 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -orderer.example.com | [ac9 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [aca 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -orderer.example.com | [acb 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [acc 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -orderer.example.com | [acd 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [ace 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -orderer.example.com | pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -orderer.example.com | q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -orderer.example.com | gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -orderer.example.com | OwJpoynNCyKsWozuVw== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [acf 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3d0 gate 1513088396960437500 evaluation starts -orderer.example.com | [ad0 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3d0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [ad1 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3d0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [ad2 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3d0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | [ad3 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3d0 principal evaluation fails -orderer.example.com | [ad4 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3d0 gate 1513088396960437500 evaluation fails -orderer.example.com | [ad5 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [ad6 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [ad7 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -orderer.example.com | [ad8 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -orderer.example.com | [ad9 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -orderer.example.com | [ada 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -orderer.example.com | [adb 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [adc 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -orderer.example.com | [add 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3e0 gate 1513088396961875100 evaluation starts -orderer.example.com | [ade 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [adf 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [ae0 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -orderer.example.com | [ae1 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e0 principal evaluation fails -orderer.example.com | [ae2 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3e0 gate 1513088396961875100 evaluation fails -orderer.example.com | [ae3 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [ae4 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [ae5 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -orderer.example.com | [ae6 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e238 gate 1513088396963141400 evaluation starts -orderer.example.com | [ae7 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [ae8 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [ae9 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [aea 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [aeb 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 principal matched by identity 0 -orderer.example.com | [aec 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 fb 32 b1 50 a3 8f 40 16 a9 f3 89 b6 d3 de 29 55 |.2.P..@.......)U| -orderer.example.com | 00000010 44 c8 b5 8d 73 41 bb 60 82 05 b7 76 11 2a 56 95 |D...sA.`...v.*V.| -orderer.example.com | [aed 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 57 90 03 73 0d 3c fc 1f 60 e9 ed b0 |0D. W..s.<..`...| -orderer.example.com | 00000010 8e d0 42 85 b6 e9 74 cd 9a 75 1a 53 d1 e6 be 3c |..B...t..u.S...<| -orderer.example.com | 00000020 82 a4 87 6e 02 20 6f 92 6a 2c 57 e3 82 cc 43 c3 |...n. o.j,W...C.| -orderer.example.com | 00000030 88 b2 37 5b ee 1c 4b 0f d1 3d 62 70 d0 cc bd 0f |..7[..K..=bp....| -orderer.example.com | 00000040 aa d4 40 c3 65 fd |..@.e.| -orderer.example.com | [aee 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 principal evaluation succeeds for identity 0 -orderer.example.com | [aef 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e238 gate 1513088396963141400 evaluation succeeds -orderer.example.com | [af0 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers -orderer.example.com | [af1 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -orderer.example.com | [af2 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -orderer.example.com | [af3 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -orderer.example.com | [af4 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -orderer.example.com | [af5 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -orderer.example.com | [af6 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:36824 -orderer.example.com | [af7 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -orderer.example.com | [af8 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:36824: rpc error: code = Canceled desc = context canceled -orderer.example.com | [af9 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [afa 12-12 14:19:57.06 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [afb 12-12 14:19:57.06 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:36832 -orderer.example.com | [afc 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -orderer.example.com | [afd 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [afe 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [aff 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [b00 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [b01 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...CA99CE80B8FE29256E2A87370395FD73 -orderer.example.com | [b02 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 76418EF992EB9C7837BF3050D891F6CC89F2DDD4DC078924E4BF958A76653050 -orderer.example.com | [b03 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [b04 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [b05 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | [b06 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [b07 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [b08 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...CA99CE80B8FE29256E2A87370395FD73 -orderer.example.com | [b09 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 7CEBF42B6F5D32D0304FDC1AE3CD4AAD907155866E02F0149C7B83187C218750 -orderer.example.com | [b0a 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] commitBlock.Append.Append.writeBlock -> DEBU Wrote block 3 -orderer.example.com | [b0b 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 3 -orderer.example.com | [b0c 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 3 -orderer.example.com | [b0d 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203880e0) for 172.18.0.6:53324 -orderer.example.com | [b0e 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> WARN [channel: businesschannel] Error sending to 172.18.0.6:53324: rpc error: code = Unavailable desc = transport is closing -orderer.example.com | [b0f 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [b10 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 3 -orderer.example.com | [b11 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420307b20) for 172.18.0.2:35612 -orderer.example.com | [b12 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> WARN [channel: businesschannel] Error sending to 172.18.0.2:35612: rpc error: code = Unavailable desc = transport is closing -orderer.example.com | [b13 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [b14 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 3 -orderer.example.com | [b15 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420112980) for 172.18.0.4:60104 -orderer.example.com | [b16 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 3 -orderer.example.com | [b17 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3ce0) for 172.18.0.5:33552 -orderer.example.com | [b18 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:36832 with txid '21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea' of type ENDORSER_TRANSACTION -orderer.example.com | [b19 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -orderer.example.com | [b1a 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b1b 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -orderer.example.com | [b1c 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b1d 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -orderer.example.com | [b1e 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [b1f 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -orderer.example.com | EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -orderer.example.com | 6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -orderer.example.com | 9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -orderer.example.com | ZM8rwLlgV6XUeTLW -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [b20 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e570 gate 1513088403461724000 evaluation starts -orderer.example.com | [b21 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e570 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [b22 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e570 processing identity 0 with bytes of 0a074f7267324d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b67417749424167495142487a565451465670357636657347472f4146767044414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544661467730794e7a45794d5441774f4451774d5446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414549514f2b6d3649736c4a37534732682f415774365570564762496648312b586b0a454541534c76597a3177514c576837336a556d72446530473755684c355275796d6b337548312b5156534b587364553833474e7337714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416748545163787371594e4a58540a364f6b4c4e464e7353654b6b556e30444a50324c4e444f596a3261704a6a3077436759494b6f5a497a6a30454177494452774177524149674d6e6f444c7976420a396f4e6c4a6c564e5876647371582f72722f614c6743626c5952626374304c36575538434941774a6964677163706e565737344f3334556268416e65715143660a5a4d3872774c6c675636585565544c570a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [b23 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e570 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -orderer.example.com | [b24 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e570 principal evaluation fails -orderer.example.com | [b25 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e570 gate 1513088403461724000 evaluation fails -orderer.example.com | [b26 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [b27 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [b28 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -orderer.example.com | [b29 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -orderer.example.com | [b2a 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -orderer.example.com | [b2b 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -orderer.example.com | [b2c 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b2d 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -orderer.example.com | [b2e 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e580 gate 1513088403462961600 evaluation starts -orderer.example.com | [b2f 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e580 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [b30 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e580 processing identity 0 with bytes of 0a074f7267324d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b67417749424167495142487a565451465670357636657347472f4146767044414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544661467730794e7a45794d5441774f4451774d5446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414549514f2b6d3649736c4a37534732682f415774365570564762496648312b586b0a454541534c76597a3177514c576837336a556d72446530473755684c355275796d6b337548312b5156534b587364553833474e7337714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416748545163787371594e4a58540a364f6b4c4e464e7353654b6b556e30444a50324c4e444f596a3261704a6a3077436759494b6f5a497a6a30454177494452774177524149674d6e6f444c7976420a396f4e6c4a6c564e5876647371582f72722f614c6743626c5952626374304c36575538434941774a6964677163706e565737344f3334556268416e65715143660a5a4d3872774c6c675636585565544c570a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [b31 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | [b32 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [b33 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e580 principal matched by identity 0 -orderer.example.com | [b34 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 76 47 3c 5a 3e 9d 1e fa 5d 72 ec 34 98 34 1c 50 |vG...]r.4.4.P| -orderer.example.com | 00000010 51 62 3e ca 89 fa cb 5f 96 78 b9 52 eb ec 63 90 |Qb>...._.x.R..c.| -orderer.example.com | [b35 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c4 e1 1f 22 5f e0 80 56 39 b6 a6 |0E.!...."_..V9..| -orderer.example.com | 00000010 ab 7d 3f 45 8f 73 1b 69 4d 08 19 4f 6a 1c 2b 13 |.}?E.s.iM..Oj.+.| -orderer.example.com | 00000020 43 15 a5 f0 23 02 20 06 2d 38 81 52 7c 5b 32 9f |C...#. .-8.R|[2.| -orderer.example.com | 00000030 90 ba 03 f6 24 7c 40 1c 04 72 f5 29 78 1a 88 61 |....$|@..r.)x..a| -orderer.example.com | 00000040 cc 62 92 f0 67 02 41 |.b..g.A| -orderer.example.com | [b36 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e580 principal evaluation succeeds for identity 0 -orderer.example.com | [b37 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e580 gate 1513088403462961600 evaluation succeeds -orderer.example.com | [b38 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [b39 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [b3a 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -orderer.example.com | [b3b 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -orderer.example.com | [b3c 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -orderer.example.com | [b3d 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -orderer.example.com | [b3e 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:36832 -orderer.example.com | [b3f 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -orderer.example.com | [b40 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:36832: rpc error: code = Canceled desc = context canceled -orderer.example.com | [b41 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [b42 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -orderer.example.com | [b43 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [b44 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [b45 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [b46 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [b47 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...9AFEC7357150AA9A2EDB3CC683846275 -orderer.example.com | [b48 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 1E30D84C7D0A05C8B688163FA3D4446BDF5212ABB767C573B1AABF0B2F11AECD -orderer.example.com | [b49 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [b4a 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [b4b 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | [b4c 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [b4d 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [b4e 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...9AFEC7357150AA9A2EDB3CC683846275 -orderer.example.com | [b4f 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: ECB78B7685883DB046980073468947C43461B2D080F7FD2F043B85E48F6E2A5C -orderer.example.com | [b50 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] commitBlock.Append.Append.writeBlock -> DEBU Wrote block 4 -orderer.example.com | [b51 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 4 -orderer.example.com | [b52 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 4 -orderer.example.com | [b54 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 4 -orderer.example.com | [b55 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3ce0) for 172.18.0.5:33552 -orderer.example.com | [b53 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420112980) for 172.18.0.4:60104 -orderer.example.com | [b56 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [b57 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:36846 -orderer.example.com | [b58 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:36846 with txid '772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7' of type ENDORSER_TRANSACTION -orderer.example.com | [b59 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -orderer.example.com | [b5a 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b5b 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -orderer.example.com | [b5c 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b5d 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -orderer.example.com | [b5e 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e600 gate 1513088410517518600 evaluation starts -orderer.example.com | [b5f 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e600 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [b60 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e600 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [b61 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e600 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | [b62 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e600 principal evaluation fails -orderer.example.com | [b63 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e600 gate 1513088410517518600 evaluation fails -orderer.example.com | [b64 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [b65 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [b66 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -orderer.example.com | [b67 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -orderer.example.com | [b68 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -orderer.example.com | [b69 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -orderer.example.com | [b6a 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b6b 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -orderer.example.com | [b6c 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e608 gate 1513088410518421400 evaluation starts -orderer.example.com | [b6d 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e608 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [b6e 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e608 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [b6f 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e608 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -orderer.example.com | [b70 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e608 principal evaluation fails -orderer.example.com | [b71 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e608 gate 1513088410518421400 evaluation fails -orderer.example.com | [b72 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [b73 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [b74 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -orderer.example.com | [b75 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e610 gate 1513088410518917600 evaluation starts -orderer.example.com | [b76 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e610 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [b77 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e610 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [b78 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [b79 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [b7a 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e610 principal matched by identity 0 -orderer.example.com | [b7b 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ee f4 0d a1 6b 9c 16 51 f9 fd e1 2c 8c c5 17 23 |....k..Q...,...#| -orderer.example.com | 00000010 19 24 ac e6 a0 04 80 8f 56 63 3c 1b f7 2e 3a 95 |.$......Vc<...:.| -orderer.example.com | [b7c 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f4 b0 06 15 a4 91 f6 54 92 2d 9f |0E.!........T.-.| -orderer.example.com | 00000010 93 29 6a b8 00 cd 3e af 56 68 ae 6a 95 7f 53 a8 |.)j...>.Vh.j..S.| -orderer.example.com | 00000020 5a 8a ed b6 55 02 20 13 6a db 9f 95 e4 91 1f cc |Z...U. .j.......| -orderer.example.com | 00000030 d2 39 10 54 6a 15 0f cd 40 f5 4a c4 0d b9 61 37 |.9.Tj...@.J...a7| -orderer.example.com | 00000040 23 c6 fa 32 72 3f f2 |#..2r?.| -orderer.example.com | [b7d 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e610 principal evaluation succeeds for identity 0 -orderer.example.com | [b7e 12-12 14:20:10.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e610 gate 1513088410518917600 evaluation succeeds -orderer.example.com | [b7f 12-12 14:20:10.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers -orderer.example.com | [b80 12-12 14:20:10.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -orderer.example.com | [b81 12-12 14:20:10.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -orderer.example.com | [b82 12-12 14:20:10.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -orderer.example.com | [b83 12-12 14:20:10.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -orderer.example.com | [b84 12-12 14:20:10.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -orderer.example.com | [b85 12-12 14:20:10.52 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:36846 -orderer.example.com | [b87 12-12 14:20:10.53 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:36846: rpc error: code = Canceled desc = context canceled -orderer.example.com | [b88 12-12 14:20:10.53 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [b86 12-12 14:20:10.52 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -orderer.example.com | [b89 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -orderer.example.com | [b8a 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [b8b 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [b8c 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [b8d 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [b8e 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...BDC5D3CBDAA2674025F66514D158D418 -orderer.example.com | [b8f 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 46E1BF6F44B3F3B74C99ECF92EF844ED1DFA835C8AFC32C63CDE6205E238426A -orderer.example.com | [b90 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [b91 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [b92 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | [b93 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [b94 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [b95 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...BDC5D3CBDAA2674025F66514D158D418 -orderer.example.com | [b96 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 03C9F3737ACBD21F0450C4BBF5CA9E47265E8136FEBF419F43D9E7AA67DFC46B -orderer.example.com | [b97 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] commitBlock.Append.Append.writeBlock -> DEBU Wrote block 5 -orderer.example.com | [b98 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 5 -orderer.example.com | [b99 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 5 -orderer.example.com | [b9a 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420112980) for 172.18.0.4:60104 -orderer.example.com | [b9b 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 5 -orderer.example.com | [b9c 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3ce0) for 172.18.0.5:33552 -orderer.example.com | [b9d 12-12 14:20:17.47 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [b9e 12-12 14:20:17.47 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:36856 -orderer.example.com | [b9f 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:36856 with txid 'd7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a' of type ENDORSER_TRANSACTION -orderer.example.com | [ba0 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -orderer.example.com | [ba1 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [ba2 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -orderer.example.com | [ba3 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [ba4 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -orderer.example.com | [ba5 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201163a8 gate 1513088417502468200 evaluation starts -orderer.example.com | [ba6 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163a8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [ba7 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163a8 processing identity 0 with bytes of 0a074f7267324d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b67417749424167495142487a565451465670357636657347472f4146767044414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544661467730794e7a45794d5441774f4451774d5446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414549514f2b6d3649736c4a37534732682f415774365570564762496648312b586b0a454541534c76597a3177514c576837336a556d72446530473755684c355275796d6b337548312b5156534b587364553833474e7337714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416748545163787371594e4a58540a364f6b4c4e464e7353654b6b556e30444a50324c4e444f596a3261704a6a3077436759494b6f5a497a6a30454177494452774177524149674d6e6f444c7976420a396f4e6c4a6c564e5876647371582f72722f614c6743626c5952626374304c36575538434941774a6964677163706e565737344f3334556268416e65715143660a5a4d3872774c6c675636585565544c570a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [ba8 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -orderer.example.com | [ba9 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163a8 principal evaluation fails -orderer.example.com | [baa 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201163a8 gate 1513088417502468200 evaluation fails -orderer.example.com | [bab 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [bac 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [bad 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -orderer.example.com | [bae 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -orderer.example.com | [baf 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -orderer.example.com | [bb0 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -orderer.example.com | [bb1 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [bb2 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -orderer.example.com | [bb3 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201163c0 gate 1513088417504023600 evaluation starts -orderer.example.com | [bb4 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163c0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [bb5 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163c0 processing identity 0 with bytes of 0a074f7267324d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b67417749424167495142487a565451465670357636657347472f4146767044414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544661467730794e7a45794d5441774f4451774d5446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414549514f2b6d3649736c4a37534732682f415774365570564762496648312b586b0a454541534c76597a3177514c576837336a556d72446530473755684c355275796d6b337548312b5156534b587364553833474e7337714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416748545163787371594e4a58540a364f6b4c4e464e7353654b6b556e30444a50324c4e444f596a3261704a6a3077436759494b6f5a497a6a30454177494452774177524149674d6e6f444c7976420a396f4e6c4a6c564e5876647371582f72722f614c6743626c5952626374304c36575538434941774a6964677163706e565737344f3334556268416e65715143660a5a4d3872774c6c675636585565544c570a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [bb6 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | [bb7 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [bb8 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163c0 principal matched by identity 0 -orderer.example.com | [bb9 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 35 3a 35 b8 fb 7b 13 cd e6 b3 66 77 87 9d a7 80 |5:5..{....fw....| -orderer.example.com | 00000010 dc 0a 73 56 31 a1 cc d8 21 49 21 a0 e5 5c 08 cb |..sV1...!I!..\..| -orderer.example.com | [bba 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 05 ab 88 b4 51 b2 de 7d f3 d7 07 a8 |0D. ....Q..}....| -orderer.example.com | 00000010 46 b5 5c f5 90 81 5b f6 be 61 64 54 6a 0a de d4 |F.\...[..adTj...| -orderer.example.com | 00000020 27 57 6f 22 02 20 33 26 f0 7b cf a5 47 88 d8 50 |'Wo". 3&.{..G..P| -orderer.example.com | 00000030 77 d5 6f 12 c5 56 9b bd fa 8d bb ba 5c de 83 03 |w.o..V......\...| -orderer.example.com | 00000040 01 80 fa 8a c1 cf |......| -orderer.example.com | [bbb 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163c0 principal evaluation succeeds for identity 0 -orderer.example.com | [bbc 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201163c0 gate 1513088417504023600 evaluation succeeds -orderer.example.com | [bbd 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [bbe 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [bbf 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -orderer.example.com | [bc0 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -orderer.example.com | [bc1 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -orderer.example.com | [bc2 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -orderer.example.com | [bc4 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -orderer.example.com | [bc3 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:36856 -orderer.example.com | [bc5 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:36856: rpc error: code = Canceled desc = context canceled -orderer.example.com | [bc6 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [bc7 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [bc8 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36876 -orderer.example.com | [bc9 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36876 -orderer.example.com | [bca 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [bcb 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [bcc 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [bcd 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [bce 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [bcf 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [bd0 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [bd1 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e300 gate 1513088419353740600 evaluation starts -orderer.example.com | [bd2 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e300 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [bd3 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e300 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514d2f74336748756832415462336a7752374378356454414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d6c6f58445449334d5449784d4441344e4441784d6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a30444151634451674145664347573166646278304f352f49704d2f664d32616d6a337a4954413759622b6437534930766f58386b316d724756702b4e61610a746850445a364e334a355277766d352b73344e75564f73443075666e6e5a4c2f43364e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167774a41764d58464855595067392f4d624172456d586443754e77717a685068460a393473787246444d74556377436759494b6f5a497a6a30454177494452774177524149675774395779664c2b4f697378594563556a34356752614b494c6a4c720a344f34794a6d39503051394a4d756f43494745357064314c396c474f307a7478536f58584d786b2f6b666149696879466c4b392b6c4e4932344333410a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [bd4 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [bd5 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [bd6 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e300 principal matched by identity 0 -orderer.example.com | [bd7 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 e1 e2 01 1a e0 87 c9 d5 6f d1 c1 c7 56 a2 47 62 |........o...V.Gb| -orderer.example.com | 00000010 8b 3e d2 4e be 13 a2 74 03 0a 79 17 9f 4b e2 28 |.>.N...t..y..K.(| -orderer.example.com | [bd8 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 10 ba 31 cb 5f 46 97 11 17 46 eb 6e |0D. ..1._F...F.n| -orderer.example.com | 00000010 3a 7d a1 bb 68 1c a1 40 23 96 f4 00 1c ed 94 5d |:}..h..@#......]| -orderer.example.com | 00000020 80 a7 04 83 02 20 2b d7 79 b0 82 e5 70 01 80 54 |..... +.y...p..T| -orderer.example.com | 00000030 9c e1 53 42 52 31 2f 9a b8 cf a1 cd 67 90 65 59 |..SBR1/.....g.eY| -orderer.example.com | 00000040 56 ea a0 50 2c 2c |V..P,,| -orderer.example.com | [bd9 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e300 principal evaluation succeeds for identity 0 -orderer.example.com | [bda 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e300 gate 1513088419353740600 evaluation succeeds -orderer.example.com | [bdb 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [bdc 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [bdd 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [bde 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [bdf 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [be0 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [be1 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203891a0) start: > stop: > from 172.18.0.7:36876 -orderer.example.com | [be2 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 0 -orderer.example.com | [be3 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203891a0) for 172.18.0.7:36876 -orderer.example.com | [be4 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:36876 for (0xc4203891a0) -orderer.example.com | [be5 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36876 -orderer.example.com | [be6 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36876 -orderer.example.com | [be7 12-12 14:20:19.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36876: rpc error: code = Canceled desc = context canceled -orderer.example.com | [be8 12-12 14:20:19.36 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [be9 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [bea 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36878 -orderer.example.com | [beb 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36878 -orderer.example.com | [bec 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [bed 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [bee 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [bef 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [bf0 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [bf1 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116498 gate 1513088419463252900 evaluation starts -orderer.example.com | [bf2 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116498 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [bf3 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116498 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514d2f74336748756832415462336a7752374378356454414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d6c6f58445449334d5449784d4441344e4441784d6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a30444151634451674145664347573166646278304f352f49704d2f664d32616d6a337a4954413759622b6437534930766f58386b316d724756702b4e61610a746850445a364e334a355277766d352b73344e75564f73443075666e6e5a4c2f43364e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167774a41764d58464855595067392f4d624172456d586443754e77717a685068460a393473787246444d74556377436759494b6f5a497a6a30454177494452774177524149675774395779664c2b4f697378594563556a34356752614b494c6a4c720a344f34794a6d39503051394a4d756f43494745357064314c396c474f307a7478536f58584d786b2f6b666149696879466c4b392b6c4e4932344333410a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [bf4 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [bf5 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [bf6 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116498 principal matched by identity 0 -orderer.example.com | [bf7 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 90 a9 3f f1 c0 93 9a 80 6a 3c 2f b7 02 57 bf 8e |..?.....j DEBU Verify: sig = 00000000 30 45 02 21 00 b4 7e 79 8a 05 c3 8c 12 bc 22 c2 |0E.!..~y......".| -orderer.example.com | 00000010 0f 0c f3 70 a3 9e 4c c1 be cd 97 59 33 a5 1d 83 |...p..L....Y3...| -orderer.example.com | 00000020 5d 94 2d 21 c5 02 20 35 00 fb 49 1d ac 58 e3 86 |].-!.. 5..I..X..| -orderer.example.com | 00000030 6f 06 c5 89 58 68 da 88 de 69 24 cb fd d3 8a 13 |o...Xh...i$.....| -orderer.example.com | 00000040 74 e9 0a 57 9c a7 4f |t..W..O| -orderer.example.com | [bf9 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116498 principal evaluation succeeds for identity 0 -orderer.example.com | [bfa 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116498 gate 1513088419463252900 evaluation succeeds -orderer.example.com | [bfb 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [bfc 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [bfd 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [bfe 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [bff 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [c00 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [c01 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420306420) start: > stop: > from 172.18.0.7:36878 -orderer.example.com | [c02 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 1 -orderer.example.com | [c03 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420306420) for 172.18.0.7:36878 -orderer.example.com | [c04 12-12 14:20:19.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:36878 for (0xc420306420) -orderer.example.com | [c05 12-12 14:20:19.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36878 -orderer.example.com | [c06 12-12 14:20:19.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36878 -orderer.example.com | [c07 12-12 14:20:19.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36878: rpc error: code = Canceled desc = context canceled -orderer.example.com | [c08 12-12 14:20:19.47 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [c09 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -orderer.example.com | [c0a 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [c0b 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [c0c 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [c0d 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [c0e 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...750654CA74591A952A5C5BEA8625E474 -orderer.example.com | [c0f 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: B9421EDDD892785B1AECE5C9F97CAAB0EA66AA6331170A3069421C58601BF146 -orderer.example.com | [c10 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [c11 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [c12 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | [c13 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [c14 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [c15 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...750654CA74591A952A5C5BEA8625E474 -orderer.example.com | [c16 12-12 14:20:19.51 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 62AC15A08A5581499A428F653EDB3C633582675A0D6823FA379768C9374CC940 -orderer.example.com | [c17 12-12 14:20:19.51 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] commitBlock.Append.Append.writeBlock -> DEBU Wrote block 6 -orderer.example.com | [c18 12-12 14:20:19.51 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 6 -orderer.example.com | [c19 12-12 14:20:19.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420112980) for 172.18.0.4:60104 -orderer.example.com | [c1a 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 6 -orderer.example.com | [c1b 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 6 -orderer.example.com | [c1c 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3ce0) for 172.18.0.5:33552 -orderer.example.com | [c1d 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [c1e 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36880 -orderer.example.com | [c1f 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36880 -orderer.example.com | [c20 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [c21 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [c22 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [c23 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [c24 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [c25 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201163d8 gate 1513088419652985000 evaluation starts -orderer.example.com | [c26 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163d8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [c27 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514d2f74336748756832415462336a7752374378356454414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d6c6f58445449334d5449784d4441344e4441784d6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a30444151634451674145664347573166646278304f352f49704d2f664d32616d6a337a4954413759622b6437534930766f58386b316d724756702b4e61610a746850445a364e334a355277766d352b73344e75564f73443075666e6e5a4c2f43364e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167774a41764d58464855595067392f4d624172456d586443754e77717a685068460a393473787246444d74556377436759494b6f5a497a6a30454177494452774177524149675774395779664c2b4f697378594563556a34356752614b494c6a4c720a344f34794a6d39503051394a4d756f43494745357064314c396c474f307a7478536f58584d786b2f6b666149696879466c4b392b6c4e4932344333410a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [c28 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [c29 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [c2a 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163d8 principal matched by identity 0 -orderer.example.com | [c2b 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d4 37 4f 0a 16 6f be 1a 7e 7c 85 fb 2e 68 24 8e |.7O..o..~|...h$.| -orderer.example.com | 00000010 76 7d ab a8 73 4a ad 61 82 2d 7b aa 29 1e 67 b8 |v}..sJ.a.-{.).g.| -orderer.example.com | [c2c 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8b bf 7b 5e 75 9d 21 cc 00 8f 18 |0E.!...{^u.!....| -orderer.example.com | 00000010 e9 c5 6c 7f 94 59 ba 7c eb 5f 1a c4 1b 61 55 9a |..l..Y.|._...aU.| -orderer.example.com | 00000020 40 8f c7 79 d3 02 20 57 62 49 60 5b 92 6f 9f 8e |@..y.. WbI`[.o..| -orderer.example.com | 00000030 54 c5 f7 b2 d0 2d a5 6a a3 2a c9 cb df 6e 2c 6f |T....-.j.*...n,o| -orderer.example.com | 00000040 27 b3 86 0c 28 85 35 |'...(.5| -orderer.example.com | [c2d 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163d8 principal evaluation succeeds for identity 0 -orderer.example.com | [c2e 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201163d8 gate 1513088419652985000 evaluation succeeds -orderer.example.com | [c2f 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [c30 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [c31 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [c32 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [c33 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [c34 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [c35 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4202dea20) start: > stop: > from 172.18.0.7:36880 -orderer.example.com | [c36 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 2 -orderer.example.com | [c37 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4202dea20) for 172.18.0.7:36880 -orderer.example.com | [c38 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:36880 for (0xc4202dea20) -orderer.example.com | [c39 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36880 -orderer.example.com | [c3a 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36880 -orderer.example.com | [c3b 12-12 14:20:19.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36880: rpc error: code = Canceled desc = context canceled -orderer.example.com | [c3c 12-12 14:20:19.66 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [c3d 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [c3e 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36882 -orderer.example.com | [c3f 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36882 -orderer.example.com | [c40 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [c41 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [c42 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [c43 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [c44 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [c45 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201165a0 gate 1513088419728895000 evaluation starts -orderer.example.com | [c46 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201165a0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [c47 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201165a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514d2f74336748756832415462336a7752374378356454414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d6c6f58445449334d5449784d4441344e4441784d6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a30444151634451674145664347573166646278304f352f49704d2f664d32616d6a337a4954413759622b6437534930766f58386b316d724756702b4e61610a746850445a364e334a355277766d352b73344e75564f73443075666e6e5a4c2f43364e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167774a41764d58464855595067392f4d624172456d586443754e77717a685068460a393473787246444d74556377436759494b6f5a497a6a30454177494452774177524149675774395779664c2b4f697378594563556a34356752614b494c6a4c720a344f34794a6d39503051394a4d756f43494745357064314c396c474f307a7478536f58584d786b2f6b666149696879466c4b392b6c4e4932344333410a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [c48 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [c49 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [c4a 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201165a0 principal matched by identity 0 -orderer.example.com | [c4b 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 6b ef 17 d2 d1 ea 87 37 52 a8 ab 21 99 6d a9 f3 |k......7R..!.m..| -orderer.example.com | 00000010 10 e0 08 36 32 b7 f8 5a 00 a1 02 92 54 c7 4a cd |...62..Z....T.J.| -orderer.example.com | [c4c 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 75 94 5e f6 a2 17 5e bf 16 2b d8 a7 |0D. u.^...^..+..| -orderer.example.com | 00000010 3a c2 83 db ac 5a 16 6c c5 5e 43 41 9d 00 86 11 |:....Z.l.^CA....| -orderer.example.com | 00000020 dc cc db 94 02 20 1f 67 8b 84 e1 52 77 40 9b 8f |..... .g...Rw@..| -orderer.example.com | 00000030 0b dd 89 90 d0 32 6f da 1a f5 09 b7 f3 79 e8 39 |.....2o......y.9| -orderer.example.com | 00000040 1d 51 3e 98 a6 2f |.Q>../| -orderer.example.com | [c4d 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201165a0 principal evaluation succeeds for identity 0 -orderer.example.com | [c4e 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201165a0 gate 1513088419728895000 evaluation succeeds -orderer.example.com | [c4f 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [c50 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [c51 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [c52 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [c53 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [c54 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [c55 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4202dfb60) start: > stop: > from 172.18.0.7:36882 -orderer.example.com | [c56 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 3 -orderer.example.com | [c57 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4202dfb60) for 172.18.0.7:36882 -orderer.example.com | [c58 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:36882 for (0xc4202dfb60) -orderer.example.com | [c59 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36882 -orderer.example.com | [c5a 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36882 -orderer.example.com | [c5b 12-12 14:20:19.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36882: rpc error: code = Canceled desc = context canceled -orderer.example.com | [c5c 12-12 14:20:19.74 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [c5d 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [c5e 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36884 -orderer.example.com | [c5f 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36884 -orderer.example.com | [c60 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [c61 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [c62 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [c63 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [c64 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [c65 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116640 gate 1513088419848114000 evaluation starts -orderer.example.com | [c66 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116640 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [c67 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116640 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514d2f74336748756832415462336a7752374378356454414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d6c6f58445449334d5449784d4441344e4441784d6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a30444151634451674145664347573166646278304f352f49704d2f664d32616d6a337a4954413759622b6437534930766f58386b316d724756702b4e61610a746850445a364e334a355277766d352b73344e75564f73443075666e6e5a4c2f43364e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167774a41764d58464855595067392f4d624172456d586443754e77717a685068460a393473787246444d74556377436759494b6f5a497a6a30454177494452774177524149675774395779664c2b4f697378594563556a34356752614b494c6a4c720a344f34794a6d39503051394a4d756f43494745357064314c396c474f307a7478536f58584d786b2f6b666149696879466c4b392b6c4e4932344333410a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [c68 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [c69 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [c6a 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116640 principal matched by identity 0 -orderer.example.com | [c6b 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 a2 8c dc 01 a6 e2 b3 05 08 1f fe fa c0 7b a5 b6 |.............{..| -orderer.example.com | 00000010 89 b8 d1 fc a0 04 00 f0 a7 cf d9 e7 10 e6 79 7a |..............yz| -orderer.example.com | [c6c 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 31 2c d5 d3 d3 5c 1a f4 e0 da cb ab |0D. 1,...\......| -orderer.example.com | 00000010 db c7 a3 e9 00 56 a5 0d 91 97 5c 6b 80 a2 f5 2c |.....V....\k...,| -orderer.example.com | 00000020 f5 75 16 0f 02 20 12 18 66 c6 3a 56 29 69 e4 7d |.u... ..f.:V)i.}| -orderer.example.com | 00000030 25 8d 7c 48 f3 0d b5 62 80 a2 15 51 d3 00 74 cc |%.|H...b...Q..t.| -orderer.example.com | 00000040 a3 01 d7 c8 22 56 |...."V| -orderer.example.com | [c6d 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116640 principal evaluation succeeds for identity 0 -orderer.example.com | [c6e 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116640 gate 1513088419848114000 evaluation succeeds -orderer.example.com | [c6f 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [c70 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [c71 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [c72 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [c73 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [c74 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [c75 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203880c0) start: > stop: > from 172.18.0.7:36884 -orderer.example.com | [c76 12-12 14:20:19.85 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 4 -orderer.example.com | [c77 12-12 14:20:19.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203880c0) for 172.18.0.7:36884 -orderer.example.com | [c78 12-12 14:20:19.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:36884 for (0xc4203880c0) -orderer.example.com | [c79 12-12 14:20:19.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36884 -orderer.example.com | [c7a 12-12 14:20:19.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36884 -orderer.example.com | [c7b 12-12 14:20:19.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36884: rpc error: code = Canceled desc = context canceled -orderer.example.com | [c7c 12-12 14:20:19.85 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [c7d 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [c7e 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36886 -orderer.example.com | [c7f 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36886 -orderer.example.com | [c80 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [c81 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [c82 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [c83 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [c84 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [c85 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201163d8 gate 1513088419985317600 evaluation starts -orderer.example.com | [c86 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163d8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [c87 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514d2f74336748756832415462336a7752374378356454414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d6c6f58445449334d5449784d4441344e4441784d6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a30444151634451674145664347573166646278304f352f49704d2f664d32616d6a337a4954413759622b6437534930766f58386b316d724756702b4e61610a746850445a364e334a355277766d352b73344e75564f73443075666e6e5a4c2f43364e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167774a41764d58464855595067392f4d624172456d586443754e77717a685068460a393473787246444d74556377436759494b6f5a497a6a30454177494452774177524149675774395779664c2b4f697378594563556a34356752614b494c6a4c720a344f34794a6d39503051394a4d756f43494745357064314c396c474f307a7478536f58584d786b2f6b666149696879466c4b392b6c4e4932344333410a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [c88 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [c89 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [c8a 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163d8 principal matched by identity 0 -orderer.example.com | [c8b 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 30 ec 1c a2 4b fa b6 8c cc 6f d6 c7 b6 34 a6 36 |0...K....o...4.6| -orderer.example.com | 00000010 b8 85 1e 92 31 69 7c 20 b0 dc 2f b3 d1 26 f2 b3 |....1i| ../..&..| -orderer.example.com | [c8c 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5b 58 85 f2 07 55 dc 2f 41 0e df 91 |0D. [X...U./A...| -orderer.example.com | 00000010 e7 9f ec e5 4f c2 09 0d 29 43 84 0d e9 60 ab 8d |....O...)C...`..| -orderer.example.com | 00000020 cd 40 8d 47 02 20 3d f8 f2 62 43 6f 93 6d e3 37 |.@.G. =..bCo.m.7| -orderer.example.com | 00000030 2c 87 f4 77 9a df c7 2e 8f 3c 3f ee 9b a3 75 0d |,..w..... DEBU 0xc4201163d8 principal evaluation succeeds for identity 0 -orderer.example.com | [c8e 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201163d8 gate 1513088419985317600 evaluation succeeds -orderer.example.com | [c8f 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [c90 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [c91 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [c92 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [c93 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [c94 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [c95 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203898c0) start: > stop: > from 172.18.0.7:36886 -orderer.example.com | [c96 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 5 -orderer.example.com | [c97 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203898c0) for 172.18.0.7:36886 -orderer.example.com | [c98 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:36886 for (0xc4203898c0) -orderer.example.com | [c99 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36886 -orderer.example.com | [c9a 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36886 -orderer.example.com | [c9b 12-12 14:20:19.99 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36886: rpc error: code = Canceled desc = context canceled -orderer.example.com | [c9c 12-12 14:20:19.99 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [c9d 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [c9e 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36888 -orderer.example.com | [c9f 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36888 -orderer.example.com | [ca0 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [ca1 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [ca2 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [ca3 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [ca4 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [ca5 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e248 gate 1513088420083219800 evaluation starts -orderer.example.com | [ca6 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [ca7 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514d2f74336748756832415462336a7752374378356454414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d6c6f58445449334d5449784d4441344e4441784d6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a30444151634451674145664347573166646278304f352f49704d2f664d32616d6a337a4954413759622b6437534930766f58386b316d724756702b4e61610a746850445a364e334a355277766d352b73344e75564f73443075666e6e5a4c2f43364e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167774a41764d58464855595067392f4d624172456d586443754e77717a685068460a393473787246444d74556377436759494b6f5a497a6a30454177494452774177524149675774395779664c2b4f697378594563556a34356752614b494c6a4c720a344f34794a6d39503051394a4d756f43494745357064314c396c474f307a7478536f58584d786b2f6b666149696879466c4b392b6c4e4932344333410a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [ca8 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [ca9 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [caa 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 principal matched by identity 0 -orderer.example.com | [cab 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 4f 14 93 ab 6e d9 f2 e6 e2 27 1d 2f 5b 47 13 8b |O...n....'./[G..| -orderer.example.com | 00000010 1e 43 9b 6d 29 13 0a 71 c9 76 89 ec 79 82 94 2e |.C.m)..q.v..y...| -orderer.example.com | [cac 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d9 6a 82 64 11 c8 21 2e ef dc 95 |0E.!..j.d..!....| -orderer.example.com | 00000010 c1 30 41 11 98 a4 18 4b c7 9a 5e c9 89 af 08 8d |.0A....K..^.....| -orderer.example.com | 00000020 d6 97 3f 31 7d 02 20 26 fc 38 4f 2c 21 aa 0c e0 |..?1}. &.8O,!...| -orderer.example.com | 00000030 bd 84 e5 82 69 91 f2 37 bc 55 d4 be 1e 06 cd 1c |....i..7.U......| -orderer.example.com | 00000040 2e 6c 11 0a f0 7b 75 |.l...{u| -orderer.example.com | [cad 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 principal evaluation succeeds for identity 0 -orderer.example.com | [cae 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e248 gate 1513088420083219800 evaluation succeeds -orderer.example.com | [caf 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [cb0 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [cb1 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [cb2 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [cb3 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [cb4 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [cb5 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203072c0) start: > stop: > from 172.18.0.7:36888 -orderer.example.com | [cb6 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 6 -orderer.example.com | [cb7 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203072c0) for 172.18.0.7:36888 -orderer.example.com | [cb8 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:36888 for (0xc4203072c0) -orderer.example.com | [cb9 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36888 -orderer.example.com | [cba 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36888 -orderer.example.com | [cbb 12-12 14:20:20.09 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36888: rpc error: code = Canceled desc = context canceled -orderer.example.com | [cbc 12-12 14:20:20.09 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [cbd 12-12 14:20:20.21 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [cbe 12-12 14:20:20.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36890 -orderer.example.com | [cbf 12-12 14:20:20.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36890 -orderer.example.com | [cc0 12-12 14:20:20.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [cc1 12-12 14:20:20.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [cc2 12-12 14:20:20.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [cc3 12-12 14:20:20.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [cc4 12-12 14:20:20.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [cc5 12-12 14:20:20.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [cc6 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -orderer.example.com | thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -orderer.example.com | 94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -orderer.example.com | 4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [cc7 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116550 gate 1513088420220651800 evaluation starts -orderer.example.com | [cc8 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116550 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [cc9 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116550 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514d2f74336748756832415462336a7752374378356454414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d6c6f58445449334d5449784d4441344e4441784d6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a30444151634451674145664347573166646278304f352f49704d2f664d32616d6a337a4954413759622b6437534930766f58386b316d724756702b4e61610a746850445a364e334a355277766d352b73344e75564f73443075666e6e5a4c2f43364e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167774a41764d58464855595067392f4d624172456d586443754e77717a685068460a393473787246444d74556377436759494b6f5a497a6a30454177494452774177524149675774395779664c2b4f697378594563556a34356752614b494c6a4c720a344f34794a6d39503051394a4d756f43494745357064314c396c474f307a7478536f58584d786b2f6b666149696879466c4b392b6c4e4932344333410a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [cca 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [ccb 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [ccc 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116550 principal matched by identity 0 -orderer.example.com | [ccd 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 8f 3b cf 12 db 75 1f f6 59 e4 4d ba ee 4e 69 1d |.;...u..Y.M..Ni.| -orderer.example.com | 00000010 99 71 6a 01 9e 5b 39 20 89 8d 01 ae 5c e2 1b 04 |.qj..[9 ....\...| -orderer.example.com | [cce 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8d 00 79 4c 78 c5 42 9b 7d 00 32 |0E.!...yLx.B.}.2| -orderer.example.com | 00000010 20 9a 70 5d 61 e6 9d 5f f7 0a a8 90 52 a3 3d e1 | .p]a.._....R.=.| -orderer.example.com | 00000020 d0 4e 85 4c 19 02 20 18 64 db f3 cc 36 53 d1 00 |.N.L.. .d...6S..| -orderer.example.com | 00000030 36 0e 86 24 d6 43 ac c2 2f 5d 93 1b ac dd 48 6f |6..$.C../]....Ho| -orderer.example.com | 00000040 a8 40 65 a2 e1 7b ea |.@e..{.| -orderer.example.com | [ccf 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116550 principal evaluation succeeds for identity 0 -orderer.example.com | [cd0 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116550 gate 1513088420220651800 evaluation succeeds -orderer.example.com | [cd1 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [cd2 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [cd3 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [cd4 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [cd5 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [cd6 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [cd7 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4202ac4a0) start: > stop: > from 172.18.0.7:36890 -orderer.example.com | [cd8 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 0 -orderer.example.com | [cd9 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4202ac4a0) for 172.18.0.7:36890 -orderer.example.com | [cda 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:36890 for (0xc4202ac4a0) -orderer.example.com | [cdb 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36890 -orderer.example.com | [cdc 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36890 -orderer.example.com | [cdd 12-12 14:20:20.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36890: rpc error: code = Canceled desc = context canceled -orderer.example.com | [cde 12-12 14:20:20.23 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [cdf 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [ce0 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36892 -orderer.example.com | [ce1 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36892 -orderer.example.com | [ce2 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [ce3 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [ce4 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [ce5 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [ce6 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [ce7 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116600 gate 1513088420326986700 evaluation starts -orderer.example.com | [ce8 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116600 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [ce9 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116600 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514d2f74336748756832415462336a7752374378356454414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d6c6f58445449334d5449784d4441344e4441784d6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a30444151634451674145664347573166646278304f352f49704d2f664d32616d6a337a4954413759622b6437534930766f58386b316d724756702b4e61610a746850445a364e334a355277766d352b73344e75564f73443075666e6e5a4c2f43364e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167774a41764d58464855595067392f4d624172456d586443754e77717a685068460a393473787246444d74556377436759494b6f5a497a6a30454177494452774177524149675774395779664c2b4f697378594563556a34356752614b494c6a4c720a344f34794a6d39503051394a4d756f43494745357064314c396c474f307a7478536f58584d786b2f6b666149696879466c4b392b6c4e4932344333410a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [cea 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [ceb 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [cec 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116600 principal matched by identity 0 -orderer.example.com | [ced 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 98 91 26 b7 21 62 20 0c 1c c0 45 bd c4 f0 e9 62 |..&.!b ...E....b| -orderer.example.com | 00000010 d1 bc 3f b3 53 87 c3 be 60 1d e4 9a 28 2e 6a 94 |..?.S...`...(.j.| -orderer.example.com | [cee 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 74 57 fc b1 ed 30 68 56 28 06 77 b5 |0D. tW...0hV(.w.| -orderer.example.com | 00000010 a9 7c 21 6a 84 71 0b 7a f7 dd ce a8 15 33 89 fa |.|!j.q.z.....3..| -orderer.example.com | 00000020 45 10 07 f5 02 20 66 a8 96 77 23 2a df d2 9d 86 |E.... f..w#*....| -orderer.example.com | 00000030 24 2a 3e 5a 09 d6 63 19 3a 7d 00 77 f7 d2 4f 44 |$*>Z..c.:}.w..OD| -orderer.example.com | 00000040 8d f2 57 05 5b bf |..W.[.| -orderer.example.com | [cef 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116600 principal evaluation succeeds for identity 0 -orderer.example.com | [cf0 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116600 gate 1513088420326986700 evaluation succeeds -orderer.example.com | [cf1 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [cf2 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [cf3 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [cf4 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [cf5 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [cf6 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [cf7 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4202ad500) start: > stop: > from 172.18.0.7:36892 -orderer.example.com | [cf8 12-12 14:20:20.33 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 1 -orderer.example.com | [cf9 12-12 14:20:20.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4202ad500) for 172.18.0.7:36892 -orderer.example.com | [cfa 12-12 14:20:20.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:36892 for (0xc4202ad500) -orderer.example.com | [cfb 12-12 14:20:20.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36892 -orderer.example.com | [cfc 12-12 14:20:20.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36892 -orderer.example.com | [cfd 12-12 14:20:20.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36892: rpc error: code = Canceled desc = context canceled -orderer.example.com | [cfe 12-12 14:20:20.35 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [cff 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [d00 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36894 -orderer.example.com | [d01 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36894 -orderer.example.com | [d02 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [d03 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [d04 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [d05 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [d06 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [d07 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201162a8 gate 1513088420427045700 evaluation starts -orderer.example.com | [d08 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201162a8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [d09 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201162a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514d2f74336748756832415462336a7752374378356454414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d6c6f58445449334d5449784d4441344e4441784d6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a30444151634451674145664347573166646278304f352f49704d2f664d32616d6a337a4954413759622b6437534930766f58386b316d724756702b4e61610a746850445a364e334a355277766d352b73344e75564f73443075666e6e5a4c2f43364e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167774a41764d58464855595067392f4d624172456d586443754e77717a685068460a393473787246444d74556377436759494b6f5a497a6a30454177494452774177524149675774395779664c2b4f697378594563556a34356752614b494c6a4c720a344f34794a6d39503051394a4d756f43494745357064314c396c474f307a7478536f58584d786b2f6b666149696879466c4b392b6c4e4932344333410a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [d0a 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [d0b 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [d0c 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201162a8 principal matched by identity 0 -orderer.example.com | [d0d 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 69 66 fd fd 46 6e c8 fd 3a 7d d1 01 d2 51 b7 51 |if..Fn..:}...Q.Q| -orderer.example.com | 00000010 43 9f 51 e4 33 ef c5 c9 29 71 9e f5 d8 90 57 1d |C.Q.3...)q....W.| -orderer.example.com | [d0e 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c3 fe cf f5 ec 06 4a 49 d2 32 f0 |0E.!.......JI.2.| -orderer.example.com | 00000010 40 19 4a 4a 15 df c9 a1 69 f0 c6 f8 8d 36 bf e9 |@.JJ....i....6..| -orderer.example.com | 00000020 72 3d ca c6 d2 02 20 12 e1 5a 31 2e a4 dd 48 5b |r=.... ..Z1...H[| -orderer.example.com | 00000030 6d f2 89 74 77 f4 d5 53 46 0d 2a b3 ab d6 c2 7d |m..tw..SF.*....}| -orderer.example.com | 00000040 4a 4b cc 52 2f 82 b2 |JK.R/..| -orderer.example.com | [d0f 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201162a8 principal evaluation succeeds for identity 0 -orderer.example.com | [d10 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201162a8 gate 1513088420427045700 evaluation succeeds -orderer.example.com | [d11 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [d12 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [d13 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [d14 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [d15 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [d16 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [d17 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420389220) start: > stop: > from 172.18.0.7:36894 -orderer.example.com | [d18 12-12 14:20:20.43 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 2 -orderer.example.com | [d19 12-12 14:20:20.43 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420389220) for 172.18.0.7:36894 -orderer.example.com | [d1a 12-12 14:20:20.43 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:36894 for (0xc420389220) -orderer.example.com | [d1b 12-12 14:20:20.43 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36894 -orderer.example.com | [d1c 12-12 14:20:20.43 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36894 -orderer.example.com | [d1d 12-12 14:20:20.43 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36894: rpc error: code = Canceled desc = context canceled -orderer.example.com | [d1e 12-12 14:20:20.43 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org2.example.com | [88f 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [890 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer0.org1.example.com | [9ca 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62d38cb]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +peer0.org1.example.com | [9cb 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [9cc 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62d38cb]sending state message TRANSACTION +peer1.org2.example.com | [8d9 12-15 03:49:56.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55594, bytesLength=2910] for tx ID: [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] to index +peer0.org2.example.com | [891 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +orderer.example.com | N5+z/fTTfchGfLaCtzM= +peer1.org2.example.com | [8da 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55594, bytesLength=2910] for tx number:[0] ID: [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] to blockNumTranNum index +peer0.org1.example.com | [9cd 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62d38cb]Received message TRANSACTION from shim +peer1.org2.example.com | [8db 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60300], isChainEmpty=[false], lastBlockNumber=[6] +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [9ce 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c62d38cb]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [892 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [8dc 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 6 +orderer.example.com | [515 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer0.org1.example.com | [9cf 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c62d38cb]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [893 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database +peer1.org2.example.com | [8dd 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 6 +peer0.org1.example.com | [9d0 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [516 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +peer0.org1.example.com | [9d1 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org2.example.com | [8de 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) +orderer.example.com | [517 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +peer0.org2.example.com | [894 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +peer0.org1.example.com | [9d2 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62d38cb]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [9d3 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62d38cb]Move state message COMPLETED +orderer.example.com | [518 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +peer0.org2.example.com | [895 12-15 03:49:56.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +peer1.org2.example.com | [8df 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database +peer0.org1.example.com | [9d4 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c62d38cb]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [896 12-15 03:49:56.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +orderer.example.com | [519 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +peer1.org2.example.com | [8e0 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [9d5 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62d38cb]send state message COMPLETED +peer0.org2.example.com | [897 12-15 03:49:56.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a +peer0.org1.example.com | [9d6 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62d38cb]Received message COMPLETED from shim +peer1.org2.example.com | [8e1 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | [51a 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +peer0.org1.example.com | [9d7 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62d38cb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [898 12-15 03:49:56.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +orderer.example.com | [51b 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +orderer.example.com | [51c 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +peer0.org1.example.com | [9d8 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [899 12-15 03:49:56.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [8e2 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +orderer.example.com | [51d 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +peer0.org1.example.com | [9d9 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa, channelID:businesschannel +peer1.org2.example.com | [8e3 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +peer0.org2.example.com | [89a 12-15 03:49:56.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [9da 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [51e 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +peer0.org1.example.com | [9db 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [89b 12-15 03:49:56.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [8e4 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +orderer.example.com | [51f 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +peer0.org1.example.com | [9dc 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org2.example.com | [89c 12-15 03:49:56.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [8e5 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database +orderer.example.com | [520 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +peer0.org2.example.com | [89d 12-15 03:49:56.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [8e6 12-15 03:49:56.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +peer0.org1.example.com | [9dd 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa] +peer0.org2.example.com | [89e 12-15 03:49:56.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [8e7 12-15 03:49:56.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +orderer.example.com | [521 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +peer0.org1.example.com | [9de 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40954) +peer1.org2.example.com | [8e8 12-15 03:49:56.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +orderer.example.com | [522 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +peer0.org2.example.com | [89f 12-15 03:49:56.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [9df 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40956 +orderer.example.com | [523 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +peer1.org2.example.com | [8e9 12-15 03:49:56.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a +peer0.org1.example.com | [9e0 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423cf4150 +orderer.example.com | [524 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +peer1.org2.example.com | [8ea 12-15 03:49:56.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org2.example.com | [8a0 12-15 03:49:56.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [9e1 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [8eb 12-15 03:49:56.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | [525 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +peer1.org2.example.com | [8ec 12-15 03:49:56.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [9e2 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [526 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +peer1.org2.example.com | [8ed 12-15 03:49:56.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +orderer.example.com | [527 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +peer1.org2.example.com | [8ee 12-15 03:49:56.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [9e3 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +orderer.example.com | [528 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +peer1.org2.example.com | [8ef 12-15 03:49:56.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [9e4 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [8f0 12-15 03:49:56.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [8f1 12-15 03:49:56.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [8f2 12-15 03:49:56.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [9e5 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [529 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +peer0.org1.example.com | [9e6 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423ac5680, header 0xc423cf4180 +orderer.example.com | [52a 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +peer0.org1.example.com | [9e7 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +orderer.example.com | [52b 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [9e8 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77 +orderer.example.com | [52c 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [9e9 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77] +peer0.org1.example.com | [9ea 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [52d 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [52e 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [9eb 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77] +peer0.org1.example.com | [9ec 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77 channel id: businesschannel +orderer.example.com | [52f 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [530 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [9ed 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77 channel id: businesschannel version: 1.1.0 +orderer.example.com | [531 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [532 12-15 03:49:15.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [9ee 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77,syscc=true,proposal=0xc423ac5680,canname=lscc:1.1.0 +orderer.example.com | [533 12-15 03:49:15.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [9ef 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +orderer.example.com | [534 12-15 03:49:15.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [9f0 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [535 12-15 03:49:15.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [9f1 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +orderer.example.com | [536 12-15 03:49:15.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [9f2 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d7461d93]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [539 12-15 03:49:15.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [9f3 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [9f4 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [53a 12-15 03:49:15.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org1.example.com | [9f5 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d7461d93]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [53b 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [9f6 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7461d93]Move state message TRANSACTION +orderer.example.com | [53c 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [9f7 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7461d93]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [9f8 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [53d 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org1.example.com | [9f9 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7461d93]sending state message TRANSACTION +orderer.example.com | [53e 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org1.example.com | [9fa 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7461d93]Received message TRANSACTION from shim +orderer.example.com | [53f 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [9fb 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d7461d93]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [540 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [541 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [542 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [9fc 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d7461d93]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [9fd 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7461d93]Transaction completed. Sending COMPLETED +orderer.example.com | [543 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [9fe 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7461d93]Move state message COMPLETED +orderer.example.com | [544 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [9ff 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d7461d93]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [a00 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7461d93]send state message COMPLETED +peer0.org1.example.com | [a01 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7461d93]Received message COMPLETED from shim +peer0.org1.example.com | [a02 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7461d93]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [545 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org1.example.com | [a03 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [a04 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77, channelID:businesschannel +orderer.example.com | [546 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [a05 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [547 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [a06 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [548 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org1.example.com | [a07 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | [549 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [a08 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77] +orderer.example.com | [54a 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [a09 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [a0a 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77 channel id: businesschannel chaincode id: name:"lscc" +peer0.org1.example.com | [a0b 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +peer0.org1.example.com | [a0c 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [a0d 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77,syscc=true,proposal=0xc423ac5680,canname=escc:1.1.0 +orderer.example.com | [54b 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [a0e 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +orderer.example.com | [54c 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [a0f 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [54d 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +orderer.example.com | [54e 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org1.example.com | [a10 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +orderer.example.com | [54f 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org1.example.com | [a11 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d7461d93]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [550 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org1.example.com | [a12 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [551 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org1.example.com | [a13 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [552 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [a14 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d7461d93]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [553 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [554 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [a15 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7461d93]Move state message TRANSACTION +orderer.example.com | [555 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | [556 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer0.org1.example.com | [a16 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7461d93]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [a17 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [557 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +peer0.org1.example.com | [a18 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7461d93]sending state message TRANSACTION +peer0.org1.example.com | [a19 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7461d93]Received message TRANSACTION from shim +orderer.example.com | [558 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +peer0.org1.example.com | [a1a 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d7461d93]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [559 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +peer0.org1.example.com | [a1b 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d7461d93]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [a1c 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [a1d 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [55a 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +peer0.org1.example.com | [a1e 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7461d93]Transaction completed. Sending COMPLETED +orderer.example.com | [55b 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +peer0.org1.example.com | [a1f 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7461d93]Move state message COMPLETED +peer0.org1.example.com | [a20 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d7461d93]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [a21 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7461d93]send state message COMPLETED +orderer.example.com | [55c 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +peer0.org1.example.com | [a22 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7461d93]Received message COMPLETED from shim +peer0.org1.example.com | [a23 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7461d93]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [a24 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77]HandleMessage- COMPLETED. Notify +orderer.example.com | [55d 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer0.org1.example.com | [a25 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77, channelID:businesschannel +peer0.org1.example.com | [a26 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [a27 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [a28 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [a29 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77] +peer0.org1.example.com | [a2a 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40956) +peer0.org1.example.com | [a2b 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40958 +peer0.org1.example.com | [a2c 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423cf5680 +peer0.org1.example.com | [a2d 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [55e 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | [55f 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [560 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +peer0.org1.example.com | [a2e 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [561 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +peer0.org1.example.com | [a2f 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +orderer.example.com | [562 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [563 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +peer0.org1.example.com | [a30 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [564 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +orderer.example.com | [565 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [566 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [537 12-15 03:49:15.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57104: rpc error: code = Canceled desc = context canceled +orderer.example.com | [568 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [538 12-15 03:49:15.74 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.21.0.8:57106: rpc error: code = Canceled desc = context canceled +orderer.example.com | [569 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [567 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [56a 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [56b 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [56c 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...B6FF1F7FBE34CE72E2D7B17326F7EB7E +orderer.example.com | [56d 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 1B3D797E7BC250B8D2530919AD613F3643E30AF5CF5368A63706BD2B0FF9BF8A +orderer.example.com | [56e 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 1 to 2, setting lastConfigBlockNum from 0 to 1 +orderer.example.com | [56f 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [a31 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [570 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [571 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 +orderer.example.com | [572 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [a32 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423ac5c20, header 0xc423cf56b0 +orderer.example.com | [573 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [574 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08010A90060A0A4F7264657265724D53...B6FF1F7FBE34CE72E2D7B17326F7EB7E +peer0.org1.example.com | [a33 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +orderer.example.com | [575 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 003CF03EA6284FC2973BFD232697E71930B1C1AC1DEA53938551A9004FD57C18 +orderer.example.com | [576 12-15 03:49:15.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xaa, 0x80, 0xff, 0xc, 0x39, 0xaa, 0xa8, 0x8f, 0x5f, 0xc0, 0x97, 0xdb, 0x69, 0x4b, 0xab, 0xe6, 0x6c, 0xaa, 0x32, 0xc5, 0x62, 0x29, 0x98, 0xb, 0xb6, 0x72, 0x4f, 0xe1, 0x1e, 0xe7, 0xb5, 0x8f} txOffsets= +peer0.org1.example.com | [a34 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc +orderer.example.com | txId= locPointer=offset=70, bytesLength=12097 +peer0.org1.example.com | [a35 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc] +orderer.example.com | ] +peer0.org1.example.com | [a36 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [a37 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc] +orderer.example.com | [577 12-15 03:49:15.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26086], isChainEmpty=[false], lastBlockNumber=[1] +peer0.org1.example.com | [a38 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc channel id: businesschannel +peer0.org1.example.com | [a39 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [a3a 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc,syscc=true,proposal=0xc423ac5c20,canname=lscc:1.1.0 +peer0.org1.example.com | [a3b 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +orderer.example.com | [578 12-15 03:49:15.76 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 1 +peer0.org1.example.com | [a3c 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [a3d 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +orderer.example.com | [579 12-15 03:49:17.83 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [57a 12-15 03:49:17.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57108 +peer0.org1.example.com | [a3e 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ef7f35d3]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [a3f 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [57b 12-15 03:49:17.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57108 +orderer.example.com | [57c 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +peer0.org1.example.com | [a40 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [57d 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.21.0.8:57110 +peer0.org1.example.com | [a41 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ef7f35d3]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [a42 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef7f35d3]Move state message TRANSACTION +orderer.example.com | [57e 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.21.0.8:57110 +peer0.org1.example.com | [a43 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ef7f35d3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [57f 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update message for channel businesschannel +peer0.org1.example.com | [a44 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [a45 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef7f35d3]sending state message TRANSACTION +peer0.org1.example.com | [a46 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef7f35d3]Received message TRANSACTION from shim +orderer.example.com | [580 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +peer0.org1.example.com | [a47 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ef7f35d3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [581 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [a48 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ef7f35d3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [582 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +orderer.example.com | [583 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [a49 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [ef7f35d3]Sending GET_STATE_BY_RANGE +peer0.org1.example.com | [a4a 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef7f35d3]Received message GET_STATE_BY_RANGE from shim +orderer.example.com | [584 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +peer0.org1.example.com | [a4b 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ef7f35d3]Fabric side Handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready +orderer.example.com | [585 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org1.example.com | [a4c 12-15 03:49:56.53 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 | [586 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [a4d 12-15 03:49:56.53 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 | [a4e 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [a4f 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] GetStateRangeScanIterator.getStateRangeScanIterator.newResultsItr.GetStateRangeScanIterator.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 | MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [a50 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] getQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [a51 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Got keys and values. Sending RESPONSE +peer0.org1.example.com | [a52 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ef7f35d3]handleGetStateByRange serial send RESPONSE +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [a53 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef7f35d3]Received message RESPONSE from shim +peer0.org1.example.com | [a54 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ef7f35d3]Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +peer0.org1.example.com | [a55 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ef7f35d3]before send +peer0.org1.example.com | [a56 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ef7f35d3]after send +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [a57 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [ef7f35d3]Received RESPONSE, communicated (state:ready) +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +peer0.org1.example.com | [a58 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [ef7f35d3]Received RESPONSE. Successfully got range +orderer.example.com | VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +peer0.org1.example.com | [a59 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [ef7f35d3]Sending QUERY_STATE_CLOSE +orderer.example.com | YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +peer0.org1.example.com | [a5a 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef7f35d3]Received message QUERY_STATE_CLOSE from shim +orderer.example.com | 8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +peer0.org1.example.com | [a5b 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ef7f35d3]Fabric side Handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready +peer0.org1.example.com | [a5c 12-15 03:49:56.53 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 | [a5d 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Exiting QUERY_STATE_CLOSE +orderer.example.com | N5+z/fTTfchGfLaCtzM= +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [a5f 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [587 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e728 gate 1513309757849711400 evaluation starts +peer0.org1.example.com | [a5e 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Closed. Sending RESPONSE +peer0.org1.example.com | [a60 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ef7f35d3]handleQueryStateClose serial send RESPONSE +peer0.org1.example.com | [a61 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef7f35d3]Received message RESPONSE from shim +orderer.example.com | [588 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e728 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [a62 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ef7f35d3]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [a63 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ef7f35d3]before send +orderer.example.com | [589 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e728 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414d4b66625241343136702b6653617851357150386a5977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455785768634e4d6a63784d6a457a4d444d7a4e5455780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d2f682f2b44587872326c4d315674504477686c41794a56723458742b4b760a564c536d65592b6d58352f2b38303253504d7049785a4b456636356a7a7461734b427847624f67414262657978336f58476437646538716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494353715679724a657246370a596f58444b4b65563241582f366b3659677a3665415031344b4f6566356d71374d416f4743437147534d343942414d43413067414d4555434951443449584b320a386241457353656e5a65752b4e2f35306b3262566a4c50734d734a337345393141726c50784149675862324b3238594f47414c59465873592f74476b2b612f300a4e352b7a2f66545466636847664c6143747a4d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [a64 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ef7f35d3]after send +peer0.org1.example.com | [a66 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [ef7f35d3]Received RESPONSE. Successfully got range +peer0.org1.example.com | [a67 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef7f35d3]Transaction completed. Sending COMPLETED +orderer.example.com | [58a 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e728 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +peer0.org1.example.com | [a65 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [ef7f35d3]Received RESPONSE, communicated (state:ready) +orderer.example.com | [58b 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e728 principal evaluation fails +peer0.org1.example.com | [a68 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef7f35d3]Move state message COMPLETED +orderer.example.com | [58c 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e728 gate 1513309757849711400 evaluation fails +peer0.org1.example.com | [a69 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ef7f35d3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [a6a 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef7f35d3]send state message COMPLETED +peer0.org1.example.com | [a6b 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef7f35d3]Received message COMPLETED from shim +orderer.example.com | [58d 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [a6c 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ef7f35d3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [58e 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [58f 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] +orderer.example.com | [590 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers +orderer.example.com | [591 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +peer0.org1.example.com | [a6d 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc]HandleMessage- COMPLETED. Notify +orderer.example.com | [592 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +orderer.example.com | [593 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [a6e 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc, channelID:businesschannel +orderer.example.com | [594 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == +orderer.example.com | [595 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e738 gate 1513309757850618100 evaluation starts +peer0.org1.example.com | [a6f 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [a70 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [a71 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | [596 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e738 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [a72 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc] +orderer.example.com | [597 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e738 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414d4b66625241343136702b6653617851357150386a5977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455785768634e4d6a63784d6a457a4d444d7a4e5455780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d2f682f2b44587872326c4d315674504477686c41794a56723458742b4b760a564c536d65592b6d58352f2b38303253504d7049785a4b456636356a7a7461734b427847624f67414262657978336f58476437646538716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494353715679724a657246370a596f58444b4b65563241582f366b3659677a3665415031344b4f6566356d71374d416f4743437147534d343942414d43413067414d4555434951443449584b320a386241457353656e5a65752b4e2f35306b3262566a4c50734d734a337345393141726c50784149675862324b3238594f47414c59465873592f74476b2b612f300a4e352b7a2f66545466636847664c6143747a4d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [598 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +peer0.org1.example.com | [a73 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [599 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [59a 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e738 principal matched by identity 0 +orderer.example.com | [59b 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 a6 79 df 06 48 f6 03 06 1e 49 f7 a6 8d 5a d0 e9 |.y..H....I...Z..| +peer0.org1.example.com | [a74 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc channel id: businesschannel chaincode id: name:"lscc" +orderer.example.com | 00000010 7b 00 1f d5 7b e6 a6 4a e0 29 bc 7c 22 cb 3e 88 |{...{..J.).|".>.| +peer0.org1.example.com | [a75 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +orderer.example.com | [59c 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 73 76 5b 6b 56 9e 66 61 74 4d 72 97 |0D. sv[kV.fatMr.| +orderer.example.com | 00000010 e4 8f 6f 41 d9 2c 51 a4 ed 88 9a 56 d2 c0 e6 3a |..oA.,Q....V...:| +orderer.example.com | 00000020 00 5e 31 bc 02 20 74 d7 0d 9d e2 5e 49 b6 04 be |.^1.. t....^I...| +peer0.org1.example.com | [a76 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc channel id: businesschannel version: 1.1.0 +orderer.example.com | 00000030 36 b4 81 c4 3a 59 e1 61 c9 b9 79 48 80 d7 08 f2 |6...:Y.a..yH....| +orderer.example.com | 00000040 6e 54 f6 1a b4 4b |nT...K| +peer0.org1.example.com | [a77 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc,syscc=true,proposal=0xc423ac5c20,canname=escc:1.1.0 +peer0.org1.example.com | [a78 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +orderer.example.com | [59d 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e738 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [a79 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [59e 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e738 gate 1513309757850618100 evaluation succeeds +peer0.org1.example.com | [a7a 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [a7b 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ef7f35d3]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [a7c 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [59f 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [a7d 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [5a0 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [a7e 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ef7f35d3]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [a7f 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef7f35d3]Move state message TRANSACTION +orderer.example.com | [5a1 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +peer0.org1.example.com | [a80 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ef7f35d3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [5a2 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +peer0.org1.example.com | [a81 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [5a3 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +peer0.org1.example.com | [a82 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef7f35d3]sending state message TRANSACTION +orderer.example.com | [5a4 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +orderer.example.com | [5a5 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [a83 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef7f35d3]Received message TRANSACTION from shim +orderer.example.com | [5a6 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [a84 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ef7f35d3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [a85 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ef7f35d3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [5a7 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [5a8 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [a86 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [5a9 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [5aa 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [5ab 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [a87 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [5ac 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [a88 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef7f35d3]Transaction completed. Sending COMPLETED +orderer.example.com | [5ad 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [5ae 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [a89 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef7f35d3]Move state message COMPLETED +peer0.org1.example.com | [a8a 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ef7f35d3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [5af 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [a8b 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef7f35d3]send state message COMPLETED +orderer.example.com | [5b0 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer0.org1.example.com | [a8c 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef7f35d3]Received message COMPLETED from shim +orderer.example.com | [5b1 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [5b2 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [a8d 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ef7f35d3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [a8e 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc]HandleMessage- COMPLETED. Notify +orderer.example.com | [5b3 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [5b4 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP +orderer.example.com | [5b5 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins +orderer.example.com | [5b6 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +orderer.example.com | [5b7 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [5b8 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [5b9 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +orderer.example.com | [5ba 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +orderer.example.com | [5bb 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +orderer.example.com | [5bc 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org2MSP] +orderer.example.com | [5bd 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP +orderer.example.com | [5be 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP +orderer.example.com | [5bf 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org2MSP looking up path [] +orderer.example.com | [5c0 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == +orderer.example.com | [5c1 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000ebb0 gate 1513309757854848200 evaluation starts +peer0.org1.example.com | [a8f 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc, channelID:businesschannel +orderer.example.com | [5c2 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000ebb0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [5c3 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000ebb0 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414d4b66625241343136702b6653617851357150386a5977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455785768634e4d6a63784d6a457a4d444d7a4e5455780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d2f682f2b44587872326c4d315674504477686c41794a56723458742b4b760a564c536d65592b6d58352f2b38303253504d7049785a4b456636356a7a7461734b427847624f67414262657978336f58476437646538716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494353715679724a657246370a596f58444b4b65563241582f366b3659677a3665415031344b4f6566356d71374d416f4743437147534d343942414d43413067414d4555434951443449584b320a386241457353656e5a65752b4e2f35306b3262566a4c50734d734a337345393141726c50784149675862324b3238594f47414c59465873592f74476b2b612f300a4e352b7a2f66545466636847664c6143747a4d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [a90 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [5c4 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +peer0.org1.example.com | [a91 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [5c5 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000ebb0 principal matched by identity 0 +orderer.example.com | [5c6 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 76 68 01 24 5d e6 7b ad 13 1a 5c f4 45 82 70 e5 |vh.$].{...\.E.p.| +peer0.org1.example.com | [a92 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [a93 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc] +peer0.org1.example.com | [a94 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40958) +orderer.example.com | 00000010 dc 20 91 08 42 e4 23 16 9d ce 90 6c 8d 69 f1 a6 |. ..B.#....l.i..| +orderer.example.com | [5c7 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 cf e1 7d fa 51 e7 78 eb 82 a4 dd |0E.!...}.Q.x....| +peer0.org1.example.com | [a95 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] +orderer.example.com | 00000010 df e8 cc 11 bb d5 af 09 d3 7f 30 18 ec 6e 6d 42 |..........0..nmB| +orderer.example.com | 00000020 ec 40 46 e6 3b 02 20 5f b4 bc ae 05 35 03 34 9d |.@F.;. _....5.4.| +peer0.org1.example.com | [a96 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] +orderer.example.com | 00000030 ff e7 b3 57 4e 90 ec 52 51 50 7d 5c c1 d4 9a f1 |...WN..RQP}\....| +peer0.org1.example.com | [a97 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +orderer.example.com | 00000040 26 18 7c 1d 54 b9 e0 |&.|.T..| +peer0.org1.example.com | [a98 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org1.example.com | [a99 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc423e1c2a0 env 0xc423e1e240 txn 0 +peer0.org1.example.com | [a9a 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423e1e240 +orderer.example.com | [5c8 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000ebb0 principal evaluation succeeds for identity 0 +orderer.example.com | [5c9 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000ebb0 gate 1513309757854848200 evaluation succeeds +peer0.org1.example.com | [a9b 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\342\214\315\321\005\020\260\211\363\247\002\"\017businesschannel*@397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv\nVLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7\nYoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2\n8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0\nN5+z/fTTfchGfLaCtzM=\n-----END CERTIFICATE-----\n\022\030 Gdw\361\301\302\000\t\355\326\265\210\224\222\212\001>\254\241\001\223[\016" +peer0.org1.example.com | [a9c 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [a9d 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [a9e 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 73763341eb604cef734e4ac7c2ea77bc9d730c798fb96eb583c0637692a88acd} +orderer.example.com | [5ca 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [a9f 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [aa0 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [aa1 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc423e18800, header channel_header:"\010\003\032\014\010\342\214\315\321\005\020\260\211\363\247\002\"\017businesschannel*@397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv\nVLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7\nYoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2\n8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0\nN5+z/fTTfchGfLaCtzM=\n-----END CERTIFICATE-----\n\022\030 Gdw\361\301\302\000\t\355\326\265\210\224\222\212\001>\254\241\001\223[\016" +peer0.org1.example.com | [aa2 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [aa3 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +orderer.example.com | [5cb 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [aa4 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [aa5 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [aa6 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] +orderer.example.com | [5cc 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer0.org1.example.com | [aa7 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +orderer.example.com | [5cd 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [aa8 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc423e1e240 envbytes 0xc423e13800 +peer0.org1.example.com | [aa9 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [1d033a95-848a-4ec6-a8a1-3b2386526f2c] +peer0.org1.example.com | [aaa 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | [5ce 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [aab 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [1d033a95-848a-4ec6-a8a1-3b2386526f2c] +peer0.org1.example.com | [aac 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc423e13800 +orderer.example.com | [5cf 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [5d0 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [5d1 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [5d2 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [aad 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [aae 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] +orderer.example.com | [5d3 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [aaf 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=0c0fef1d-5d2a-4ee4-b33b-b5cbdd0ef5ed,syscc=true,proposal=0x0,canname=vscc:1.1.0 +orderer.example.com | [5d4 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org1.example.com | [ab0 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a chaindID businesschannel +peer0.org1.example.com | [ab1 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer0.org1.example.com | [ab2 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [5d5 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [5d6 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org1.example.com | [ab3 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer0.org1.example.com | [ab4 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0c0fef1d]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [ab5 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [5d7 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [ab6 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0c0fef1d]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [ab7 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c0fef1d]Move state message TRANSACTION +peer0.org1.example.com | [ab8 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0c0fef1d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [5d8 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [5d9 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [ab9 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [aba 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c0fef1d]sending state message TRANSACTION +peer0.org1.example.com | [abb 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c0fef1d]Received message TRANSACTION from shim +peer0.org1.example.com | [abc 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c0fef1d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [5da 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [abd 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0c0fef1d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [abe 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +orderer.example.com | [5db 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [abf 12-15 03:49:56.75 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 | [ac0 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org1.example.com | [ac1 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c0fef1d]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [ac2 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c0fef1d]Move state message COMPLETED +peer0.org1.example.com | [ac3 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c0fef1d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [ac4 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c0fef1d]send state message COMPLETED +orderer.example.com | [5dc 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [5dd 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [5de 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [ac5 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c0fef1d]Received message COMPLETED from shim +peer0.org1.example.com | [ac6 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0c0fef1d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [5df 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [ac7 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0c0fef1d-5d2a-4ee4-b33b-b5cbdd0ef5ed]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [ac8 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0c0fef1d-5d2a-4ee4-b33b-b5cbdd0ef5ed, channelID:businesschannel +orderer.example.com | [5e0 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [ac9 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [5e1 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [5e2 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [aca 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] +peer0.org1.example.com | [acb 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc423e13800 +peer0.org1.example.com | [acc 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc423e1e240 envbytes 0xc423e13800 +orderer.example.com | [5e3 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [acd 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc423e1c2a0 env 0xc423e1e240 txn 0 +peer0.org1.example.com | [ace 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org1.example.com | [acf 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +orderer.example.com | [5e4 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [ad0 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] +orderer.example.com | [5e5 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [ad1 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [ad2 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [6] +orderer.example.com | [5e6 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | [5e7 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [5e8 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [ad3 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org1.example.com | [ad4 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +orderer.example.com | [5e9 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [ad5 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | [5ea 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [ad6 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer0.org1.example.com | [ad7 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=a +peer0.org1.example.com | [ad8 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +orderer.example.com | [5eb 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [ad9 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=b +peer0.org1.example.com | [ada 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +orderer.example.com | [5ec 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [adb 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] marked as valid by state validator +orderer.example.com | [5ed 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [5ee 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [adc 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +orderer.example.com | [5ef 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [add 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org1.example.com | [ade 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +orderer.example.com | [5f0 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [adf 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage +orderer.example.com | [5f1 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org1.example.com | [ae0 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [6] +peer0.org1.example.com | [ae1 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xd4, 0x4a, 0x73, 0x70, 0x52, 0x32, 0xf1, 0x81, 0x20, 0x2c, 0xdf, 0x71, 0xd8, 0x60, 0x7d, 0x41, 0x3c, 0x56, 0x93, 0x63, 0xa7, 0x8a, 0xcb, 0xad, 0x39, 0xe1, 0x1d, 0xce, 0xe6, 0xca, 0x53, 0x6c} txOffsets= +orderer.example.com | [5f2 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +peer0.org1.example.com | txId=397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a locPointer=offset=70, bytesLength=2910 +orderer.example.com | [5f3 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | ] +peer0.org1.example.com | [ae2 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55594, bytesLength=2910] for tx ID: [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] to index +peer0.org1.example.com | [ae3 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55594, bytesLength=2910] for tx number:[0] ID: [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] to blockNumTranNum index +peer0.org1.example.com | [ae4 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60300], isChainEmpty=[false], lastBlockNumber=[6] +peer0.org1.example.com | [ae5 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 6 +orderer.example.com | MIICLzCCAdWgAwIBAgIQGXf5zEgjlejkE1rJW2znwDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [ae6 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 6 +peer0.org1.example.com | [ae7 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) +peer0.org1.example.com | [ae8 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database +peer0.org1.example.com | [ae9 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [aea 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowaTELMAkGA1UE +peer0.org1.example.com | [aeb 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer0.org1.example.com | [aec 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [aed 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +peer0.org1.example.com | [aee 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database +peer0.org1.example.com | [aef 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFSKPRsXnXvaTTqRKjkTRYYoPjGg +peer0.org1.example.com | [af0 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +orderer.example.com | TgXRAoMQwI+9AaLXTSL+AsApwlxedr+PJ+UgfBNcxey226YSZRJqLeiH/TajXzBd +orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +peer0.org1.example.com | [af1 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | [af2 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a +peer0.org1.example.com | [af3 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +orderer.example.com | Af8wKQYDVR0OBCIEIPxyg8RiuCl5W+wOoXUqeRhWBcR2XF2JtWJ5qtJMQ3Y1MAoG +peer0.org1.example.com | [af4 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [af5 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | CCqGSM49BAMCA0gAMEUCIQCoRrlZYPh0Qnsp3Z9KitmTDkRqi6JyR4RLiOyfv8Tf +orderer.example.com | QgIgdHbFqXGTZ0HFQmknUFd5DD4TTltv8Ijmfm8J1skS4jc= +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [af6 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [af7 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +orderer.example.com | [5f4 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [af8 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [af9 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [afa 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +peer0.org1.example.com | [afb 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [afc 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40960 +peer0.org1.example.com | [afd 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423eda0f0 +peer0.org1.example.com | [afe 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [aff 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org1.example.com | [b00 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +peer0.org1.example.com | [b01 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [b02 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +peer0.org1.example.com | [b03 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423dbe820, header 0xc423eda120 +orderer.example.com | ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org1.example.com | [b04 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [b05 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8 +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +peer0.org1.example.com | [b06 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8] +peer0.org1.example.com | [b07 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +orderer.example.com | sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +peer0.org1.example.com | [b08 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8] +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [5f5 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [b09 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8 channel id: businesschannel +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [b0a 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8 channel id: businesschannel version: 1.1.0 +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +peer0.org1.example.com | [b0b 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8,syscc=true,proposal=0xc423dbe820,canname=qscc:1.1.0 +peer0.org1.example.com | [b0c 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +peer0.org1.example.com | [b0d 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org1.example.com | [b0e 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +peer0.org1.example.com | [b0f 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [59edbfd8]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [b10 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [b11 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [b12 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [59edbfd8]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +peer0.org1.example.com | [b13 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59edbfd8]Move state message TRANSACTION +orderer.example.com | sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +peer0.org1.example.com | [b14 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59edbfd8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [b15 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [b16 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59edbfd8]sending state message TRANSACTION +peer0.org1.example.com | [b17 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59edbfd8]Received message TRANSACTION from shim +peer0.org1.example.com | [b18 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [59edbfd8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [b19 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [59edbfd8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [b1a 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [b1b 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59edbfd8]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [b1c 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59edbfd8]Move state message COMPLETED +peer0.org1.example.com | [b1d 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [59edbfd8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [b1e 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59edbfd8]send state message COMPLETED +orderer.example.com | [5f6 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org1.example.com | [b1f 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59edbfd8]Received message COMPLETED from shim +orderer.example.com | [5f7 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org1.example.com | [b20 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59edbfd8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [5f8 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [b21 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8]HandleMessage- COMPLETED. Notify +orderer.example.com | [5f9 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [b22 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8, channelID:businesschannel +orderer.example.com | [5fa 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [b23 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [5fb 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [b24 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [5fc 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [b25 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | [5fd 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer0.org1.example.com | [b26 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8] +orderer.example.com | [5fe 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [b27 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [5ff 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [b28 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8 channel id: businesschannel chaincode id: name:"qscc" +orderer.example.com | [600 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org1.example.com | [b29 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +orderer.example.com | [601 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [602 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAMt+4ybOK1r7B8eavLVTMBUwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [b2a 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8 channel id: businesschannel version: 1.1.0 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [b2b 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8,syscc=true,proposal=0xc423dbe820,canname=escc:1.1.0 +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +peer0.org1.example.com | [b2c 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [b2d 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [b2e 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BPGrtJtHj1Ql02gq7I0ZQQKJwvtZhp0t3rCwF1cFILTHIBM4phJ/ZYJQa1lb12pO +peer0.org1.example.com | [b2f 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [59edbfd8]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | sxSxuEvRGTFcZXtunUc0SeWjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer0.org1.example.com | [b30 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [b31 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [b32 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [59edbfd8]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICSqVyrJerF7YoXDKKeV +peer0.org1.example.com | [b33 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59edbfd8]Move state message TRANSACTION +orderer.example.com | 2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCIB+psiek7FqP18l1 +orderer.example.com | 3s2anbtfpiGTHbAnm2BihpD9sRPjAiAIvsdyfn+nb2bCQBK6sodbO+LxSkuZulkP +peer0.org1.example.com | [b34 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59edbfd8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | oMR3yCH/eA== +peer0.org1.example.com | [b35 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [603 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [b36 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59edbfd8]sending state message TRANSACTION +peer0.org1.example.com | [b37 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59edbfd8]Received message TRANSACTION from shim +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [b38 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [59edbfd8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [b39 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [59edbfd8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +peer0.org1.example.com | [b3a 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [b3b 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [b3c 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59edbfd8]Transaction completed. Sending COMPLETED +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [b3d 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59edbfd8]Move state message COMPLETED +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +peer0.org1.example.com | [b3e 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [59edbfd8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +peer0.org1.example.com | [b3f 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59edbfd8]send state message COMPLETED +peer0.org1.example.com | [b40 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59edbfd8]Received message COMPLETED from shim +orderer.example.com | YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +orderer.example.com | 8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +orderer.example.com | N5+z/fTTfchGfLaCtzM= +peer0.org1.example.com | [b41 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59edbfd8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [b42 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [b43 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8, channelID:businesschannel +peer0.org1.example.com | [b44 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [b45 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [604 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [b46 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +orderer.example.com | VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +peer0.org1.example.com | [b47 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8] +peer0.org1.example.com | [b48 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40960) +peer0.org1.example.com | [b49 12-15 03:49:57.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40962 +peer0.org1.example.com | [b4a 12-15 03:49:57.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423ea8f90 +peer0.org1.example.com | [b4b 12-15 03:49:57.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [b4c 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +peer0.org1.example.com | [b4d 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +orderer.example.com | 8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +orderer.example.com | N5+z/fTTfchGfLaCtzM= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [605 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [606 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [607 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [b4e 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [608 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [609 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [60a 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [60b 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [b4f 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [b50 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423eaa410, header 0xc423ea8fc0 +peer0.org1.example.com | [b51 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [b52 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c +peer0.org1.example.com | [b53 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c] +peer0.org1.example.com | [b54 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [b55 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c] +orderer.example.com | [60c 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [b56 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c channel id: businesschannel +peer0.org1.example.com | [b57 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [b58 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c,syscc=true,proposal=0xc423eaa410,canname=qscc:1.1.0 +peer0.org1.example.com | [b59 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [b5a 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [b5b 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +orderer.example.com | [60d 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [60e 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [60f 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQShjAwe+6sxoSMZ8UrYKOcTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | GwyyfDLH07dFVkEvxJDGOKGevUcaYHphZvhzV78MBXVwIEGIENk7Zs8x+dx6iwIK +orderer.example.com | LOGmXxq/Wqd4qLs6kFyZvqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer0.org1.example.com | [b5c 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [35da6821]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgsK9pE/plIOV10mqefUzE +orderer.example.com | vCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAL7xXrYD1fkzcpxi +peer0.org1.example.com | [b5d 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [b5e 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [b5f 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [35da6821]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [b60 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35da6821]Move state message TRANSACTION +peer0.org1.example.com | [b61 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35da6821]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [b62 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [b63 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35da6821]sending state message TRANSACTION +peer0.org1.example.com | [b64 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35da6821]Received message TRANSACTION from shim +peer0.org1.example.com | [b65 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [35da6821]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [b66 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [35da6821]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [b67 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel +peer0.org1.example.com | [b68 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +peer0.org1.example.com | [b69 12-15 03:49:57.21 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=[26088] +peer0.org1.example.com | [b6a 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34212], Going to peek [8] bytes +peer0.org1.example.com | [b6b 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14018], placementInfo={fileNum=[0], startOffset=[26088], bytesOffset=[26090]} +orderer.example.com | yyZhFfEvMDWCoUicQw2b+c3GQ6OuAiA0KtNuH4yS4+c13W9Lsd28XNQK88FkwB2J +orderer.example.com | QR9yhJE7rA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [610 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +orderer.example.com | kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +peer0.org1.example.com | [b6c 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35da6821]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [b6d 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35da6821]Move state message COMPLETED +peer0.org1.example.com | [b6e 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [35da6821]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [b6f 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35da6821]send state message COMPLETED +peer0.org1.example.com | [b70 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35da6821]Received message COMPLETED from shim +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +peer0.org1.example.com | [b71 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35da6821]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +orderer.example.com | OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +orderer.example.com | bqEi6/lY2kK0EtGRnA== +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [b72 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c]HandleMessage- COMPLETED. Notify +orderer.example.com | [611 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +orderer.example.com | kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +orderer.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +orderer.example.com | OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +orderer.example.com | bqEi6/lY2kK0EtGRnA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [612 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [613 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [614 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +peer0.org1.example.com | [b73 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c, channelID:businesschannel +orderer.example.com | [615 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +orderer.example.com | [616 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +orderer.example.com | [617 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +orderer.example.com | [618 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +orderer.example.com | [619 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +orderer.example.com | [61a 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +peer0.org1.example.com | [b74 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [61b 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +peer0.org1.example.com | [b75 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [b76 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [b77 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c] +peer0.org1.example.com | [b78 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [b79 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c channel id: businesschannel chaincode id: name:"qscc" +orderer.example.com | [61c 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +peer0.org1.example.com | [b7a 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [b7b 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [b7c 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c,syscc=true,proposal=0xc423eaa410,canname=escc:1.1.0 +peer0.org1.example.com | [b7d 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [b7e 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [61d 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +peer0.org1.example.com | [b7f 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +orderer.example.com | [61e 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +orderer.example.com | [61f 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +orderer.example.com | [620 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +peer0.org1.example.com | [b80 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [35da6821]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [621 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +orderer.example.com | [622 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +peer0.org1.example.com | [b81 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [623 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +peer0.org1.example.com | [b82 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [b83 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [35da6821]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [b84 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35da6821]Move state message TRANSACTION +orderer.example.com | [624 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +orderer.example.com | [625 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [626 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [627 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [628 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [b85 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35da6821]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [b86 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [b87 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35da6821]sending state message TRANSACTION +peer0.org1.example.com | [b88 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35da6821]Received message TRANSACTION from shim +peer0.org1.example.com | [b89 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [35da6821]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [629 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org1.example.com | [b8a 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [35da6821]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [62a 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [b8b 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [62b 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [62c 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [b8c 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [b8d 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35da6821]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [b8e 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35da6821]Move state message COMPLETED +peer0.org1.example.com | [b8f 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [35da6821]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [b90 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35da6821]send state message COMPLETED +peer0.org1.example.com | [b91 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35da6821]Received message COMPLETED from shim +peer0.org1.example.com | [b92 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35da6821]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [b93 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [b94 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c, channelID:businesschannel +peer0.org1.example.com | [b95 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [62d 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [b96 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [b97 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [b98 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c] +orderer.example.com | [62e 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [b99 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40962) +orderer.example.com | [62f 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [630 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | [631 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +orderer.example.com | [632 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +orderer.example.com | [633 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +orderer.example.com | [634 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [635 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [636 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [637 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [638 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [639 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [63a 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [63b 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | [63c 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [63d 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [63e 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [63f 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [640 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | [641 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [642 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [643 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [644 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [645 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | [646 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [647 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [648 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [649 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | [64a 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +orderer.example.com | [64b 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | [64c 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +orderer.example.com | [64d 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | [64e 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [64f 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [650 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [651 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | [652 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [653 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +orderer.example.com | [654 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [655 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [656 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +orderer.example.com | [657 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +orderer.example.com | [658 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +orderer.example.com | [659 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [65a 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | [65b 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [65c 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +orderer.example.com | [65d 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [65e 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [65f 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +orderer.example.com | [660 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +orderer.example.com | [661 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [662 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [663 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [664 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [665 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [666 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608BD8CCDD10522...E161C9B9794880D708F26E54F61AB44B +orderer.example.com | [667 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: 5D5E6CC7C093462DBBD859E6028BEEBEA34D5D66BF773CB4FB3BDCB044B057EF +orderer.example.com | [668 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +orderer.example.com | [669 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [66a 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +orderer.example.com | [66b 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [66c 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +orderer.example.com | [66d 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | [66e 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv +orderer.example.com | zQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd +orderer.example.com | ibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv +orderer.example.com | zjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [66f 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e600 gate 1513309757873714000 evaluation starts +orderer.example.com | [670 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e600 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [671 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e600 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749514b77793676416c34704643476846726d4a6d5a305554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e434141534b53436b2b3274316e61597867417059614f3030613970376b47316d6d4a31302f68744e434a49535076547555513163760a7a514f2b694e39366d4c754d6e693475746b416466616b597459576963416830365736636f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a44416967434438636f50455972677065567673447146314b6e6b5956675845646c78640a696256696561725354454e324e54414b42676771686b6a4f5051514441674e4841444245416941794f594647594256623938546a6d6e4451682f56544e5247760a7a6a6643644169736f594355773935725177496744463834756136676e7a50336b444f5530345551564b6b307553414469744a32354b7a31705668694b51673d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [672 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [673 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [674 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e600 principal matched by identity 0 +orderer.example.com | [675 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 5d 5e 6c c7 c0 93 46 2d bb d8 59 e6 02 8b ee be |]^l...F-..Y.....| +orderer.example.com | 00000010 a3 4d 5d 66 bf 77 3c b4 fb 3b dc b0 44 b0 57 ef |.M]f.w<..;..D.W.| +orderer.example.com | [676 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 63 6d 78 73 7b 69 63 42 ee 8e 79 f9 |0D. cmxs{icB..y.| +orderer.example.com | 00000010 62 a2 0c 1d 83 f6 88 56 d5 78 81 a4 b2 41 36 14 |b......V.x...A6.| +orderer.example.com | 00000020 93 8a 84 a0 02 20 11 51 a2 ff 28 ec 1d 0d 4b 13 |..... .Q..(...K.| +orderer.example.com | 00000030 55 00 76 83 07 81 87 39 4c 8d a4 60 56 87 cb ad |U.v....9L..`V...| +orderer.example.com | 00000040 b5 cf 60 62 71 d2 |..`bq.| +orderer.example.com | [677 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e600 principal evaluation succeeds for identity 0 +orderer.example.com | [678 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e600 gate 1513309757873714000 evaluation succeeds +orderer.example.com | [679 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [67a 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [67b 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers +orderer.example.com | [67c 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +orderer.example.com | [67d 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +orderer.example.com | [67e 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +orderer.example.com | [67f 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.21.0.8:57110 +orderer.example.com | [680 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [681 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [682 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [683 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | [684 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [685 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [686 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [687 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [688 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [689 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [68a 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | [68b 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [68c 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [68d 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [68e 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [68f 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP +orderer.example.com | [690 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins +orderer.example.com | [691 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +orderer.example.com | [692 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [693 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [694 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +orderer.example.com | [695 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +orderer.example.com | [696 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +orderer.example.com | [697 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org2MSP] +orderer.example.com | [698 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP +orderer.example.com | [699 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP +orderer.example.com | [69a 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org2MSP looking up path [] +orderer.example.com | [69b 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == +orderer.example.com | [69c 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42026c638 gate 1513309757876465000 evaluation starts +orderer.example.com | [69d 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c638 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [69e 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c638 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414d4b66625241343136702b6653617851357150386a5977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455785768634e4d6a63784d6a457a4d444d7a4e5455780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d2f682f2b44587872326c4d315674504477686c41794a56723458742b4b760a564c536d65592b6d58352f2b38303253504d7049785a4b456636356a7a7461734b427847624f67414262657978336f58476437646538716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494353715679724a657246370a596f58444b4b65563241582f366b3659677a3665415031344b4f6566356d71374d416f4743437147534d343942414d43413067414d4555434951443449584b320a386241457353656e5a65752b4e2f35306b3262566a4c50734d734a337345393141726c50784149675862324b3238594f47414c59465873592f74476b2b612f300a4e352b7a2f66545466636847664c6143747a4d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [69f 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +orderer.example.com | [6a0 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c638 principal matched by identity 0 +orderer.example.com | [6a1 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 76 68 01 24 5d e6 7b ad 13 1a 5c f4 45 82 70 e5 |vh.$].{...\.E.p.| +orderer.example.com | 00000010 dc 20 91 08 42 e4 23 16 9d ce 90 6c 8d 69 f1 a6 |. ..B.#....l.i..| +orderer.example.com | [6a2 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 cf e1 7d fa 51 e7 78 eb 82 a4 dd |0E.!...}.Q.x....| +orderer.example.com | 00000010 df e8 cc 11 bb d5 af 09 d3 7f 30 18 ec 6e 6d 42 |..........0..nmB| +orderer.example.com | 00000020 ec 40 46 e6 3b 02 20 5f b4 bc ae 05 35 03 34 9d |.@F.;. _....5.4.| +orderer.example.com | 00000030 ff e7 b3 57 4e 90 ec 52 51 50 7d 5c c1 d4 9a f1 |...WN..RQP}\....| +orderer.example.com | 00000040 26 18 7c 1d 54 b9 e0 |&.|.T..| +orderer.example.com | [6a3 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c638 principal evaluation succeeds for identity 0 +orderer.example.com | [6a4 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42026c638 gate 1513309757876465000 evaluation succeeds +orderer.example.com | [6a5 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins +orderer.example.com | [6a6 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins +orderer.example.com | [6a7 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [6a8 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [6a9 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [6aa 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [6ab 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [6ac 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [6ad 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [6ae 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [6af 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [6b0 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [6b1 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [6b2 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [6b3 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [6b4 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [6b5 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [6b6 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [6b7 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [6b8 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [6b9 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [6ba 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [6bb 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +orderer.example.com | [6bc 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [6bd 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [6be 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [6bf 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [6c0 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [6c1 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | [6c2 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [6c3 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [6c4 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [6c5 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [6c6 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [6c7 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [6c8 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [6c9 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [6ca 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [6cb 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [6cc 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [6cd 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [6ce 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdWgAwIBAgIQGXf5zEgjlejkE1rJW2znwDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowaTELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFSKPRsXnXvaTTqRKjkTRYYoPjGg +orderer.example.com | TgXRAoMQwI+9AaLXTSL+AsApwlxedr+PJ+UgfBNcxey226YSZRJqLeiH/TajXzBd +orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +orderer.example.com | Af8wKQYDVR0OBCIEIPxyg8RiuCl5W+wOoXUqeRhWBcR2XF2JtWJ5qtJMQ3Y1MAoG +orderer.example.com | CCqGSM49BAMCA0gAMEUCIQCoRrlZYPh0Qnsp3Z9KitmTDkRqi6JyR4RLiOyfv8Tf +orderer.example.com | QgIgdHbFqXGTZ0HFQmknUFd5DD4TTltv8Ijmfm8J1skS4jc= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6cf 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +orderer.example.com | ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +orderer.example.com | Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +orderer.example.com | sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6d0 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +orderer.example.com | ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +orderer.example.com | Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +orderer.example.com | sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6d1 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [6d2 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | [6d3 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [6d4 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [6d5 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [6d6 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [6d7 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [6d8 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [6d9 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [6da 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [6db 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [6dc 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [6dd 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQShjAwe+6sxoSMZ8UrYKOcTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | GwyyfDLH07dFVkEvxJDGOKGevUcaYHphZvhzV78MBXVwIEGIENk7Zs8x+dx6iwIK +orderer.example.com | LOGmXxq/Wqd4qLs6kFyZvqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgsK9pE/plIOV10mqefUzE +orderer.example.com | vCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAL7xXrYD1fkzcpxi +orderer.example.com | yyZhFfEvMDWCoUicQw2b+c3GQ6OuAiA0KtNuH4yS4+c13W9Lsd28XNQK88FkwB2J +orderer.example.com | QR9yhJE7rA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6de 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +orderer.example.com | kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +orderer.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +orderer.example.com | OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +orderer.example.com | bqEi6/lY2kK0EtGRnA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6df 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +orderer.example.com | kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +orderer.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +orderer.example.com | OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +orderer.example.com | bqEi6/lY2kK0EtGRnA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6e0 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [6e1 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [6e2 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [6e3 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [6e4 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [6e5 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | [6e6 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [6e7 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [6e8 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [6e9 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [6ea 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAMt+4ybOK1r7B8eavLVTMBUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BPGrtJtHj1Ql02gq7I0ZQQKJwvtZhp0t3rCwF1cFILTHIBM4phJ/ZYJQa1lb12pO +orderer.example.com | sxSxuEvRGTFcZXtunUc0SeWjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICSqVyrJerF7YoXDKKeV +orderer.example.com | 2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCIB+psiek7FqP18l1 +orderer.example.com | 3s2anbtfpiGTHbAnm2BihpD9sRPjAiAIvsdyfn+nb2bCQBK6sodbO+LxSkuZulkP +orderer.example.com | oMR3yCH/eA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6eb 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +orderer.example.com | VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +orderer.example.com | YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +orderer.example.com | 8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +orderer.example.com | N5+z/fTTfchGfLaCtzM= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6ec 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +orderer.example.com | VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +orderer.example.com | YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +orderer.example.com | 8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +orderer.example.com | N5+z/fTTfchGfLaCtzM= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6ed 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [6ee 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [6ef 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [6f0 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +orderer.example.com | [6f1 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +orderer.example.com | [6f2 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +orderer.example.com | [6f3 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +orderer.example.com | [6f4 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +orderer.example.com | [6f5 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +orderer.example.com | [6f6 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +orderer.example.com | [6f7 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +orderer.example.com | [6f8 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +orderer.example.com | [6f9 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +orderer.example.com | [6fa 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +orderer.example.com | [6fb 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +orderer.example.com | [6fc 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +orderer.example.com | [6fd 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +orderer.example.com | [6fe 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +orderer.example.com | [6ff 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +orderer.example.com | [700 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [701 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [702 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [703 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [704 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [705 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [706 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | [707 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [708 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [709 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [70a 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [70b 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [70c 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [70d 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | [70e 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [70f 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [710 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [711 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | [712 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [713 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [714 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [715 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +orderer.example.com | [716 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +orderer.example.com | [717 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [718 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [719 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [71a 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [71b 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | [71c 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +orderer.example.com | [71d 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +orderer.example.com | [71e 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +orderer.example.com | [720 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.21.0.8:57110: rpc error: code = Canceled desc = context canceled +orderer.example.com | [721 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [71f 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [722 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [723 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [724 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [725 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [726 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +orderer.example.com | [727 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | [728 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +orderer.example.com | [729 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | [72a 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | [72b 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [72c 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [72d 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [72e 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | [72f 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [730 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +orderer.example.com | [731 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [732 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [733 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +orderer.example.com | [734 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +orderer.example.com | [735 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +orderer.example.com | [736 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [737 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | [738 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [739 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +orderer.example.com | [73a 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [73b 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [73c 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +orderer.example.com | [73d 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +orderer.example.com | [73e 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [740 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57108: rpc error: code = Canceled desc = context canceled +orderer.example.com | [741 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [73f 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [742 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [743 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [744 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [745 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...909C750B50A16E420C0D471014D469DB +orderer.example.com | [746 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: DA764810AD3EAAF714C7EED7D3249B911F0E4F4D79A1B85D6976F9E74FEFADA8 +orderer.example.com | [747 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 2 to 3, setting lastConfigBlockNum from 1 to 2 +orderer.example.com | [748 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [749 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [74a 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | [74b 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [74c 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [74d 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...909C750B50A16E420C0D471014D469DB +orderer.example.com | [74e 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: BE55140F443298A6BAA985C8EDD7785DFC9F1DACC0CE4A8A77138D6B97FFF6B7 +orderer.example.com | [74f 12-15 03:49:17.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x68, 0x6d, 0x91, 0xee, 0x2d, 0x0, 0xda, 0x9, 0x25, 0x18, 0x90, 0xe9, 0xa9, 0xb6, 0x90, 0xc8, 0x66, 0x89, 0xfe, 0xd7, 0x8a, 0xf7, 0x59, 0xb9, 0x69, 0xf9, 0xd8, 0xb0, 0x15, 0x8, 0x78, 0x54} txOffsets= +orderer.example.com | txId= locPointer=offset=70, bytesLength=12155 +orderer.example.com | ] +orderer.example.com | [750 12-15 03:49:17.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40105], isChainEmpty=[false], lastBlockNumber=[2] +orderer.example.com | [751 12-15 03:49:17.91 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 2 +orderer.example.com | [752 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [753 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.6:44968 +orderer.example.com | [754 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.6:44968 +orderer.example.com | [755 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [756 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [757 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +orderer.example.com | [758 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [759 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +orderer.example.com | [75a 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | [75b 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAIlXD+JMST62kcDisx8EdZ4wCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOmm7o/jS6n0W46EDsOZNTE89JEAsUy3 +orderer.example.com | JQpocRi7jQOPlSYtnLpN9B7pYFXldzUEYQQ6ULfRD/XfuOFxjy3jdCmjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +orderer.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0gAMEUCIQCaq7Zt +orderer.example.com | YoGZKFTwKxKIh0iFWj+K1p/LsaPjOd2X4ALGSAIgVHS1jGmxQaam88SeKViUck5+ +orderer.example.com | IDNK9dYOsiKBpmoLVDw= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [75c 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e640 gate 1513309760882868900 evaluation starts +orderer.example.com | [75d 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e640 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [75e 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e640 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241496c58442b4a4d535436326b63446973783845645a3477436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455775768634e4d6a63784d6a457a4d444d7a4e5455770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424f6d6d376f2f6a53366e305734364544734f5a4e544538394a4541735579330a4a51706f635269376a514f506c5359746e4c704e394237705946586c647a554559515136554c6652442f5866754f46786a79336a64436d6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4376615250365a53446c0a64644a716e6e314d784c776b464f716d394d5877324c474f6b38584c72424e574d416f4743437147534d343942414d43413067414d4555434951436171375a740a596f475a4b4654774b784b4968306946576a2b4b31702f4c7361506a4f64325834414c4753414967564853316a476d785161616d383853654b566955636b352b0a49444e4b3964594f73694b42706d6f4c5644773d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [75f 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e640 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | [760 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e640 principal evaluation fails +orderer.example.com | [761 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e640 gate 1513309760882868900 evaluation fails +orderer.example.com | [762 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +orderer.example.com | [763 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +orderer.example.com | [764 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +orderer.example.com | [765 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e650 gate 1513309760883814800 evaluation starts +orderer.example.com | [766 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e650 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [767 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e650 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241496c58442b4a4d535436326b63446973783845645a3477436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455775768634e4d6a63784d6a457a4d444d7a4e5455770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424f6d6d376f2f6a53366e305734364544734f5a4e544538394a4541735579330a4a51706f635269376a514f506c5359746e4c704e394237705946586c647a554559515136554c6652442f5866754f46786a79336a64436d6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4376615250365a53446c0a64644a716e6e314d784c776b464f716d394d5877324c474f6b38584c72424e574d416f4743437147534d343942414d43413067414d4555434951436171375a740a596f475a4b4654774b784b4968306946576a2b4b31702f4c7361506a4f64325834414c4753414967564853316a476d785161616d383853654b566955636b352b0a49444e4b3964594f73694b42706d6f4c5644773d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [768 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | [769 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [76a 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e650 principal matched by identity 0 +orderer.example.com | [76b 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 72 5b b1 65 67 2a 27 b0 37 64 33 e3 0f 2a 8c 76 |r[.eg*'.7d3..*.v| +orderer.example.com | 00000010 fb c3 57 7b d9 db f0 e9 c6 12 53 43 fe b9 06 51 |..W{......SC...Q| +orderer.example.com | [76c 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 60 0b fe c5 c0 41 a4 c3 bb 0a 49 e5 |0D. `....A....I.| +orderer.example.com | 00000010 b9 bc 0e 04 dc 5c 13 1f f5 ed f6 2e 48 8a c7 3d |.....\......H..=| +orderer.example.com | 00000020 23 bd a4 00 02 20 13 a3 93 e7 3f 6e 36 2c e3 b3 |#.... ....?n6,..| +orderer.example.com | 00000030 de 98 f7 28 88 48 6b e7 d3 4a 0e cd 05 e4 c6 68 |...(.Hk..J.....h| +orderer.example.com | 00000040 1b 25 20 61 fc 79 |.% a.y| +orderer.example.com | [76d 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e650 principal evaluation succeeds for identity 0 +orderer.example.com | [76e 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e650 gate 1513309760883814800 evaluation succeeds +orderer.example.com | [76f 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [770 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [771 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +orderer.example.com | [772 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +orderer.example.com | [773 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [774 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [775 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420179c20) start: > stop: > from 172.21.0.6:44968 +orderer.example.com | [776 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 +orderer.example.com | [777 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12126] +orderer.example.com | [778 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27979], Going to peek [8] bytes +orderer.example.com | [779 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13958], placementInfo={fileNum=[0], startOffset=[12126], bytesOffset=[12128]} +orderer.example.com | [77a 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13958] read from file [0] +orderer.example.com | [77b 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420179c20) for 172.21.0.6:44968 +orderer.example.com | [77c 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14019], Going to peek [8] bytes +orderer.example.com | [77d 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14017], placementInfo={fileNum=[0], startOffset=[26086], bytesOffset=[26088]} +orderer.example.com | [77e 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14017] read from file [0] +orderer.example.com | [77f 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420179c20) for 172.21.0.6:44968 +orderer.example.com | [780 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] +orderer.example.com | [781 12-15 03:49:21.23 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [782 12-15 03:49:21.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.4:40772 +orderer.example.com | [783 12-15 03:49:21.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.4:40772 +orderer.example.com | [784 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [785 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [786 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +orderer.example.com | [787 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [788 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +orderer.example.com | [789 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | [78a 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAL3NzKek8hEVtKQG033nrA0wCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABFKf/1ShMneEIuqfjyHxBUmpAZ9XoizD +orderer.example.com | 0PYfXItXn9uvZ5vGWBGx0EXP22NaIrjBDeSOzI0qqWOHUBHefAfJ6KujTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +orderer.example.com | YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCICpmK2/d +orderer.example.com | duNwsmfdFxvEOOjUejsdtnE3KAnUx/kgAab7AiB+CrG8fUMqQAzKC7pBOY2USIYc +orderer.example.com | WI7/XhL+fOOqr3SNYw== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [78b 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026cc38 gate 1513309761242241800 evaluation starts +orderer.example.com | [78c 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026cc38 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [78d 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026cc38 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414c334e7a4b656b38684556744b51473033336e72413077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455785768634e4d6a63784d6a457a4d444d7a4e5455780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142464b662f3153684d6e6545497571666a79487842556d70415a39586f697a440a30505966584974586e3975765a357647574247783045585032324e6149726a424465534f7a49307171574f48554248656641664a364b756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494353715679724a657246370a596f58444b4b65563241582f366b3659677a3665415031344b4f6566356d71374d416f4743437147534d343942414d43413063414d4551434943706d4b322f640a64754e77736d6664467876454f4f6a55656a7364746e45334b416e55782f6b67416162374169422b4372473866554d7151417a4b433770424f593255534959630a5749372f58684c2b664f4f717233534e59773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [78e 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | [78f 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [790 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026cc38 principal matched by identity 0 +orderer.example.com | [791 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 43 4d de 7e 27 ee 47 4e e2 26 b7 0f c3 7e b0 37 |CM.~'.GN.&...~.7| +orderer.example.com | 00000010 12 78 29 95 c8 9f cb 77 79 92 0d 6b 19 48 b3 26 |.x)....wy..k.H.&| +orderer.example.com | [792 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 54 a2 e1 c5 bc b8 9b a6 47 9d e7 47 |0D. T.......G..G| +orderer.example.com | 00000010 24 85 80 a3 ea 71 1b 22 42 83 66 75 75 21 d3 d4 |$....q."B.fuu!..| +orderer.example.com | 00000020 17 81 0e 9e 02 20 38 48 68 a2 34 ea 77 04 09 c0 |..... 8Hh.4.w...| +orderer.example.com | 00000030 b0 4c 17 02 d4 a5 f3 a5 8d 46 ab f5 c5 b8 c8 3a |.L.......F.....:| +orderer.example.com | 00000040 b8 40 95 29 07 50 |.@.).P| +orderer.example.com | [793 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026cc38 principal evaluation succeeds for identity 0 +orderer.example.com | [794 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026cc38 gate 1513309761242241800 evaluation succeeds +orderer.example.com | [795 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers +orderer.example.com | [796 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +orderer.example.com | [797 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +orderer.example.com | [798 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +orderer.example.com | [799 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [79a 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [79b 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420ad1060) start: > stop: > from 172.21.0.4:40772 +orderer.example.com | [79c 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 +orderer.example.com | [79d 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12126] +orderer.example.com | [79e 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27979], Going to peek [8] bytes +orderer.example.com | [79f 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13958], placementInfo={fileNum=[0], startOffset=[12126], bytesOffset=[12128]} +orderer.example.com | [7a0 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13958] read from file [0] +orderer.example.com | [7a1 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420ad1060) for 172.21.0.4:40772 +orderer.example.com | [7a2 12-15 03:49:21.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14019], Going to peek [8] bytes +orderer.example.com | [7a3 12-15 03:49:21.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14017], placementInfo={fileNum=[0], startOffset=[26086], bytesOffset=[26088]} +orderer.example.com | [7a4 12-15 03:49:21.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14017] read from file [0] +orderer.example.com | [7a5 12-15 03:49:21.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420ad1060) for 172.21.0.4:40772 +orderer.example.com | [7a6 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] +orderer.example.com | [7a7 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [7a8 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.7:33460 +orderer.example.com | [7a9 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.7:33460 +orderer.example.com | [7aa 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [7ab 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [7ac 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +orderer.example.com | [7ad 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [7ae 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +orderer.example.com | [7af 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | [7b0 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGDCCAb+gAwIBAgIQL9CD8dvgLK0sQ8PWDq6MlDAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTFaFw0yNzEyMTMwMzM1NTFa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE1IBtaTQvUUa1aH1RcjXk6b/7FmkPvt41 +orderer.example.com | C+GnAdJEv2tGOHK7/M+PDVx5ajf4vbVpMiz4wM+BRsI3yZuQnfH6lqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgJKpXKsl6sXti +orderer.example.com | hcMop5XYBf/qTpiDPp4A/Xgo55/marswCgYIKoZIzj0EAwIDRwAwRAIgb98dbAnO +orderer.example.com | yIHId+rwemQQ9aQidqLj7W9820b/BSYGcBoCIEtU2XV647baneViWaeGuWLhola7 +orderer.example.com | vPzasLRP5tn/reUi +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [7b1 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e038 gate 1513309761443725200 evaluation starts +orderer.example.com | [7b2 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [7b3 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 processing identity 0 with bytes of 0a074f7267324d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749514c394344386476674c4b3073513850574471364d6c44414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d5455774d7a4d314e544661467730794e7a45794d544d774d7a4d314e5446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d533576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414531494274615451765555613161483152636a586b36622f37466d6b50767434310a432b476e41644a45763274474f484b372f4d2b5044567835616a6634766256704d697a34774d2b4252734933795a75516e6648366c714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674a4b70584b736c36735874690a68634d6f7035585942662f7154706944507034412f58676f35352f6d61727377436759494b6f5a497a6a30454177494452774177524149676239386462416e4f0a79494849642b7277656d51513961516964714c6a375739383230622f4253594763426f434945745532585636343762616e6556695761654775574c686f6c61370a76507a61734c525035746e2f726555690a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [7b4 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | [7b5 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [7b6 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 principal matched by identity 0 +orderer.example.com | [7b7 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 2a ed 49 ab 9a 8e f8 20 66 8a e6 62 1c 5e 7d 52 |*.I.... f..b.^}R| +orderer.example.com | 00000010 73 c6 76 b0 ae 75 0d 15 6e 11 09 94 61 cf 8d c5 |s.v..u..n...a...| +orderer.example.com | [7b8 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 72 d3 cb 3e 06 9d ad d0 e3 5e cc 45 |0D. r..>.....^.E| +orderer.example.com | 00000010 3e 98 92 95 7a de 93 ac ed 3b 6d 0f ed 5d b1 5e |>...z....;m..].^| +orderer.example.com | 00000020 c4 85 3d ee 02 20 00 93 3b da 8b a1 78 6b 9b 65 |..=.. ..;...xk.e| +orderer.example.com | 00000030 0a 0f fe 06 9b d6 fc 86 69 d7 13 0c 51 39 fc 20 |........i...Q9. | +orderer.example.com | 00000040 f1 9d 20 bf 70 a1 |.. .p.| +orderer.example.com | [7b9 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 principal evaluation succeeds for identity 0 +orderer.example.com | [7ba 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e038 gate 1513309761443725200 evaluation succeeds +orderer.example.com | [7bb 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers +orderer.example.com | [7bc 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +orderer.example.com | [7bd 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +orderer.example.com | [7be 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +orderer.example.com | [7bf 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [7c0 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [7c1 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420d31860) start: > stop: > from 172.21.0.7:33460 +orderer.example.com | [7c2 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 +orderer.example.com | [7c3 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12126] +orderer.example.com | [7c4 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27979], Going to peek [8] bytes +orderer.example.com | [7c5 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13958], placementInfo={fileNum=[0], startOffset=[12126], bytesOffset=[12128]} +orderer.example.com | [7c6 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13958] read from file [0] +orderer.example.com | [7c7 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420d31860) for 172.21.0.7:33460 +orderer.example.com | [7c8 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14019], Going to peek [8] bytes +orderer.example.com | [7c9 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14017], placementInfo={fileNum=[0], startOffset=[26086], bytesOffset=[26088]} +orderer.example.com | [7ca 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14017] read from file [0] +orderer.example.com | [7cb 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420d31860) for 172.21.0.7:33460 +orderer.example.com | [7cc 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] +orderer.example.com | [7cd 12-15 03:49:22.48 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [7ce 12-15 03:49:22.48 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.21.0.8:57162 +orderer.example.com | [7cf 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.21.0.8:57162 with txid '2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60' of type ENDORSER_TRANSACTION +orderer.example.com | [7d0 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +orderer.example.com | [7d1 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [7d2 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +orderer.example.com | [7d3 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [7d4 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +orderer.example.com | [7d5 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | [7d6 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +orderer.example.com | kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +orderer.example.com | ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +orderer.example.com | OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +orderer.example.com | bqEi6/lY2kK0EtGRnA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [7d7 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e548 gate 1513309770158803600 evaluation starts +orderer.example.com | [7d8 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e548 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [7d9 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e548 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b78664b6f3271717459665054415039526b4136796f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455775768634e4d6a63784d6a457a4d444d7a4e5455770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424c493853704e726b4330415968693747496377353237505056364e75682b410a6b6f6b7670516355436746536d373374595a375141556c5446384e2f5642424e51436e464c326b72756b4f4c6431496f4237776e5a6e756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4376615250365a53446c0a64644a716e6e314d784c776b464f716d394d5877324c474f6b38584c72424e574d416f4743437147534d343942414d43413063414d455143494235334a6546780a4f665644446c692b4a6955636b463459376b4d64595550714778477373755948305570694169416f7159577a596a4f4c397071677874495430332f59717370630a62714569362f6c59326b4b30457447526e413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [7da 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | [7db 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [7dc 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e548 principal matched by identity 0 +orderer.example.com | [7dd 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 37 d1 ab 05 bf a4 51 fa a4 52 b2 03 2c d3 7f b5 |7.....Q..R..,...| +orderer.example.com | 00000010 32 37 36 aa 78 a0 fb 89 d1 bd 34 10 81 1d 6a 9b |276.x.....4...j.| +orderer.example.com | [7de 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5d 89 f8 45 84 1c 41 2c d5 ca 34 d9 |0D. ]..E..A,..4.| +orderer.example.com | 00000010 1f 75 69 7f 8a 0f cb ca e3 86 11 97 2e 8c c7 08 |.ui.............| +orderer.example.com | 00000020 9f a2 1e a1 02 20 77 7a 72 a3 fb 9f 02 8e a6 f7 |..... wzr.......| +orderer.example.com | 00000030 67 56 88 95 bc 3d 44 f5 10 6b 8e c7 74 6c e5 ab |gV...=D..k..tl..| +orderer.example.com | 00000040 95 62 8b 7d 45 63 |.b.}Ec| +orderer.example.com | [7df 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e548 principal evaluation succeeds for identity 0 +orderer.example.com | [7e0 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e548 gate 1513309770158803600 evaluation succeeds +orderer.example.com | [7e1 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers +orderer.example.com | [7e2 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +orderer.example.com | [7e3 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +orderer.example.com | [7e4 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +orderer.example.com | [7e5 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +orderer.example.com | [7e6 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +orderer.example.com | [7e7 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.21.0.8:57162 +orderer.example.com | [7e8 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +orderer.example.com | [7e9 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/common/flogging] serveHTTP2Transport.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.21.0.5:7050->172.21.0.8:57162: read: connection reset by peer +orderer.example.com | [7ea 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.21.0.8:57162: rpc error: code = Canceled desc = context canceled +orderer.example.com | [7eb 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [7ec 12-15 03:49:30.31 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [7ed 12-15 03:49:30.31 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.21.0.8:57170 +orderer.example.com | [7ee 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block +orderer.example.com | [7ef 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [7f0 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [7f1 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [7f2 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [7f3 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...6015B6D50E0D12C6832F6AFE19D90282 +orderer.example.com | [7f4 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 645C60B4B821BC6D7C19874C3E98022D5CB8FAD49A5734D81F2494D3626AE50B +orderer.example.com | [7f5 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [7f6 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [7f7 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | [7f8 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [7f9 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [7fa 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...6015B6D50E0D12C6832F6AFE19D90282 +orderer.example.com | [7fb 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 6E84D209A4CBDEC2B73E15F6467C0876A6FB6CF85B73DBE6EF124D954460CAA3 +orderer.example.com | [7fc 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xbd, 0x1d, 0x3e, 0x71, 0x54, 0x7d, 0x18, 0xea, 0x68, 0xf5, 0xac, 0xe5, 0x8c, 0xfe, 0x88, 0x50, 0x5, 0xc9, 0x4a, 0xf7, 0x43, 0x38, 0xe6, 0x11, 0x25, 0x7e, 0xb7, 0xf4, 0xb1, 0x42, 0x13, 0xae} txOffsets= +orderer.example.com | txId=2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 locPointer=offset=70, bytesLength=3454 +orderer.example.com | ] +orderer.example.com | [7fd 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45423], isChainEmpty=[false], lastBlockNumber=[3] +orderer.example.com | [7fe 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 3 +orderer.example.com | [7ff 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] +orderer.example.com | [800 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5318], Going to peek [8] bytes +orderer.example.com | [801 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5316], placementInfo={fileNum=[0], startOffset=[40105], bytesOffset=[40107]} +orderer.example.com | [803 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5316] read from file [0] +orderer.example.com | [804 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420d31860) for 172.21.0.7:33460 +orderer.example.com | [802 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] +orderer.example.com | [805 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] +orderer.example.com | [806 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] +orderer.example.com | [807 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5318], Going to peek [8] bytes +orderer.example.com | [808 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5316], placementInfo={fileNum=[0], startOffset=[40105], bytesOffset=[40107]} +orderer.example.com | [809 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5316] read from file [0] +orderer.example.com | [80a 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420ad1060) for 172.21.0.4:40772 +orderer.example.com | [80b 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> WARN [channel: businesschannel] Error sending to 172.21.0.4:40772: rpc error: code = Canceled desc = context canceled +orderer.example.com | [80c 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [80d 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] +orderer.example.com | [80e 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] +orderer.example.com | [80f 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5318], Going to peek [8] bytes +orderer.example.com | [810 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5316], placementInfo={fileNum=[0], startOffset=[40105], bytesOffset=[40107]} +orderer.example.com | [811 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5316] read from file [0] +orderer.example.com | [812 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420179c20) for 172.21.0.6:44968 +orderer.example.com | [813 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] +orderer.example.com | [814 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.21.0.8:57170 with txid '912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218' of type ENDORSER_TRANSACTION +orderer.example.com | [815 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +orderer.example.com | [816 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [817 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +orderer.example.com | [818 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [819 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +orderer.example.com | [81a 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | [81b 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +orderer.example.com | VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +orderer.example.com | YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +orderer.example.com | 8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +orderer.example.com | N5+z/fTTfchGfLaCtzM= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [81c 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c078 gate 1513309777767466600 evaluation starts +orderer.example.com | [81d 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c078 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [81e 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c078 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414d4b66625241343136702b6653617851357150386a5977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455785768634e4d6a63784d6a457a4d444d7a4e5455780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d2f682f2b44587872326c4d315674504477686c41794a56723458742b4b760a564c536d65592b6d58352f2b38303253504d7049785a4b456636356a7a7461734b427847624f67414262657978336f58476437646538716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494353715679724a657246370a596f58444b4b65563241582f366b3659677a3665415031344b4f6566356d71374d416f4743437147534d343942414d43413067414d4555434951443449584b320a386241457353656e5a65752b4e2f35306b3262566a4c50734d734a337345393141726c50784149675862324b3238594f47414c59465873592f74476b2b612f300a4e352b7a2f66545466636847664c6143747a4d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [81f 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c078 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +orderer.example.com | [820 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c078 principal evaluation fails +orderer.example.com | [821 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c078 gate 1513309777767466600 evaluation fails +orderer.example.com | [822 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Writers +orderer.example.com | [823 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +orderer.example.com | [824 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == +orderer.example.com | [825 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c088 gate 1513309777767846700 evaluation starts +orderer.example.com | [826 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c088 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [827 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c088 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414d4b66625241343136702b6653617851357150386a5977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455785768634e4d6a63784d6a457a4d444d7a4e5455780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d2f682f2b44587872326c4d315674504477686c41794a56723458742b4b760a564c536d65592b6d58352f2b38303253504d7049785a4b456636356a7a7461734b427847624f67414262657978336f58476437646538716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494353715679724a657246370a596f58444b4b65563241582f366b3659677a3665415031344b4f6566356d71374d416f4743437147534d343942414d43413067414d4555434951443449584b320a386241457353656e5a65752b4e2f35306b3262566a4c50734d734a337345393141726c50784149675862324b3238594f47414c59465873592f74476b2b612f300a4e352b7a2f66545466636847664c6143747a4d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [828 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | [829 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [82a 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c088 principal matched by identity 0 +orderer.example.com | [82b 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 36 26 50 e1 b2 f7 95 14 c2 40 1b ca 7e fb e4 f4 |6&P......@..~...| +orderer.example.com | 00000010 6f b2 c1 78 83 a5 33 70 4b 9a aa 1a c9 2e dc c4 |o..x..3pK.......| +orderer.example.com | [82c 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 80 72 3c a6 e3 cf 2a a0 31 25 32 |0E.!..r<...*.1%2| +orderer.example.com | 00000010 1b ea 6e 6c 4d f4 ee 36 ba 0d 7a 54 13 c3 ba 6f |..nlM..6..zT...o| +orderer.example.com | 00000020 26 ee 75 2c ba 02 20 67 08 fb 3d b8 5d c5 c2 35 |&.u,.. g..=.]..5| +orderer.example.com | 00000030 b0 16 a3 21 11 e7 28 3e be 9a fc 72 b7 a8 53 5e |...!..(>...r..S^| +orderer.example.com | 00000040 2e b9 09 61 9b 1c eb |...a...| +orderer.example.com | [82d 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c088 principal evaluation succeeds for identity 0 +orderer.example.com | [82e 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c088 gate 1513309777767846700 evaluation succeeds +orderer.example.com | [82f 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers +orderer.example.com | [830 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +orderer.example.com | [831 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +orderer.example.com | [832 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +orderer.example.com | [833 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +orderer.example.com | [834 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +orderer.example.com | [835 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.21.0.8:57170 +orderer.example.com | [836 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +orderer.example.com | [837 12-15 03:49:37.77 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.21.0.8:57170: rpc error: code = Canceled desc = context canceled +orderer.example.com | [838 12-15 03:49:37.77 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [839 12-15 03:49:39.76 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block +orderer.example.com | [83a 12-15 03:49:39.76 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [83b 12-15 03:49:39.76 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [83c 12-15 03:49:39.76 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [83d 12-15 03:49:39.76 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [83e 12-15 03:49:39.76 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...1661D8DE9DE1F25EDF6EA03262E66E34 +orderer.example.com | [83f 12-15 03:49:39.76 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: EA6D95163F121C5D19B0380C5C76524D961E2508763ECBDFE662B725B2EB1D44 +orderer.example.com | [840 12-15 03:49:39.76 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [841 12-15 03:49:39.76 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [842 12-15 03:49:39.76 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | [843 12-15 03:49:39.76 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [844 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [845 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...1661D8DE9DE1F25EDF6EA03262E66E34 +orderer.example.com | [846 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: E13B4959CE3F361B67A573A9F8C028A2F542B8C56FDE191DB1D0FBB1D7CB7087 +orderer.example.com | [847 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x16, 0x8f, 0x87, 0x62, 0x56, 0x57, 0x56, 0x27, 0xf7, 0xf4, 0x70, 0xdb, 0x81, 0x94, 0xc0, 0xac, 0xf4, 0x6c, 0x89, 0xd9, 0x2e, 0x92, 0x8f, 0x5e, 0xb2, 0xa6, 0x41, 0xed, 0x97, 0x77, 0x61, 0xc3} txOffsets= +orderer.example.com | txId=912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 locPointer=offset=70, bytesLength=3454 +orderer.example.com | ] +orderer.example.com | [848 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50742], isChainEmpty=[false], lastBlockNumber=[4] +orderer.example.com | [849 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 4 +orderer.example.com | [84a 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[4] +orderer.example.com | [84b 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5319], Going to peek [8] bytes +orderer.example.com | [84c 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5317], placementInfo={fileNum=[0], startOffset=[45423], bytesOffset=[45425]} +orderer.example.com | [84e 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5317] read from file [0] +orderer.example.com | [84d 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[4] +orderer.example.com | [84f 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420179c20) for 172.21.0.6:44968 +orderer.example.com | [851 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[4], waitForBlockNum=[5] +orderer.example.com | [850 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5319], Going to peek [8] bytes +orderer.example.com | [852 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5317], placementInfo={fileNum=[0], startOffset=[45423], bytesOffset=[45425]} +orderer.example.com | [853 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5317] read from file [0] +orderer.example.com | [854 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420d31860) for 172.21.0.7:33460 +orderer.example.com | [855 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[4], waitForBlockNum=[5] +orderer.example.com | [856 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [857 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.21.0.8:57180 +orderer.example.com | [858 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.21.0.8:57180 with txid '522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e' of type ENDORSER_TRANSACTION +orderer.example.com | [859 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +orderer.example.com | [85a 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [85b 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +orderer.example.com | [85c 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [85d 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +orderer.example.com | [85e 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c0d8 gate 1513309785216349100 evaluation starts +orderer.example.com | [85f 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c0d8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [860 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c0d8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b78664b6f3271717459665054415039526b4136796f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455775768634e4d6a63784d6a457a4d444d7a4e5455770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424c493853704e726b4330415968693747496377353237505056364e75682b410a6b6f6b7670516355436746536d373374595a375141556c5446384e2f5642424e51436e464c326b72756b4f4c6431496f4237776e5a6e756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4376615250365a53446c0a64644a716e6e314d784c776b464f716d394d5877324c474f6b38584c72424e574d416f4743437147534d343942414d43413063414d455143494235334a6546780a4f665644446c692b4a6955636b463459376b4d64595550714778477373755948305570694169416f7159577a596a4f4c397071677874495430332f59717370630a62714569362f6c59326b4b30457447526e413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [861 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | [862 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [863 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c0d8 principal matched by identity 0 +orderer.example.com | [864 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 5c 70 fd 4e c4 5c 19 5e 77 98 d9 ea b3 68 ba fe |\p.N.\.^w....h..| +orderer.example.com | 00000010 95 45 67 c9 4b 0f db 42 25 0c 11 c3 ee a0 67 35 |.Eg.K..B%.....g5| +orderer.example.com | [865 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 0c ba 90 89 6d 59 24 ee 92 c4 f1 c5 |0D. ....mY$.....| +orderer.example.com | 00000010 22 22 a5 53 df cf 78 e5 fa 7e 57 4b 62 96 fe 24 |"".S..x..~WKb..$| +orderer.example.com | 00000020 8e 3c 3c c6 02 20 35 6c e0 4e b6 6f d6 f8 eb bc |.<<.. 5l.N.o....| +orderer.example.com | 00000030 55 c8 b1 45 4d f9 d6 eb 74 d2 f2 3f 48 6a ff dc |U..EM...t..?Hj..| +orderer.example.com | 00000040 cf 48 dd 2b a7 ed |.H.+..| +orderer.example.com | [866 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c0d8 principal evaluation succeeds for identity 0 +orderer.example.com | [867 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c0d8 gate 1513309785216349100 evaluation succeeds +orderer.example.com | [868 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers +orderer.example.com | [869 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +orderer.example.com | [86a 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +orderer.example.com | [86b 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +orderer.example.com | [86c 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +orderer.example.com | [86d 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +orderer.example.com | [86e 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.21.0.8:57180 +orderer.example.com | [86f 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +orderer.example.com | [870 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.21.0.8:57180: rpc error: code = Canceled desc = context canceled +orderer.example.com | [871 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [872 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block +orderer.example.com | [873 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [874 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [875 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [876 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [877 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...2D1ADD009853F709AEBF5027887E70FC +orderer.example.com | [878 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 519E94470CFC18CF99DC5F398153945312D6B4362384ECB9907F5808D115370A +orderer.example.com | [879 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [87a 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [87b 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | [87c 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [87d 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [87e 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...2D1ADD009853F709AEBF5027887E70FC +orderer.example.com | [87f 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: E16E2205E4118F86C002AB521C879C07618C47B004B5ED1546A30D2BB2F3A54E +orderer.example.com | [880 12-15 03:49:47.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xcb, 0xcf, 0xb6, 0xae, 0xe4, 0xec, 0x84, 0x3d, 0xff, 0x69, 0xec, 0xe8, 0x67, 0xe0, 0x4, 0x97, 0xd4, 0xed, 0x51, 0x58, 0x9c, 0x6d, 0xdb, 0x2f, 0x52, 0xb2, 0x7b, 0xe3, 0x9b, 0x2a, 0xb2, 0x78} txOffsets= +orderer.example.com | txId=522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e locPointer=offset=70, bytesLength=2913 +orderer.example.com | ] +orderer.example.com | [881 12-15 03:49:48.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55518], isChainEmpty=[false], lastBlockNumber=[5] +orderer.example.com | [882 12-15 03:49:48.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[5] +orderer.example.com | [883 12-15 03:49:48.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4776], Going to peek [8] bytes +orderer.example.com | [886 12-15 03:49:48.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4774], placementInfo={fileNum=[0], startOffset=[50742], bytesOffset=[50744]} +orderer.example.com | [887 12-15 03:49:48.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4774] read from file [0] +orderer.example.com | [888 12-15 03:49:48.10 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420179c20) for 172.21.0.6:44968 +orderer.example.com | [884 12-15 03:49:48.10 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 5 +orderer.example.com | [885 12-15 03:49:48.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[5] +orderer.example.com | [889 12-15 03:49:48.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4776], Going to peek [8] bytes +orderer.example.com | [88a 12-15 03:49:48.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4774], placementInfo={fileNum=[0], startOffset=[50742], bytesOffset=[50744]} +orderer.example.com | [88b 12-15 03:49:48.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4774] read from file [0] +orderer.example.com | [88c 12-15 03:49:48.10 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420d31860) for 172.21.0.7:33460 +orderer.example.com | [88d 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[5], waitForBlockNum=[6] +orderer.example.com | [88e 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[5], waitForBlockNum=[6] +orderer.example.com | [88f 12-15 03:49:54.61 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [890 12-15 03:49:54.61 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.21.0.8:57190 +orderer.example.com | [891 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.21.0.8:57190 with txid '397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a' of type ENDORSER_TRANSACTION +orderer.example.com | [892 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +orderer.example.com | [893 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [894 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +orderer.example.com | [895 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [896 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +orderer.example.com | [897 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c138 gate 1513309794719224800 evaluation starts +orderer.example.com | [898 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c138 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [899 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c138 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414d4b66625241343136702b6653617851357150386a5977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455785768634e4d6a63784d6a457a4d444d7a4e5455780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d2f682f2b44587872326c4d315674504477686c41794a56723458742b4b760a564c536d65592b6d58352f2b38303253504d7049785a4b456636356a7a7461734b427847624f67414262657978336f58476437646538716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494353715679724a657246370a596f58444b4b65563241582f366b3659677a3665415031344b4f6566356d71374d416f4743437147534d343942414d43413067414d4555434951443449584b320a386241457353656e5a65752b4e2f35306b3262566a4c50734d734a337345393141726c50784149675862324b3238594f47414c59465873592f74476b2b612f300a4e352b7a2f66545466636847664c6143747a4d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [89a 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c138 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +orderer.example.com | [89b 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c138 principal evaluation fails +orderer.example.com | [89c 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c138 gate 1513309794719224800 evaluation fails +orderer.example.com | [89d 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Writers +orderer.example.com | [89e 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +orderer.example.com | [89f 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == +orderer.example.com | [8a0 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c140 gate 1513309794723165000 evaluation starts +orderer.example.com | [8a1 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c140 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [8a2 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c140 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414d4b66625241343136702b6653617851357150386a5977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455785768634e4d6a63784d6a457a4d444d7a4e5455780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d2f682f2b44587872326c4d315674504477686c41794a56723458742b4b760a564c536d65592b6d58352f2b38303253504d7049785a4b456636356a7a7461734b427847624f67414262657978336f58476437646538716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494353715679724a657246370a596f58444b4b65563241582f366b3659677a3665415031344b4f6566356d71374d416f4743437147534d343942414d43413067414d4555434951443449584b320a386241457353656e5a65752b4e2f35306b3262566a4c50734d734a337345393141726c50784149675862324b3238594f47414c59465873592f74476b2b612f300a4e352b7a2f66545466636847664c6143747a4d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [8a3 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | [8a4 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [8a5 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c140 principal matched by identity 0 +orderer.example.com | [8a6 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 bf ae 91 65 c1 d8 bd 0d 59 89 56 26 d4 97 7b b1 |...e....Y.V&..{.| +orderer.example.com | 00000010 89 17 9a f0 3c 1b 5f 16 06 40 3e 80 31 60 df 13 |....<._..@>.1`..| +orderer.example.com | [8a7 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 72 ec 39 84 15 37 12 2d 33 d4 ea 55 |0D. r.9..7.-3..U| +orderer.example.com | 00000010 2f 2a 1f 19 62 d5 e6 f3 c2 de 7e c0 bc a3 a3 bd |/*..b.....~.....| +orderer.example.com | 00000020 19 fd a1 41 02 20 27 55 74 27 20 de 68 40 63 d9 |...A. 'Ut' .h@c.| +orderer.example.com | 00000030 f9 bf 99 fe ce c2 ac 77 a6 8d 3a 2e 0f c1 06 6d |.......w..:....m| +orderer.example.com | 00000040 1e 66 4c dd b9 31 |.fL..1| +orderer.example.com | [8a8 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c140 principal evaluation succeeds for identity 0 +orderer.example.com | [8a9 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c140 gate 1513309794723165000 evaluation succeeds +orderer.example.com | [8aa 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers +orderer.example.com | [8ab 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +orderer.example.com | [8ac 12-15 03:49:54.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +orderer.example.com | [8ad 12-15 03:49:54.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +orderer.example.com | [8ae 12-15 03:49:54.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +orderer.example.com | [8af 12-15 03:49:54.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +orderer.example.com | [8b0 12-15 03:49:54.73 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.21.0.8:57190 +orderer.example.com | [8b1 12-15 03:49:54.73 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +orderer.example.com | [8b2 12-15 03:49:54.73 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.21.0.8:57190: rpc error: code = Canceled desc = context canceled +orderer.example.com | [8b3 12-15 03:49:54.73 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [8b4 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block +orderer.example.com | [8b5 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [8b6 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [8b7 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [8b8 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [8b9 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...F8F9DBA48D8CA1AE3691001084973D48 +orderer.example.com | [8ba 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 82186859D28CA672C4F2D4DA0C136E436876C507D514040A95DFCE75F4479205 +orderer.example.com | [8bb 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [8bc 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [8bd 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | [8be 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [8bf 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [8c0 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...F8F9DBA48D8CA1AE3691001084973D48 +orderer.example.com | [8c1 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 139C393A768A2938697F20FB65DEB087BD8E96BC5F3586D3BA280D86FEA32B82 +orderer.example.com | [8c2 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xd4, 0x4a, 0x73, 0x70, 0x52, 0x32, 0xf1, 0x81, 0x20, 0x2c, 0xdf, 0x71, 0xd8, 0x60, 0x7d, 0x41, 0x3c, 0x56, 0x93, 0x63, 0xa7, 0x8a, 0xcb, 0xad, 0x39, 0xe1, 0x1d, 0xce, 0xe6, 0xca, 0x53, 0x6c} txOffsets= +orderer.example.com | txId=397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a locPointer=offset=70, bytesLength=2910 +orderer.example.com | ] +orderer.example.com | [8c3 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60293], isChainEmpty=[false], lastBlockNumber=[6] +orderer.example.com | [8c4 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 6 +orderer.example.com | [8c5 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [8c6 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4775], Going to peek [8] bytes +orderer.example.com | [8c7 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4773], placementInfo={fileNum=[0], startOffset=[55518], bytesOffset=[55520]} +orderer.example.com | [8c8 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4773] read from file [0] +orderer.example.com | [8c9 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420d31860) for 172.21.0.7:33460 +orderer.example.com | [8ca 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [8cb 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [8cc 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4775], Going to peek [8] bytes +orderer.example.com | [8cd 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4773], placementInfo={fileNum=[0], startOffset=[55518], bytesOffset=[55520]} +orderer.example.com | [8ce 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4773] read from file [0] +orderer.example.com | [8cf 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420179c20) for 172.21.0.6:44968 +orderer.example.com | [8d0 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [8d1 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [8d2 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57210 +orderer.example.com | [8d3 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57210 +orderer.example.com | [8d4 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [8d5 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [8d6 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +orderer.example.com | [8d7 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [8d8 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +orderer.example.com | [8d9 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | [8da 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +orderer.example.com | ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +orderer.example.com | Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +orderer.example.com | sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [8db 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c168 gate 1513309797768796500 evaluation starts +orderer.example.com | [8dc 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c168 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [8dd 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c168 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [8de 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c168 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | [8df 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c168 principal evaluation fails +orderer.example.com | [8e0 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c168 gate 1513309797768796500 evaluation fails +orderer.example.com | [8e1 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +orderer.example.com | [8e2 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +orderer.example.com | [8e3 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +orderer.example.com | [8e4 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c178 gate 1513309797770578600 evaluation starts +orderer.example.com | [8e5 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c178 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [8e6 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c178 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [8e7 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c178 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | [8e8 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c178 principal evaluation fails +orderer.example.com | [8e9 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c178 gate 1513309797770578600 evaluation fails +orderer.example.com | [8ea 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [8eb 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [8ec 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org1MSP.Readers Org2MSP.Readers ] +orderer.example.com | [8ed 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +orderer.example.com | [8ee 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +orderer.example.com | [8ef 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [8f0 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [8f1 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [8f2 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c180 gate 1513309797772198600 evaluation starts +orderer.example.com | [8f3 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c180 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [8f4 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c180 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [8f5 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [8f6 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [8f7 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c180 principal matched by identity 0 +orderer.example.com | [8f8 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d0 77 53 91 3a 74 01 19 fb 9a b6 c1 30 15 16 84 |.wS.:t......0...| +orderer.example.com | 00000010 db 85 22 b4 af 85 33 11 76 2c a6 ba fb 41 53 05 |.."...3.v,...AS.| +orderer.example.com | [8f9 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 1c fc 20 9b 94 09 19 6c 39 7a e3 98 |0D. .. ....l9z..| +orderer.example.com | 00000010 b3 24 d4 9a dc b1 7a 3b b9 5a 8b 01 cd 5a 33 b4 |.$....z;.Z...Z3.| +orderer.example.com | 00000020 70 ca e0 5f 02 20 6c 59 25 a7 80 60 b7 3d c0 28 |p.._. lY%..`.=.(| +orderer.example.com | 00000030 a4 90 15 90 19 9a 7b f7 ed 63 b3 6c 6d 47 4f bc |......{..c.lmGO.| +orderer.example.com | 00000040 e8 f9 db 0e 1e 91 |......| +orderer.example.com | [8fa 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c180 principal evaluation succeeds for identity 0 +orderer.example.com | [8fb 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c180 gate 1513309797772198600 evaluation succeeds +orderer.example.com | [8fc 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [8fd 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [8fe 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [8ff 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [900 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [901 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [902 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c96080) start: > stop: > from 172.21.0.8:57210 +orderer.example.com | [903 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +orderer.example.com | [904 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +orderer.example.com | [905 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[60293], Going to peek [8] bytes +orderer.example.com | [906 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12124], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | [907 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12124] read from file [0] +orderer.example.com | [908 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c96080) for 172.21.0.8:57210 +orderer.example.com | [909 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.21.0.8:57210 for (0xc420c96080) +orderer.example.com | [90b 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [90c 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [90a 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.21.0.8:57210 +orderer.example.com | [90e 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57210 +orderer.example.com | [90d 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [90f 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [910 12-15 03:49:57.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57210: rpc error: code = Canceled desc = context canceled +orderer.example.com | [911 12-15 03:49:57.78 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [912 12-15 03:49:57.88 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [913 12-15 03:49:57.88 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57212 +orderer.example.com | [914 12-15 03:49:57.88 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57212 +orderer.example.com | [915 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [916 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [917 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +orderer.example.com | [918 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [919 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +orderer.example.com | [91a 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c1c8 gate 1513309797891459700 evaluation starts +orderer.example.com | [91b 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c1c8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [91c 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c1c8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [91d 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c1c8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | [91e 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c1c8 principal evaluation fails +orderer.example.com | [91f 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c1c8 gate 1513309797891459700 evaluation fails +orderer.example.com | [920 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +orderer.example.com | [921 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +orderer.example.com | [922 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +orderer.example.com | [923 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c1d0 gate 1513309797894029300 evaluation starts +orderer.example.com | [924 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c1d0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [925 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c1d0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [926 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c1d0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | [927 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c1d0 principal evaluation fails +orderer.example.com | [928 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c1d0 gate 1513309797894029300 evaluation fails +orderer.example.com | [929 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [92a 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [92b 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org1MSP.Readers Org2MSP.Readers ] +orderer.example.com | [92c 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +orderer.example.com | [92d 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +orderer.example.com | [92e 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [92f 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [930 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [931 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c1d8 gate 1513309797896338500 evaluation starts +orderer.example.com | [932 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c1d8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [933 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c1d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [934 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [935 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [936 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c1d8 principal matched by identity 0 +orderer.example.com | [937 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 f2 ff cb 3c 7e 89 0e 5a e4 b9 f6 3e d3 57 07 b4 |...<~..Z...>.W..| +orderer.example.com | 00000010 d3 ec 1b 67 f2 62 08 9b 2a 51 e8 1c 56 c2 9b e2 |...g.b..*Q..V...| +orderer.example.com | [938 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 e7 c3 f4 2e d2 18 1c bc 92 e8 fe |0E.!............| +orderer.example.com | 00000010 b0 e5 64 b1 ba cc da 6f a9 d9 4b 37 52 1a 8e e2 |..d....o..K7R...| +orderer.example.com | 00000020 d1 95 16 e8 da 02 20 16 3a ee 38 54 19 7e af c4 |...... .:.8T.~..| +orderer.example.com | 00000030 6c 64 e3 74 9d eb 65 8e a0 99 9d 8b b3 ea 09 c3 |ld.t..e.........| +orderer.example.com | 00000040 2d c7 e9 89 aa e4 68 |-.....h| +orderer.example.com | [939 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c1d8 principal evaluation succeeds for identity 0 +orderer.example.com | [93a 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c1d8 gate 1513309797896338500 evaluation succeeds +orderer.example.com | [93b 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [93c 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [93d 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [93e 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [93f 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [940 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [941 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c96ee0) start: > stop: > from 172.21.0.8:57212 +orderer.example.com | [942 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +orderer.example.com | [943 12-15 03:49:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12126] +orderer.example.com | [944 12-15 03:49:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[48167], Going to peek [8] bytes +orderer.example.com | [945 12-15 03:49:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13958], placementInfo={fileNum=[0], startOffset=[12126], bytesOffset=[12128]} +orderer.example.com | [946 12-15 03:49:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13958] read from file [0] +orderer.example.com | [947 12-15 03:49:57.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c96ee0) for 172.21.0.8:57212 +orderer.example.com | [948 12-15 03:49:57.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.21.0.8:57212 for (0xc420c96ee0) +orderer.example.com | [94a 12-15 03:49:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [94b 12-15 03:49:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [94c 12-15 03:49:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [94d 12-15 03:49:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [949 12-15 03:49:57.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.21.0.8:57212 +orderer.example.com | [94e 12-15 03:49:57.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57212 +orderer.example.com | [94f 12-15 03:49:57.91 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57212: rpc error: code = Canceled desc = context canceled +orderer.example.com | [950 12-15 03:49:57.91 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [951 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [952 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57214 +orderer.example.com | [953 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57214 +orderer.example.com | [954 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [955 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [956 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +orderer.example.com | [957 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [958 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +orderer.example.com | [959 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c220 gate 1513309798054672000 evaluation starts +orderer.example.com | [95a 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c220 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [95b 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c220 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [95c 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c220 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | [95d 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c220 principal evaluation fails +orderer.example.com | [95e 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c220 gate 1513309798054672000 evaluation fails +orderer.example.com | [95f 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +orderer.example.com | [960 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +orderer.example.com | [961 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +orderer.example.com | [962 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c228 gate 1513309798056485400 evaluation starts +orderer.example.com | [963 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c228 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [964 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c228 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [965 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c228 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | [966 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c228 principal evaluation fails +orderer.example.com | [967 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c228 gate 1513309798056485400 evaluation fails +orderer.example.com | [968 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [969 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [96a 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org1MSP.Readers Org2MSP.Readers ] +orderer.example.com | [96b 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +orderer.example.com | [96c 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +orderer.example.com | [96d 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [96e 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [96f 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [970 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c230 gate 1513309798058716900 evaluation starts +orderer.example.com | [971 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c230 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [972 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c230 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [973 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [974 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [975 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c230 principal matched by identity 0 +orderer.example.com | [976 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 a0 76 e9 34 f7 41 7d 93 d1 db 3c ea 82 2e 44 d0 |.v.4.A}...<...D.| +orderer.example.com | 00000010 7b 3f eb 3c 83 38 d5 af 0b 66 15 6a c1 c2 c0 84 |{?.<.8...f.j....| +orderer.example.com | [977 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8f ce 02 06 e9 a6 69 f3 7d e6 47 |0E.!.......i.}.G| +orderer.example.com | 00000010 31 db 3e 4e 03 cd e1 c8 b7 46 49 53 29 c9 aa 49 |1.>N.....FIS)..I| +orderer.example.com | 00000020 2a f8 4c 4f 1a 02 20 13 79 cd e1 7d f5 e9 03 a7 |*.LO.. .y..}....| +orderer.example.com | 00000030 b8 95 13 d7 05 ff d4 aa c9 d7 a6 4c e7 ae 96 38 |...........L...8| +orderer.example.com | 00000040 58 06 17 8e 97 b7 39 |X.....9| +orderer.example.com | [978 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c230 principal evaluation succeeds for identity 0 +orderer.example.com | [979 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c230 gate 1513309798058716900 evaluation succeeds +orderer.example.com | [97a 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [97b 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [97c 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [97d 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [97e 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [97f 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [980 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c97c20) start: > stop: > from 172.21.0.8:57214 +orderer.example.com | [981 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +orderer.example.com | [982 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[26086] +orderer.example.com | [983 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34207], Going to peek [8] bytes +orderer.example.com | [984 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14017], placementInfo={fileNum=[0], startOffset=[26086], bytesOffset=[26088]} +orderer.example.com | [985 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14017] read from file [0] +orderer.example.com | [986 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c97c20) for 172.21.0.8:57214 +orderer.example.com | [987 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.21.0.8:57214 for (0xc420c97c20) +orderer.example.com | [989 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [98a 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [98b 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [98c 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [988 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.21.0.8:57214 +orderer.example.com | [98d 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57214 +orderer.example.com | [98e 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57214: rpc error: code = Canceled desc = context canceled +orderer.example.com | [98f 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [990 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [991 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57216 +orderer.example.com | [992 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57216 +orderer.example.com | [993 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [994 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [995 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +orderer.example.com | [996 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [997 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +orderer.example.com | [998 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e6a0 gate 1513309798186917500 evaluation starts +orderer.example.com | [999 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6a0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [99a 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [99b 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6a0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | [99c 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6a0 principal evaluation fails +orderer.example.com | [99d 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e6a0 gate 1513309798186917500 evaluation fails +orderer.example.com | [99e 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +orderer.example.com | [99f 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +orderer.example.com | [9a0 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +orderer.example.com | [9a1 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e6b8 gate 1513309798188642100 evaluation starts +orderer.example.com | [9a2 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6b8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [9a3 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [9a4 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6b8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | [9a5 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6b8 principal evaluation fails +orderer.example.com | [9a6 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e6b8 gate 1513309798188642100 evaluation fails +orderer.example.com | [9a7 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [9a8 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [9a9 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org1MSP.Readers ] +orderer.example.com | [9aa 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +orderer.example.com | [9ab 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +orderer.example.com | [9ac 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [9ad 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [9ae 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [9af 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e6c8 gate 1513309798191301200 evaluation starts +orderer.example.com | [9b0 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6c8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [9b1 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6c8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [9b2 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [9b3 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [9b4 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6c8 principal matched by identity 0 +orderer.example.com | [9b5 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 20 46 c7 aa 92 b2 58 71 49 66 56 68 62 67 c0 7a | F....XqIfVhbg.z| +orderer.example.com | 00000010 1c 9d f1 f9 d4 f5 c5 70 2b 0b 34 89 9f f4 49 4b |.......p+.4...IK| +orderer.example.com | [9b6 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c4 a7 44 44 8f f1 a0 bb 89 4b 1c |0E.!...DD.....K.| +orderer.example.com | 00000010 1c 19 88 fd 5d 81 b4 62 82 fc 25 13 47 c1 58 cd |....]..b..%.G.X.| +orderer.example.com | 00000020 d8 da e2 cb 29 02 20 0f 3f 93 4b 15 5f 6f 46 41 |....). .?.K._oFA| +orderer.example.com | 00000030 f6 74 21 eb 78 53 1b 5e 6b 7b 3c b6 81 fb 43 05 |.t!.xS.^k{<...C.| +orderer.example.com | 00000040 c4 35 ab 41 79 63 79 |.5.Aycy| +orderer.example.com | [9b7 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6c8 principal evaluation succeeds for identity 0 +orderer.example.com | [9b8 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e6c8 gate 1513309798191301200 evaluation succeeds +orderer.example.com | [9b9 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [9ba 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [9bb 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [9bc 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [9bd 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [9be 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [9bf 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420357820) start: > stop: > from 172.21.0.8:57216 +orderer.example.com | [9c0 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +orderer.example.com | [9c1 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[40105] +orderer.example.com | [9c2 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[20188], Going to peek [8] bytes +orderer.example.com | [9c3 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5316], placementInfo={fileNum=[0], startOffset=[40105], bytesOffset=[40107]} +orderer.example.com | [9c4 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5316] read from file [0] +orderer.example.com | [9c5 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420357820) for 172.21.0.8:57216 +orderer.example.com | [9c6 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.21.0.8:57216 for (0xc420357820) +orderer.example.com | [9c8 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [9c9 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [9c7 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.21.0.8:57216 +orderer.example.com | [9cb 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [9cc 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [9ca 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57216 +orderer.example.com | [9cd 12-15 03:49:58.20 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57216: rpc error: code = Canceled desc = context canceled +orderer.example.com | [9ce 12-15 03:49:58.20 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [9cf 12-15 03:49:58.30 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [9d0 12-15 03:49:58.30 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57218 +orderer.example.com | [9d1 12-15 03:49:58.30 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57218 +orderer.example.com | [9d2 12-15 03:49:58.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [9d3 12-15 03:49:58.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [9d4 12-15 03:49:58.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +orderer.example.com | [9d5 12-15 03:49:58.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [9d6 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +orderer.example.com | [9d7 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e008 gate 1513309798311144600 evaluation starts +orderer.example.com | [9d8 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [9d9 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [9da 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | [9db 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 principal evaluation fails +orderer.example.com | [9dc 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e008 gate 1513309798311144600 evaluation fails +orderer.example.com | [9dd 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +orderer.example.com | [9de 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +orderer.example.com | [9df 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +orderer.example.com | [9e0 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e030 gate 1513309798312570800 evaluation starts +orderer.example.com | [9e1 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e030 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [9e2 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e030 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [9e3 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e030 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | [9e4 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e030 principal evaluation fails +orderer.example.com | [9e5 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e030 gate 1513309798312570800 evaluation fails +orderer.example.com | [9e6 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [9e7 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [9e8 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org1MSP.Readers Org2MSP.Readers ] +orderer.example.com | [9e9 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +orderer.example.com | [9ea 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +orderer.example.com | [9eb 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [9ec 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [9ed 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [9ee 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e038 gate 1513309798314535500 evaluation starts +orderer.example.com | [9ef 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [9f0 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [9f1 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [9f2 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [9f3 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 principal matched by identity 0 +orderer.example.com | [9f4 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 aa 6f f0 e6 9d 21 f0 ac 79 5a 30 54 24 7f 61 6d |.o...!..yZ0T$.am| +orderer.example.com | 00000010 0c 1a 19 f7 a4 c4 bd df ed 9b ba 7c f3 c9 1b 57 |...........|...W| +orderer.example.com | [9f5 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 77 7d 40 6e a7 be f2 3f 2a b1 b7 fe |0D. w}@n...?*...| +orderer.example.com | 00000010 1e 99 75 88 01 1a 72 66 aa 60 47 2e 20 ec 49 bf |..u...rf.`G. .I.| +orderer.example.com | 00000020 56 d7 d4 3c 02 20 67 62 b0 e5 a2 ad 4a ab 20 d9 |V..<. gb....J. .| +orderer.example.com | 00000030 14 81 ab a5 3a 87 77 10 7f d0 12 9e 80 43 95 a4 |....:.w......C..| +orderer.example.com | 00000040 bf 43 36 00 cc 18 |.C6...| +orderer.example.com | [9f6 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 principal evaluation succeeds for identity 0 +orderer.example.com | [9f7 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e038 gate 1513309798314535500 evaluation succeeds +orderer.example.com | [9f8 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [9f9 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [9fa 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [9fb 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [9fc 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [9fd 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [9fe 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420356ae0) start: > stop: > from 172.21.0.8:57218 +orderer.example.com | [9ff 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +orderer.example.com | [a00 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[45423] +orderer.example.com | [a01 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14870], Going to peek [8] bytes +orderer.example.com | [a02 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5317], placementInfo={fileNum=[0], startOffset=[45423], bytesOffset=[45425]} +orderer.example.com | [a03 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5317] read from file [0] +orderer.example.com | [a04 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420356ae0) for 172.21.0.8:57218 +orderer.example.com | [a05 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.21.0.8:57218 for (0xc420356ae0) +orderer.example.com | [a06 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.21.0.8:57218 +orderer.example.com | [a08 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [a09 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [a07 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57218 +orderer.example.com | [a0a 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [a0b 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [a0c 12-15 03:49:58.32 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57218: rpc error: code = Canceled desc = context canceled +orderer.example.com | [a0d 12-15 03:49:58.32 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [a0e 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [a0f 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57220 +orderer.example.com | [a10 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57220 +orderer.example.com | [a11 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [a12 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [a13 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +orderer.example.com | [a14 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [a15 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +orderer.example.com | [a16 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e568 gate 1513309798419316000 evaluation starts +orderer.example.com | [a17 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e568 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [a18 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e568 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [a19 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e568 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | [a1a 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e568 principal evaluation fails +orderer.example.com | [a1b 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e568 gate 1513309798419316000 evaluation fails +orderer.example.com | [a1c 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +orderer.example.com | [a1d 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +orderer.example.com | [a1e 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +orderer.example.com | [a1f 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e580 gate 1513309798420696300 evaluation starts +orderer.example.com | [a20 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e580 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [a21 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e580 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [a22 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e580 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | [a23 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e580 principal evaluation fails +orderer.example.com | [a24 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e580 gate 1513309798420696300 evaluation fails +orderer.example.com | [a25 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [a26 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [a27 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org1MSP.Readers Org2MSP.Readers ] +orderer.example.com | [a28 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +orderer.example.com | [a29 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +orderer.example.com | [a2a 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [a2b 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [a2c 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [a2d 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e588 gate 1513309798422492600 evaluation starts +orderer.example.com | [a2e 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e588 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [a2f 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e588 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [a30 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [a31 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [a32 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e588 principal matched by identity 0 +orderer.example.com | [a33 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 86 9c 08 ad 02 78 a2 b7 ae 74 4e 84 38 e4 b8 cd |.....x...tN.8...| +orderer.example.com | 00000010 21 a5 fd 14 83 34 7a c2 05 bc 59 b9 1f ff e1 6e |!....4z...Y....n| +orderer.example.com | [a34 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 0c 58 7b 7f cf 10 3b 9e ef 51 d2 f4 |0D. .X{...;..Q..| +orderer.example.com | 00000010 5a ce 48 a8 72 e7 73 2a 74 ae 54 cf a4 4e 3c 76 |Z.H.r.s*t.T..N DEBU 0xc42000e588 principal evaluation succeeds for identity 0 +orderer.example.com | [a36 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e588 gate 1513309798422492600 evaluation succeeds +orderer.example.com | [a37 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [a38 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [a39 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [a3a 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [a3b 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [a3c 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [a3d 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203578a0) start: > stop: > from 172.21.0.8:57220 +orderer.example.com | [a3e 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +orderer.example.com | [a3f 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[50742] +orderer.example.com | [a40 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9551], Going to peek [8] bytes +orderer.example.com | [a41 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4774], placementInfo={fileNum=[0], startOffset=[50742], bytesOffset=[50744]} +orderer.example.com | [a42 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4774] read from file [0] +orderer.example.com | [a43 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203578a0) for 172.21.0.8:57220 +orderer.example.com | [a44 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.21.0.8:57220 for (0xc4203578a0) +orderer.example.com | [a45 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.21.0.8:57220 +orderer.example.com | [a47 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57220 +orderer.example.com | [a46 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [a48 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [a49 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [a4a 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [a4b 12-15 03:49:58.43 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57220: rpc error: code = Canceled desc = context canceled +orderer.example.com | [a4c 12-15 03:49:58.43 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [a4d 12-15 03:49:58.64 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [a4e 12-15 03:49:58.64 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57222 +orderer.example.com | [a4f 12-15 03:49:58.64 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57222 +orderer.example.com | [a50 12-15 03:49:58.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [a51 12-15 03:49:58.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [a52 12-15 03:49:58.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +orderer.example.com | [a53 12-15 03:49:58.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [a54 12-15 03:49:58.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +orderer.example.com | [a55 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e620 gate 1513309798660192000 evaluation starts +orderer.example.com | [a56 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e620 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [a57 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e620 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [a58 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e620 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | [a59 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e620 principal evaluation fails +orderer.example.com | [a5a 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e620 gate 1513309798660192000 evaluation fails +orderer.example.com | [a5b 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +orderer.example.com | [a5c 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +orderer.example.com | [a5d 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +orderer.example.com | [a5e 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e650 gate 1513309798661667600 evaluation starts +orderer.example.com | [a5f 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e650 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [a60 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e650 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [a61 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e650 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | [a62 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e650 principal evaluation fails +orderer.example.com | [a63 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e650 gate 1513309798661667600 evaluation fails +orderer.example.com | [a64 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [a65 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [a66 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org1MSP.Readers Org2MSP.Readers ] +orderer.example.com | [a67 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +orderer.example.com | [a68 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +orderer.example.com | [a69 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [a6a 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [a6b 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [a6c 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e668 gate 1513309798663407600 evaluation starts +orderer.example.com | [a6d 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e668 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [a6e 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e668 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [a6f 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [a70 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [a71 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e668 principal matched by identity 0 +orderer.example.com | [a72 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 62 2e e7 16 fd ea 7c 75 95 0f 8c 6f a8 e5 99 7f |b.....|u...o....| +orderer.example.com | 00000010 f6 38 5e a6 4c a5 e4 3d 4f 6f a7 c1 d9 3f df c4 |.8^.L..=Oo...?..| +orderer.example.com | [a73 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f2 29 14 53 63 41 d3 62 dd b7 87 |0E.!..).ScA.b...| +orderer.example.com | 00000010 dd 6a 97 33 84 a2 2b 37 bd f7 22 56 01 82 da ab |.j.3..+7.."V....| +orderer.example.com | 00000020 14 e9 e5 b1 ad 02 20 00 83 64 01 2f 2c 2d bf 9b |...... ..d./,-..| +orderer.example.com | 00000030 43 d8 3f 54 dd ff be 85 b2 ba a7 45 4f 0e 3e f7 |C.?T.......EO.>.| +orderer.example.com | 00000040 49 28 a9 48 54 4f 68 |I(.HTOh| +orderer.example.com | [a74 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e668 principal evaluation succeeds for identity 0 +orderer.example.com | [a75 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e668 gate 1513309798663407600 evaluation succeeds +orderer.example.com | [a76 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [a77 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [a78 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [a79 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [a7a 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [a7b 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [a7c 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420380d80) start: > stop: > from 172.21.0.8:57222 +orderer.example.com | [a7d 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +orderer.example.com | [a7e 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[55518] +orderer.example.com | [a7f 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4775], Going to peek [8] bytes +orderer.example.com | [a80 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4773], placementInfo={fileNum=[0], startOffset=[55518], bytesOffset=[55520]} +orderer.example.com | [a81 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4773] read from file [0] +orderer.example.com | [a82 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420380d80) for 172.21.0.8:57222 +orderer.example.com | [a83 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.21.0.8:57222 for (0xc420380d80) +orderer.example.com | [a84 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.21.0.8:57222 +orderer.example.com | [a85 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57222 +orderer.example.com | [a86 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [a87 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [a88 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [a89 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [a8a 12-15 03:49:58.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57222: rpc error: code = Canceled desc = context canceled +orderer.example.com | [a8b 12-15 03:49:58.67 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [a8c 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [a8d 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57224 +orderer.example.com | [a8e 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57224 +orderer.example.com | [a8f 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [a90 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [a91 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [a92 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [a93 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [a94 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | [a95 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +orderer.example.com | ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +orderer.example.com | Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +orderer.example.com | sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [a96 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e6d8 gate 1513309798847538500 evaluation starts +orderer.example.com | [a97 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6d8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [a98 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [a99 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [a9a 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [a9b 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6d8 principal matched by identity 0 +orderer.example.com | [a9c 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 fd 9a 07 39 42 9a 06 26 f3 cb 25 91 d7 1c e5 58 |...9B..&..%....X| +orderer.example.com | 00000010 1b 99 3e 39 8d 64 ae 69 a7 43 9a 6f e1 ff 07 e8 |..>9.d.i.C.o....| +orderer.example.com | [a9d 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 4f fb 4e c9 7a 1f a4 35 08 d8 ec 0e |0D. O.N.z..5....| +orderer.example.com | 00000010 13 ca a5 bc 33 85 0a c1 e3 a1 c3 f5 4f 40 3a 82 |....3.......O@:.| +orderer.example.com | 00000020 f3 b3 8d 4e 02 20 6c d6 ce f7 7e 13 fe f1 70 0f |...N. l...~...p.| +orderer.example.com | 00000030 19 3a 50 70 e3 26 bd b4 5a c0 db 00 1f 30 3a 63 |.:Pp.&..Z....0:c| +orderer.example.com | 00000040 bb 03 1d bf 67 45 |....gE| +orderer.example.com | [a9e 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6d8 principal evaluation succeeds for identity 0 +orderer.example.com | [a9f 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e6d8 gate 1513309798847538500 evaluation succeeds +orderer.example.com | [aa0 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [aa1 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [aa2 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [aa3 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [aa4 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [aa5 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [aa6 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420346800) start: > stop: > from 172.21.0.8:57224 +orderer.example.com | [aa7 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +orderer.example.com | [aa8 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +orderer.example.com | [aa9 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24023], Going to peek [8] bytes +orderer.example.com | [aaa 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9156], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | [aab 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9156] read from file [0] +orderer.example.com | [aac 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420346800) for 172.21.0.8:57224 +orderer.example.com | [aad 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.21.0.8:57224 for (0xc420346800) +orderer.example.com | [aae 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.21.0.8:57224 +orderer.example.com | [aaf 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57224 +orderer.example.com | [ab0 12-15 03:49:58.87 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57224: rpc error: code = Canceled desc = context canceled +orderer.example.com | [ab1 12-15 03:49:58.87 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [ab2 12-15 03:49:59.02 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [ab3 12-15 03:49:59.02 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57226 +orderer.example.com | [ab4 12-15 03:49:59.02 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57226 +orderer.example.com | [ab5 12-15 03:49:59.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [ab6 12-15 03:49:59.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [ab7 12-15 03:49:59.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [ab8 12-15 03:49:59.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [ab9 12-15 03:49:59.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [aba 12-15 03:49:59.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e748 gate 1513309799028784800 evaluation starts +orderer.example.com | [abb 12-15 03:49:59.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e748 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [abc 12-15 03:49:59.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e748 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [abd 12-15 03:49:59.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [abe 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [abf 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e748 principal matched by identity 0 +orderer.example.com | [ac0 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 86 1c 56 f9 a6 6b c0 2d b3 e4 6e c4 f4 b2 0b 74 |..V..k.-..n....t| +orderer.example.com | 00000010 f6 db 5c 04 1e 13 35 3d 42 f0 64 e3 9e 12 d0 40 |..\...5=B.d....@| +orderer.example.com | [ac1 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 66 10 c9 60 d0 6b 8d 4e b2 fd f0 e0 |0D. f..`.k.N....| +orderer.example.com | 00000010 6a 5f 54 5b b9 9b 9c d7 51 14 61 78 7e c6 86 0f |j_T[....Q.ax~...| +orderer.example.com | 00000020 b5 76 f7 be 02 20 62 79 ff 83 0c 78 f7 03 f4 3f |.v... by...x...?| +orderer.example.com | 00000030 cd 26 5c 1e 9f 5b 8f e0 50 72 4d ac ae c7 d2 80 |.&\..[..PrM.....| +orderer.example.com | 00000040 1a 8f 33 57 ab 9c |..3W..| +orderer.example.com | [ac2 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e748 principal evaluation succeeds for identity 0 +orderer.example.com | [ac3 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e748 gate 1513309799028784800 evaluation succeeds +orderer.example.com | [ac4 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [ac5 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [ac6 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [ac7 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [ac8 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [ac9 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [aca 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420347160) start: > stop: > from 172.21.0.8:57226 +orderer.example.com | [acb 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +orderer.example.com | [acc 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9158] +orderer.example.com | [acd 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14865], Going to peek [8] bytes +orderer.example.com | [ace 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14863], placementInfo={fileNum=[0], startOffset=[9158], bytesOffset=[9160]} +orderer.example.com | [acf 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14863] read from file [0] +orderer.example.com | [ad0 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420347160) for 172.21.0.8:57226 +orderer.example.com | [ad1 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.21.0.8:57226 for (0xc420347160) +orderer.example.com | [ad2 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.21.0.8:57226 +orderer.example.com | [ad3 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57226 +orderer.example.com | [ad4 12-15 03:49:59.04 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57226: rpc error: code = Canceled desc = context canceled +orderer.example.com | [ad5 12-15 03:49:59.04 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream diff --git a/hyperledger_fabric/latest/solo/logs/dev_orderer.log b/hyperledger_fabric/latest/solo/logs/dev_orderer.log index ff0172b8..4354c133 100644 --- a/hyperledger_fabric/latest/solo/logs/dev_orderer.log +++ b/hyperledger_fabric/latest/solo/logs/dev_orderer.log @@ -1,5343 +1,4226 @@ -[001 12-12 14:19:36.12 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/signcerts -[002 12-12 14:19:36.13 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem -[003 12-12 14:19:36.13 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/cacerts -[004 12-12 14:19:36.14 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem -[005 12-12 14:19:36.14 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/admincerts -[006 12-12 14:19:36.14 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem -[007 12-12 14:19:36.14 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/intermediatecerts -[008 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] -[009 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlscacerts -[00a 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem -[00b 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts -[00c 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/var/hyperledger/orderer/msp/tlsintermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/tlsintermediatecerts: no such file or directory] -[00d 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/crls -[00e 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/var/hyperledger/orderer/msp/crls]. Skipping. [stat /var/hyperledger/orderer/msp/crls: no such file or directory] -[00f 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] -[010 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP -> DEBU Returning existing local MSP -[011 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[012 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw +[001 12-15 03:49:07.99 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/signcerts +[002 12-15 03:49:08.00 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem +[003 12-15 03:49:08.00 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/cacerts +[004 12-15 03:49:08.01 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem +[005 12-15 03:49:08.02 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/admincerts +[006 12-15 03:49:08.02 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem +[007 12-15 03:49:08.02 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/intermediatecerts +[008 12-15 03:49:08.02 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] +[009 12-15 03:49:08.02 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlscacerts +[00a 12-15 03:49:08.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem +[00b 12-15 03:49:08.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts +[00c 12-15 03:49:08.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/var/hyperledger/orderer/msp/tlsintermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/tlsintermediatecerts: no such file or directory] +[00d 12-15 03:49:08.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/crls +[00e 12-15 03:49:08.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/var/hyperledger/orderer/msp/crls]. Skipping. [stat /var/hyperledger/orderer/msp/crls: no such file or directory] +[00f 12-15 03:49:08.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] +[010 12-15 03:49:08.03 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP -> DEBU Returning existing local MSP +[011 12-15 03:49:08.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[012 12-15 03:49:08.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICLzCCAdWgAwIBAgIQGXf5zEgjlejkE1rJW2znwDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowaTELMAkGA1UE BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFSKPRsXnXvaTTqRKjkTRYYoPjGg +TgXRAoMQwI+9AaLXTSL+AsApwlxedr+PJ+UgfBNcxey226YSZRJqLeiH/TajXzBd MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= +Af8wKQYDVR0OBCIEIPxyg8RiuCl5W+wOoXUqeRhWBcR2XF2JtWJ5qtJMQ3Y1MAoG +CCqGSM49BAMCA0gAMEUCIQCoRrlZYPh0Qnsp3Z9KitmTDkRqi6JyR4RLiOyfv8Tf +QgIgdHbFqXGTZ0HFQmknUFd5DD4TTltv8Ijmfm8J1skS4jc= -----END CERTIFICATE----- -[013 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw +[013 12-15 03:49:08.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 -----END CERTIFICATE----- -[014 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw +[014 12-15 03:49:08.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 -----END CERTIFICATE----- -[015 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw +[015 12-15 03:49:08.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -hkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN -tV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE -+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q -XZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd +hkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv +zQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd +ibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv +zjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg= -----END CERTIFICATE----- -[016 12-12 14:19:36.15 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [d80ee555fb204c63d83ff1b5969f32b66bf818b233fc7b129d548526c916334f] at [/var/hyperledger/orderer/msp/keystore/d80ee555fb204c63d83ff1b5969f32b66bf818b233fc7b129d548526c916334f_sk]... -[017 12-12 14:19:36.16 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw +[016 12-15 03:49:08.04 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [7b66ccb4d35b4cf4a76d02d4af54bfe2a62dab4763bd3c3ba458944f42ec9881] at [/var/hyperledger/orderer/msp/keystore/7b66ccb4d35b4cf4a76d02d4af54bfe2a62dab4763bd3c3ba458944f42ec9881_sk]... +[017 12-15 03:49:08.04 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -hkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN -tV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE -+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q -XZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd +hkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv +zQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd +ibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv +zjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg= -----END CERTIFICATE----- -[018 12-12 14:19:36.16 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[019 12-12 14:19:36.16 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeServerConfig -> INFO Starting orderer with TLS enabled -[01a 12-12 14:19:36.17 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory -> DEBU Ledger dir: /var/hyperledger/production/orderer -[01b 12-12 14:19:36.17 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New -> DEBU Initializing ledger at: /var/hyperledger/production/orderer -[01c 12-12 14:19:36.17 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate -> DEBU Initializing chain testchainid at: /var/hyperledger/production/orderer/chain_testchainid -[01d 12-12 14:19:36.17 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.newChain -> DEBU Initialized to block height 18446744073709551615 with hash -[01e 12-12 14:19:36.17 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.Append.writeBlock -> DEBU Wrote block 0 -[01f 12-12 14:19:36.17 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.readBlock -> DEBU Read block 0 -[020 12-12 14:19:36.17 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.readBlock -> DEBU Read block 0 -[021 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[022 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[023 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[024 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[025 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[026 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[027 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[028 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[029 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[02a 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[02b 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[02c 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[02d 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[02e 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[02f 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[030 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[031 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[032 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[033 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[034 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw +[018 12-15 03:49:08.04 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[019 12-15 03:49:08.05 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeServerConfig -> INFO Starting orderer with TLS enabled +[01a 12-15 03:49:08.05 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory -> DEBU Ledger dir: /var/hyperledger/production/orderer +[01b 12-15 03:49:08.05 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/index/] +[01c 12-15 03:49:08.05 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/index/] does not exist +[01d 12-15 03:49:08.05 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/index/] exists +[01e 12-15 03:49:08.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: testchainid +[01f 12-15 03:49:08.09 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/testchainid/] +[020 12-15 03:49:08.09 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] does not exist +[021 12-15 03:49:08.09 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] exists +[022 12-15 03:49:08.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +[023 12-15 03:49:08.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +[024 12-15 03:49:08.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +[025 12-15 03:49:08.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +[026 12-15 03:49:08.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +[027 12-15 03:49:08.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +[028 12-15 03:49:08.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4202764a0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +[029 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] +[02a 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xda, 0x6, 0x12, 0x14, 0x0, 0x47, 0xeb, 0x2f, 0xdc, 0xc2, 0x68, 0x4c, 0xff, 0x5c, 0x8c, 0x65, 0x22, 0x99, 0x4e, 0x1c, 0xe8, 0x74, 0x94, 0x54, 0xca, 0xe0, 0xdb, 0xf7, 0x33, 0x59, 0x87, 0x48} txOffsets= +txId=9897fdffd343cfbea7231dc5e9438a04d09931683ce555fdf3ab2b02be33fd3e locPointer=offset=38, bytesLength=9115 +] +[02b 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[9158], isChainEmpty=[false], lastBlockNumber=[0] +[02c 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +[02d 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +[02e 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9158], Going to peek [8] bytes +[02f 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9156], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[030 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9156] read from file [0] +[031 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +[032 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +[033 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9158], Going to peek [8] bytes +[034 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9156], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[035 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9156] read from file [0] +[036 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[037 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[038 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[039 12-15 03:49:08.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[03a 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[03b 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[03c 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[03d 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[03e 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[03f 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[040 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[041 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[042 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[043 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[044 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[045 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[046 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[047 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[048 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[049 12-15 03:49:08.11 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICLzCCAdWgAwIBAgIQGXf5zEgjlejkE1rJW2znwDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowaTELMAkGA1UE BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFSKPRsXnXvaTTqRKjkTRYYoPjGg +TgXRAoMQwI+9AaLXTSL+AsApwlxedr+PJ+UgfBNcxey226YSZRJqLeiH/TajXzBd MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= +Af8wKQYDVR0OBCIEIPxyg8RiuCl5W+wOoXUqeRhWBcR2XF2JtWJ5qtJMQ3Y1MAoG +CCqGSM49BAMCA0gAMEUCIQCoRrlZYPh0Qnsp3Z9KitmTDkRqi6JyR4RLiOyfv8Tf +QgIgdHbFqXGTZ0HFQmknUFd5DD4TTltv8Ijmfm8J1skS4jc= -----END CERTIFICATE----- -[035 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw +[04a 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 -----END CERTIFICATE----- -[036 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw +[04b 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 -----END CERTIFICATE----- -[037 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[038 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ConsortiumProtos -[039 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelCreationPolicy -[03a 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[03b 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[03c 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[03d 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[03e 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[03f 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[040 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL +[04c 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[04d 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ConsortiumProtos +[04e 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelCreationPolicy +[04f 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[050 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[051 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[052 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[053 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[054 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +[055 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAMt+4ybOK1r7B8eavLVTMBUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPGrtJtHj1Ql02gq7I0ZQQKJwvtZhp0t3rCwF1cFILTHIBM4phJ/ZYJQa1lb12pO +sxSxuEvRGTFcZXtunUc0SeWjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICSqVyrJerF7YoXDKKeV +2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCIB+psiek7FqP18l1 +3s2anbtfpiGTHbAnm2BihpD9sRPjAiAIvsdyfn+nb2bCQBK6sodbO+LxSkuZulkP +oMR3yCH/eA== +-----END CERTIFICATE----- +[056 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= +-----END CERTIFICATE----- +[057 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= +-----END CERTIFICATE----- +[058 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +[059 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[05a 12-15 03:49:08.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[05b 12-15 03:49:08.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[05c 12-15 03:49:08.13 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[05d 12-15 03:49:08.13 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[05e 12-15 03:49:08.13 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[05f 12-15 03:49:08.13 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQShjAwe+6sxoSMZ8UrYKOcTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +GwyyfDLH07dFVkEvxJDGOKGevUcaYHphZvhzV78MBXVwIEGIENk7Zs8x+dx6iwIK +LOGmXxq/Wqd4qLs6kFyZvqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgsK9pE/plIOV10mqefUzE +vCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAL7xXrYD1fkzcpxi +yyZhFfEvMDWCoUicQw2b+c3GQ6OuAiA0KtNuH4yS4+c13W9Lsd28XNQK88FkwB2J +QR9yhJE7rA== +-----END CERTIFICATE----- +[060 12-15 03:49:08.14 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -xEFWkMtGbgY= +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== -----END CERTIFICATE----- -[041 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== +[061 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== -----END CERTIFICATE----- -[042 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[043 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[044 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[045 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[046 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[047 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[048 12-12 14:19:36.18 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[049 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[04a 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -+8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -cNvAXU8LlQ== ------END CERTIFICATE----- -[04b 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[04c 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[04d 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[04e 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[04f 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[050 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[051 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[052 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[053 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[054 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[055 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[056 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[057 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums/SampleConsortium/Org1MSP -[058 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Consortiums/SampleConsortium/Org1MSP -[059 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Consortiums/SampleConsortium/Org1MSP -[05a 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums/SampleConsortium/Org2MSP -[05b 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Consortiums/SampleConsortium/Org2MSP -[05c 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Consortiums/SampleConsortium/Org2MSP -[05d 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums -[05e 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[05f 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Consortiums/Readers -[060 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[061 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Consortiums/Writers -[062 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[063 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[064 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[065 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[066 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[067 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[068 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[069 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[06a 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[06b 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[06c 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[06d 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[06e 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[06f 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[070 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[071 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[072 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[073 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums -[074 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium -[075 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium/Org1MSP -[076 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP -[077 12-12 14:19:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins -[078 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers -[079 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers -[07a 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium/Org2MSP -[07b 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP -[07c 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins -[07d 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers -[07e 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers -[07f 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy -[080 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/Admins -[081 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[082 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[083 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[084 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[085 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[086 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[087 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[088 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[089 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[08a 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[08b 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[08c 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums -[08d 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[08e 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums -[08f 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[090 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[091 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[092 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[093 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.readBlock -> DEBU Read block 0 -[094 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.newBlockWriter -> DEBU [channel: testchainid] Creating block writer for tip of chain (blockNumber=0, lastConfigBlockNum=0, lastConfigSeq=0) -[095 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport -> DEBU [channel: testchainid] Done creating channel support resources -[096 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.NewSystemChannel -> DEBU Creating system channel msg processor for channel testchainid -[097 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.readBlock -> DEBU Read block 0 -[098 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> INFO Starting system channel 'testchainid' with genesis block hash 70ae3d6f5a0faf234648a4503f4d291158f7bb9762d20e83e2e25c55f52e824f and orderer type solo -[099 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Starting orderer: +[062 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +[063 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +[064 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +[065 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +[066 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +[067 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +[068 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[069 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[06a 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[06b 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[06c 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums/SampleConsortium/Org2MSP +[06d 12-15 03:49:08.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Consortiums/SampleConsortium/Org2MSP +[06e 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Consortiums/SampleConsortium/Org2MSP +[06f 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums/SampleConsortium/Org1MSP +[070 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Consortiums/SampleConsortium/Org1MSP +[071 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Consortiums/SampleConsortium/Org1MSP +[072 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums +[073 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[074 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Consortiums/Readers +[075 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[076 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Consortiums/Writers +[077 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[078 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[079 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[07a 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[07b 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[07c 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[07d 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[07e 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[07f 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[080 12-15 03:49:08.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[081 12-15 03:49:08.17 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[082 12-15 03:49:08.17 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[083 12-15 03:49:08.17 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[084 12-15 03:49:08.17 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[085 12-15 03:49:08.17 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[086 12-15 03:49:08.18 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[087 12-15 03:49:08.18 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[088 12-15 03:49:08.18 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums +[089 12-15 03:49:08.18 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium +[08a 12-15 03:49:08.18 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium/Org2MSP +[08b 12-15 03:49:08.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP +[08c 12-15 03:49:08.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins +[08d 12-15 03:49:08.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers +[08e 12-15 03:49:08.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers +[08f 12-15 03:49:08.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium/Org1MSP +[090 12-15 03:49:08.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP +[091 12-15 03:49:08.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers +[092 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins +[093 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers +[094 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy +[095 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/Admins +[096 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[097 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[098 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[099 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[09a 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[09b 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[09c 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[09d 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[09e 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[09f 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +[0a0 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[0a1 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums +[0a2 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +[0a3 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[0a4 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums +[0a5 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +[0a6 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +[0a7 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[0a8 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +[0a9 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +[0aa 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9158], Going to peek [8] bytes +[0ab 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9156], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[0ac 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9156] read from file [0] +[0ad 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.newBlockWriter -> DEBU [channel: testchainid] Creating block writer for tip of chain (blockNumber=0, lastConfigBlockNum=0, lastConfigSeq=0) +[0ae 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport -> DEBU [channel: testchainid] Done creating channel support resources +[0af 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.NewSystemChannel -> DEBU Creating system channel msg processor for channel testchainid +[0b0 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +[0b1 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +[0b2 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9158], Going to peek [8] bytes +[0b3 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9156], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[0b4 12-15 03:49:08.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9156] read from file [0] +[0b5 12-15 03:49:08.21 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> INFO Starting system channel 'testchainid' with genesis block hash da0612140047eb2fdcc2684cff5c8c6522994e1ce8749454cae0dbf733598748 and orderer type solo +[0b6 12-15 03:49:08.21 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Starting orderer: Version: 1.1.0 Go version: go1.9.2 OS/Arch: linux/amd64 Experimental features: false -[09a 12-12 14:19:36.20 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Beginning to serve requests -[09b 12-12 14:19:39.24 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[09c 12-12 14:19:39.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36746 -[09d 12-12 14:19:39.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36746 -[09e 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[09f 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:36748 -[0a0 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.18.0.7:36748 -[0a1 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update tx with system channel message processor for channel ID businesschannel -[0a2 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing channel create tx for channel businesschannel on system channel testchainid -[0a3 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[0a4 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[0a5 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[0a6 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[0a7 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[0a8 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[0a9 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[0aa 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[0ab 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[0ac 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[0ad 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[0ae 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[0af 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[0b0 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[0b1 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[0b2 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[0b3 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[0b4 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[0b5 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[0b6 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw +[0b7 12-15 03:49:08.21 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Beginning to serve requests +[0b8 12-15 03:49:14.22 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[0b9 12-15 03:49:14.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57090 +[0ba 12-15 03:49:14.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57090 +[0bb 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[0bc 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.21.0.8:57092 +[0bd 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.21.0.8:57092 +[0be 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update tx with system channel message processor for channel ID businesschannel +[0bf 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing channel create tx for channel businesschannel on system channel testchainid +[0c0 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[0c1 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[0c2 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[0c3 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[0c4 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[0c5 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[0c6 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[0c7 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[0c8 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[0c9 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[0ca 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[0cb 12-15 03:49:14.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[0cc 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[0cd 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[0ce 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[0cf 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[0d0 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[0d1 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[0d2 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[0d3 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICLzCCAdWgAwIBAgIQGXf5zEgjlejkE1rJW2znwDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowaTELMAkGA1UE BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFSKPRsXnXvaTTqRKjkTRYYoPjGg +TgXRAoMQwI+9AaLXTSL+AsApwlxedr+PJ+UgfBNcxey226YSZRJqLeiH/TajXzBd MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= +Af8wKQYDVR0OBCIEIPxyg8RiuCl5W+wOoXUqeRhWBcR2XF2JtWJ5qtJMQ3Y1MAoG +CCqGSM49BAMCA0gAMEUCIQCoRrlZYPh0Qnsp3Z9KitmTDkRqi6JyR4RLiOyfv8Tf +QgIgdHbFqXGTZ0HFQmknUFd5DD4TTltv8Ijmfm8J1skS4jc= -----END CERTIFICATE----- -[0b7 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw +[0d4 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 -----END CERTIFICATE----- -[0b8 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw +[0d5 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 -----END CERTIFICATE----- -[0b9 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[0ba 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[0bb 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[0bc 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[0bd 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[0be 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[0bf 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[0c0 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[0c1 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[0c2 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[0c3 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[0c4 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[0c5 12-12 14:19:39.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw +[0d6 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[0d7 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[0d8 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[0d9 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[0da 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[0db 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[0dc 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[0dd 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +[0de 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[0df 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[0e0 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[0e1 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[0e2 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQShjAwe+6sxoSMZ8UrYKOcTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -+8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -cNvAXU8LlQ== +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +GwyyfDLH07dFVkEvxJDGOKGevUcaYHphZvhzV78MBXVwIEGIENk7Zs8x+dx6iwIK +LOGmXxq/Wqd4qLs6kFyZvqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgsK9pE/plIOV10mqefUzE +vCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAL7xXrYD1fkzcpxi +yyZhFfEvMDWCoUicQw2b+c3GQ6OuAiA0KtNuH4yS4+c13W9Lsd28XNQK88FkwB2J +QR9yhJE7rA== -----END CERTIFICATE----- -[0c6 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[0c7 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[0c8 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[0c9 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[0ca 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[0cb 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[0cc 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[0cd 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -[0ce 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[0cf 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[0d0 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[0d1 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[0d2 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL +[0e3 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -xEFWkMtGbgY= ------END CERTIFICATE----- -[0d3 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[0d4 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[0d5 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[0d6 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[0d7 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[0d8 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[0d9 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[0da 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[0db 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[0dc 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[0dd 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[0de 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[0df 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[0e0 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[0e1 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[0e2 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[0e3 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[0e4 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[0e5 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy ChannelCreationPolicy for Channel/Application -[0e6 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins -[0e7 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[0e8 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Application/Readers -[0e9 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[0ea 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Application/Writers -[0eb 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[0ec 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[0ed 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[0ee 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[0ef 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[0f0 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[0f1 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[0f2 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[0f3 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[0f4 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[0f5 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[0f6 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[0f7 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[0f8 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[0f9 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[0fa 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[0fb 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[0fc 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[0fd 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[0fe 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[0ff 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[100 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[101 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[102 12-12 14:19:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[103 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[104 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[105 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[106 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[107 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -[108 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[109 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[10a 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[10b 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[10c 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[10d 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[10e 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[10f 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[110 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[111 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[112 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[113 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[114 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[115 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[116 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[117 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[118 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[119 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[11a 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[11b 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[11c 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[11d 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[11e 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Readers -[11f 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Writers -[120 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Capabilities -[121 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -[122 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy ChannelCreationPolicy -[123 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] -[124 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[125 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[126 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[127 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[128 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[129 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[12a 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[12b 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[12c 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy == -[12d 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[12e 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -[12f 12-12 14:19:39.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[130 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[131 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e4d8 gate 1513088379290961800 evaluation starts -[132 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4d8 signed by 0 principal evaluation starts (used [false]) -[133 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4d8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[134 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4d8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[135 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4d8 principal evaluation fails -[136 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e4d8 gate 1513088379290961800 evaluation fails -[137 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Admins -[138 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -[139 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -[13a 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e4e8 gate 1513088379291658000 evaluation starts -[13b 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4e8 signed by 0 principal evaluation starts (used [false]) -[13c 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4e8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[13d 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[13e 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4e8 principal matched by identity 0 -[13f 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 c6 f2 4b 6b 1b ea 52 78 7f bb d0 74 0a 59 01 19 |..Kk..Rx...t.Y..| -00000010 15 1d 23 c0 05 d6 7e 53 2f 24 e1 27 01 fa 7f 91 |..#...~S/$.'....| -[140 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8d c5 c4 b5 83 d5 c2 a1 5a 6b 19 |0E.!.........Zk.| -00000010 66 c1 b3 39 13 60 ef 56 00 ca 1e 70 24 c2 47 d0 |f..9.`.V...p$.G.| -00000020 a7 27 ef d6 d7 02 20 12 0e 17 ac 06 59 31 b2 6e |.'.... .....Y1.n| -00000030 98 c3 25 6e 9f 68 b5 03 28 25 0a cb 82 05 ab 9d |..%n.h..(%......| -00000040 f1 38 8d 00 72 62 b2 |.8..rb.| -[141 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4e8 principal evaluation succeeds for identity 0 -[142 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e4e8 gate 1513088379291658000 evaluation succeeds -[143 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -[144 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -[145 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/ChannelCreationPolicy -[146 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy -[147 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Admins -[148 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[149 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[14a 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[14b 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[14c 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[14d 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[14e 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[14f 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[150 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[151 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[152 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[153 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[154 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[155 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[156 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[157 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[158 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[159 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[15a 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[15b 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[15c 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[15d 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[15e 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[15f 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608FBCABFD10522...7F3B065704521FA5F949E74504926CE2 -[160 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: 6E5205D93CAF3EF9AD0E608C2039E595E29183A0937C5FB659081788DBAD54C1 -[161 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[162 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[163 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[164 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[165 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AC9060A1708041A0608FBCABFD10522...98FA05F37868177018935CDD18083256 -[166 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: 518C30C9A19A965A6C1451DB08830CEC4DE525F9BA879E8A1A2D46A463A782CB -[167 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[168 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[169 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[16a 12-12 14:19:39.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[16b 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[16c 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[16d 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -hkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN -tV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE -+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q -XZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd ------END CERTIFICATE----- -[16e 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e600 gate 1513088379303507800 evaluation starts -[16f 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e600 signed by 0 principal evaluation starts (used [false]) -[170 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e600 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624b6741774942416749515a514232667a33766f54575838334f36754e592b796a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d566f58445449334d5449784d4441344e4441784d566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415273516c4d6e6a7836777a4c5133455649357a4357785845485248413046674a6f6148586363505a595a4d746743534b684e0a7456346d424f31762b785565392b313755394f2f467037694b54616c68622f65676e71776f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344416b43387863556452672b44333878734373535a64304b343343724f450a2b455833697a4773554d7931527a414b42676771686b6a4f5051514441674e494144424641694541676e494d4e3768725a5370345561565238752b65746f2f710a585a4e4d476a6b7664614150486f316176673843494736454a4336356e6f6a684b6c754f53484841596b6a72356347646d6159455249576644737935544667640a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[171 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[172 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[173 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e600 principal matched by identity 0 -[174 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 51 8c 30 c9 a1 9a 96 5a 6c 14 51 db 08 83 0c ec |Q.0....Zl.Q.....| -00000010 4d e5 25 f9 ba 87 9e 8a 1a 2d 46 a4 63 a7 82 cb |M.%......-F.c...| -[175 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ad 0a 7b 97 33 f0 cf 9a 56 81 b1 |0E.!...{.3...V..| -00000010 54 a6 3c d4 f2 8f 59 c2 08 38 10 aa 50 7a d0 05 |T.<...Y..8..Pz..| -00000020 26 49 b4 da 48 02 20 5f 50 05 82 a9 44 95 b9 9b |&I..H. _P...D...| -00000030 78 05 eb 5b b0 53 81 ad b9 57 5b 62 ea 96 c1 ea |x..[.S...W[b....| -00000040 36 7c b2 f5 dc f2 bb |6|.....| -[176 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e600 principal evaluation succeeds for identity 0 -[177 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e600 gate 1513088379303507800 evaluation succeeds -[178 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers -[179 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -[17a 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers -[17b 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[17c 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[17d 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[17e 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[17f 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[180 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[181 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[182 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[183 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[184 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[185 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[186 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[187 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[188 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[189 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[18a 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[18b 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[18c 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[18d 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[18e 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[18f 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[190 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[191 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= ------END CERTIFICATE----- -[192 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A ------END CERTIFICATE----- -[193 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A ------END CERTIFICATE----- -[194 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[195 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[196 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[197 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[198 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[199 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[19a 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[19b 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[19c 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[19d 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[19e 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[19f 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[1a0 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -+8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -cNvAXU8LlQ== ------END CERTIFICATE----- -[1a1 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[1a2 12-12 14:19:39.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[1a3 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[1a4 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[1a5 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[1a6 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[1a7 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[1a8 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -[1a9 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[1aa 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[1ab 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[1ac 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[1ad 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -xEFWkMtGbgY= ------END CERTIFICATE----- -[1ae 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[1af 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[1b0 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[1b1 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[1b2 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[1b3 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[1b4 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[1b5 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[1b6 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[1b7 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[1b8 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[1b9 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[1ba 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[1bb 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[1bc 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[1bd 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[1be 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[1bf 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[1c0 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy ChannelCreationPolicy for Channel/Application -[1c1 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins -[1c2 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[1c3 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Application/Readers -[1c4 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[1c5 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Application/Writers -[1c6 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[1c7 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[1c8 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[1c9 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[1ca 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[1cb 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[1cc 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[1cd 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[1ce 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[1cf 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[1d0 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[1d1 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[1d2 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[1d3 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[1d4 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[1d5 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[1d6 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[1d7 12-12 14:19:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[1d8 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[1d9 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[1da 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[1db 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[1dc 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[1dd 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[1de 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[1df 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[1e0 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[1e1 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[1e2 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -[1e3 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[1e4 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[1e5 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[1e6 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[1e7 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[1e8 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[1e9 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[1ea 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[1eb 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[1ec 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[1ed 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[1ee 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[1ef 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[1f0 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[1f1 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[1f2 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[1f3 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[1f4 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[1f5 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[1f6 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[1f7 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[1f8 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[1f9 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Readers -[1fa 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Admins -[1fb 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Capabilities -[1fc 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Writers -[1fd 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -[1fe 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy ChannelCreationPolicy -[1ff 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] -[200 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[201 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[202 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[203 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[204 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[205 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[206 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[207 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[208 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy == -[209 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[20a 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -[20b 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[20c 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[20d 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e550 gate 1513088379329699700 evaluation starts -[20e 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e550 signed by 0 principal evaluation starts (used [false]) -[20f 12-12 14:19:39.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e550 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[210 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[211 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e550 principal matched by identity 0 -[212 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 c6 f2 4b 6b 1b ea 52 78 7f bb d0 74 0a 59 01 19 |..Kk..Rx...t.Y..| -00000010 15 1d 23 c0 05 d6 7e 53 2f 24 e1 27 01 fa 7f 91 |..#...~S/$.'....| -[213 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8d c5 c4 b5 83 d5 c2 a1 5a 6b 19 |0E.!.........Zk.| -00000010 66 c1 b3 39 13 60 ef 56 00 ca 1e 70 24 c2 47 d0 |f..9.`.V...p$.G.| -00000020 a7 27 ef d6 d7 02 20 12 0e 17 ac 06 59 31 b2 6e |.'.... .....Y1.n| -00000030 98 c3 25 6e 9f 68 b5 03 28 25 0a cb 82 05 ab 9d |..%n.h..(%......| -00000040 f1 38 8d 00 72 62 b2 |.8..rb.| -[214 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e550 principal evaluation succeeds for identity 0 -[215 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e550 gate 1513088379329699700 evaluation succeeds -[216 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -[217 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -[218 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/ChannelCreationPolicy -[219 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy -[21a 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[21b 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[21c 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[21d 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[21e 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[21f 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[220 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[221 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[222 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[223 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[224 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[225 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[226 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[227 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[228 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[229 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[22a 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[22b 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[22c 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[22d 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[22e 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[22f 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[230 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[231 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[232 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[233 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[234 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[235 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[236 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[237 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[238 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[239 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[23a 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[23b 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[23c 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[23d 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[23e 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[23f 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[240 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= ------END CERTIFICATE----- -[241 12-12 14:19:39.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A ------END CERTIFICATE----- -[242 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A ------END CERTIFICATE----- -[243 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[244 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[245 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[246 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[247 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[248 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[249 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[24a 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[24b 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[24c 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[24d 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[24e 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[24f 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -+8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -cNvAXU8LlQ== ------END CERTIFICATE----- -[250 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[251 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[252 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[253 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[254 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[255 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[256 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[257 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -[258 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[259 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[25a 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[25b 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[25c 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -xEFWkMtGbgY= ------END CERTIFICATE----- -[25d 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[25e 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[25f 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[260 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[261 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[262 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[263 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[264 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[265 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[266 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[267 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[268 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[269 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[26a 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[26b 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[26c 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[26d 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[26e 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[26f 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[270 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[271 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[272 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[273 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[274 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[275 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[276 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[277 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[278 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[279 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[27a 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[27b 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[27c 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[27d 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[27e 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[27f 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[280 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[281 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[282 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[283 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[284 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[285 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[286 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[287 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[288 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[289 12-12 14:19:39.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[28a 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[28b 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[28c 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[28d 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[28e 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[28f 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[290 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[291 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[292 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[293 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[294 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[295 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[296 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[297 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[298 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[299 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[29a 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[29b 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[29c 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:36748 -[29d 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[29e 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[29f 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[2a0 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[2a1 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[2a2 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[2a3 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[2a4 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[2a5 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[2a6 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[2a7 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[2a8 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[2a9 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[2aa 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[2ab 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[2ac 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[2ad 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[2ae 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[2af 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[2b0 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= ------END CERTIFICATE----- -[2b1 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A ------END CERTIFICATE----- -[2b2 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:36748: rpc error: code = Canceled desc = context canceled -[2b3 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[2b4 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A ------END CERTIFICATE----- -[2b5 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU Rejecting deliver for 172.18.0.7:36746 because channel businesschannel not found -[2b6 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[2b7 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[2b8 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[2b9 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[2ba 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[2bb 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[2bc 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[2bd 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[2be 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[2bf 12-12 14:19:39.35 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[2c0 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[2c1 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[2c2 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36746 -[2c4 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36746 -[2c3 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -+8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -cNvAXU8LlQ== ------END CERTIFICATE----- -[2c5 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[2c6 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[2c7 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36746: rpc error: code = Canceled desc = context canceled -[2c8 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[2c9 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[2ca 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[2cb 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[2cc 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[2cd 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[2ce 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -[2cf 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[2d0 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[2d1 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[2d2 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[2d3 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -xEFWkMtGbgY= ------END CERTIFICATE----- -[2d4 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[2d5 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[2d6 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[2d7 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[2d8 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[2d9 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[2da 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[2db 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[2dc 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[2dd 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[2de 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[2df 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[2e0 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[2e1 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[2e2 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[2e3 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[2e4 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[2e5 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[2e6 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[2e7 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[2e8 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[2e9 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[2ea 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[2eb 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[2ec 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[2ed 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[2ee 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[2ef 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[2f0 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[2f1 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[2f2 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[2f3 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[2f4 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[2f5 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[2f6 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[2f7 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[2f8 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[2f9 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[2fa 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[2fb 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[2fc 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[2fd 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[2fe 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[2ff 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[300 12-12 14:19:39.36 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[301 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[302 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[303 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[304 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[305 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36750 -[306 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36750 -[307 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[308 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[309 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[30a 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[30b 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[30c 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[30d 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[30e 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[30f 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[310 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[311 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[312 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[313 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[314 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[315 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[316 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[317 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[318 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[319 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[31a 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[31b 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[31c 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[31d 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[31e 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[31f 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[320 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[321 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[322 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[323 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[324 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[325 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[326 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[327 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate -> DEBU Initializing chain businesschannel at: /var/hyperledger/production/orderer/chain_businesschannel -[328 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.newChain -> DEBU Initialized to block height 18446744073709551615 with hash -[329 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] WriteConfigBlock.newChain.Append.writeBlock -> DEBU Wrote block 0 -[32a 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.readBlock -> DEBU Read block 0 -[32b 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport.newBlockWriter -> DEBU [channel: businesschannel] Creating block writer for tip of chain (blockNumber=0, lastConfigBlockNum=0, lastConfigSeq=1) -[32c 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport -> DEBU [channel: businesschannel] Done creating channel support resources -[32d 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain -> INFO Created and starting new chain businesschannel -[32e 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[32f 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[330 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[331 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[332 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...154441142D465432DB7A837CB99BBB94 -[333 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 676F5E4AE12EA3D776C46A56208469353EFACB6FD840E1192C8B3B729C2B29C0 -[334 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[335 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[336 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 -[337 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[338 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[339 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...154441142D465432DB7A837CB99BBB94 -[33a 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 6410F174437C6DF1A4546ED9BF6ED0BB636DF11D054B3564556F60C09E528CCA -[33b 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] commitBlock.Append.Append.writeBlock -> DEBU Wrote block 1 -[33c 12-12 14:19:39.37 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: testchainid] Wrote block 1 -[33d 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[33e 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[33f 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[340 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[341 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[342 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[343 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[344 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e398 gate 1513088379575558000 evaluation starts -[345 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e398 signed by 0 principal evaluation starts (used [false]) -[346 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e398 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[347 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e398 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[348 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e398 principal evaluation fails -[349 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e398 gate 1513088379575558000 evaluation fails -[34a 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -[34b 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[34c 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -[34d 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -[34e 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[34f 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[350 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[351 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[352 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3b0 gate 1513088379577106300 evaluation starts -[353 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3b0 signed by 0 principal evaluation starts (used [false]) -[354 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3b0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[355 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3b0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[356 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3b0 principal evaluation fails -[357 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3b0 gate 1513088379577106300 evaluation fails -[358 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[359 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[35a 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[35b 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3b8 gate 1513088379578517600 evaluation starts -[35c 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3b8 signed by 0 principal evaluation starts (used [false]) -[35d 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3b8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[35e 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[35f 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[360 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3b8 principal matched by identity 0 -[361 12-12 14:19:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 c6 f3 ff e4 78 0b f2 a3 5f 7c 62 af 60 07 43 6d |....x..._|b.`.Cm| -00000010 86 48 2a 51 9b 10 58 c9 b3 95 c9 19 e6 40 bc 85 |.H*Q..X......@..| -[362 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b5 e1 1d cf 3c fb 3a 0e e2 19 9e |0E.!.....<.:....| -00000010 4b e4 43 0d 85 00 17 03 29 7c f4 f1 e4 bb 97 7d |K.C.....)|.....}| -00000020 fa 27 a2 13 5e 02 20 1a aa 3a 3f fe 17 3a 7b 93 |.'..^. ..:?..:{.| -00000030 99 be 60 2b d1 50 b5 f9 e7 62 04 66 91 21 88 a7 |..`+.P...b.f.!..| -00000040 a1 13 fd d4 20 f4 aa |.... ..| -[363 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3b8 principal evaluation succeeds for identity 0 -[364 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3b8 gate 1513088379578517600 evaluation succeeds -[365 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -[366 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[367 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -[368 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[369 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[36a 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[36b 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4202a4fe0) start: > stop: > from 172.18.0.7:36750 -[36c 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 0 -[36d 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4202a4fe0) for 172.18.0.7:36750 -[36e 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:36750 for (0xc4202a4fe0) -[36f 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36750 -[370 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36750 -[371 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36750: rpc error: code = Canceled desc = context canceled -[372 12-12 14:19:39.58 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[373 12-12 14:19:39.68 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[374 12-12 14:19:39.68 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36752 -[375 12-12 14:19:39.68 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36752 -[376 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[377 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:36754 -[378 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: appchannel] Broadcast is processing config update message from 172.18.0.7:36754 -[379 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update tx with system channel message processor for channel ID appchannel -[37a 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing channel create tx for channel appchannel on system channel testchainid -[37b 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[37c 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[37d 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[37e 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[37f 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[380 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[381 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[382 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[383 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[384 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[385 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[386 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[387 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[388 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[389 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[38a 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[38b 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[38c 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[38d 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[38e 12-12 14:19:39.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= ------END CERTIFICATE----- -[38f 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A ------END CERTIFICATE----- -[390 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A ------END CERTIFICATE----- -[391 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[392 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[393 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[394 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[395 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[396 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[397 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[398 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -[399 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[39a 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[39b 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[39c 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[39d 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -xEFWkMtGbgY= ------END CERTIFICATE----- -[39e 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[39f 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[3a0 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[3a1 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[3a2 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[3a3 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[3a4 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3a5 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[3a6 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[3a7 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[3a8 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[3a9 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[3aa 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -+8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -cNvAXU8LlQ== ------END CERTIFICATE----- -[3ab 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[3ac 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[3ad 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[3ae 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[3af 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[3b0 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[3b1 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[3b2 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[3b3 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[3b4 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[3b5 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[3b6 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[3b7 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[3b8 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[3b9 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[3ba 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[3bb 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[3bc 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[3bd 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy ChannelCreationPolicy for Channel/Application -[3be 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins -[3bf 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[3c0 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Application/Readers -[3c1 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[3c2 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Application/Writers -[3c3 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[3c4 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[3c5 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[3c6 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[3c7 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[3c8 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[3c9 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[3ca 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[3cb 12-12 14:19:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[3cc 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[3cd 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[3ce 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[3cf 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[3d0 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[3d1 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[3d2 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[3d3 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[3d4 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[3d5 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[3d6 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[3d7 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[3d8 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[3d9 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[3da 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[3db 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[3dc 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[3dd 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[3de 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[3df 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -[3e0 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[3e1 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[3e2 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[3e3 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[3e4 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[3e5 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[3e6 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[3e7 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[3e8 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[3e9 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[3ea 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[3eb 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[3ec 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[3ed 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[3ee 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[3ef 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[3f0 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[3f1 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[3f2 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[3f3 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[3f4 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[3f5 12-12 14:19:39.71 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[3f6 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -[3f7 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy ChannelCreationPolicy -[3f8 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] -[3f9 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[3fa 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[3fb 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[3fc 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[3fd 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[3fe 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[3ff 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[400 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[401 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy == -[402 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[403 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -[404 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[405 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[406 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e768 gate 1513088379721699300 evaluation starts -[407 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e768 signed by 0 principal evaluation starts (used [false]) -[408 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e768 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[409 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[40a 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e768 principal matched by identity 0 -[40b 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 74 62 55 84 54 84 d3 fc 37 ff 1b d1 3a a6 30 c2 |tbU.T...7...:.0.| -00000010 81 70 dd d3 d0 d5 9e 9b e5 34 4d 83 a6 6d d3 c1 |.p.......4M..m..| -[40c 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 cb cd 0b 64 09 7d 04 72 03 4b 1d |0E.!....d.}.r.K.| -00000010 53 72 05 21 21 5b 16 61 dd 54 2e 2e c4 b6 05 2f |Sr.!![.a.T...../| -00000020 8f 3e 7e ce ff 02 20 16 94 de b8 6e 43 f6 89 bd |.>~... ....nC...| -00000030 ce ac 70 cb 4a 65 18 e6 4c a6 87 e4 94 7b 5f 1c |..p.Je..L....{_.| -00000040 60 02 b8 01 29 1b 7c |`...).|| -[40d 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e768 principal evaluation succeeds for identity 0 -[40e 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e768 gate 1513088379721699300 evaluation succeeds -[40f 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -[410 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -[411 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/ChannelCreationPolicy -[412 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy -[413 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Capabilities -[414 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Admins -[415 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Readers -[416 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Writers -[417 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[418 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[419 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[41a 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[41b 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[41c 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[41d 12-12 14:19:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[41e 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[41f 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[420 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[421 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[422 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[423 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[424 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[425 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[426 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[427 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[428 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[429 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[42a 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[42b 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[42c 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[42d 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[42e 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AC8060A1608011A0608FBCABFD10522...0C08A9179B7C1B58CF3676E91FAAD4B0 -[42f 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: 28E62DA647E535A976C10054872D9AFE9A570FC7CCD927DFBD2E993925BC645E -[430 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[431 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[432 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[433 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[434 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AC9060A1708041A0608FBCABFD10522...6271F48FE540BEF8477F5E588BDE6B99 -[435 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: C51A9AC24391E2F17CA7925DA3DAA500C021D5059AC8E716B9F72ABEC42AA100 -[436 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[437 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[438 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[439 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[43a 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[43b 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e330 gate 1513088379732691500 evaluation starts -[43c 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e330 signed by 0 principal evaluation starts (used [false]) -[43d 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e330 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624b6741774942416749515a514232667a33766f54575838334f36754e592b796a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d566f58445449334d5449784d4441344e4441784d566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415273516c4d6e6a7836777a4c5133455649357a4357785845485248413046674a6f6148586363505a595a4d746743534b684e0a7456346d424f31762b785565392b313755394f2f467037694b54616c68622f65676e71776f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344416b43387863556452672b44333878734373535a64304b343343724f450a2b455833697a4773554d7931527a414b42676771686b6a4f5051514441674e494144424641694541676e494d4e3768725a5370345561565238752b65746f2f710a585a4e4d476a6b7664614150486f316176673843494736454a4336356e6f6a684b6c754f53484841596b6a72356347646d6159455249576644737935544667640a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[43e 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[43f 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[440 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e330 principal matched by identity 0 -[441 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 c5 1a 9a c2 43 91 e2 f1 7c a7 92 5d a3 da a5 00 |....C...|..]....| -00000010 c0 21 d5 05 9a c8 e7 16 b9 f7 2a be c4 2a a1 00 |.!........*..*..| -[442 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ce 85 27 21 12 2f cd ff f2 7e 1f |0E.!...'!./...~.| -00000010 df e7 91 46 40 bc a9 6a 9d fe 5d d4 61 4c 5e 4d |...F@..j..].aL^M| -00000020 7e 4c bf 97 99 02 20 6b 25 3d f5 83 b7 30 58 ad |~L.... k%=...0X.| -00000030 35 dc 5c 73 11 a5 80 44 64 1e 29 9a d3 7c 64 9e |5.\s...Dd.)..|d.| -00000040 44 ff 43 6d d5 b5 1d |D.Cm...| -[443 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e330 principal evaluation succeeds for identity 0 -[444 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e330 gate 1513088379732691500 evaluation succeeds -[445 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers -[446 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -[447 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers -[448 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[449 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[44a 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[44b 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[44c 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[44d 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[44e 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[44f 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[450 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[451 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[452 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[453 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[454 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[455 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[456 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[457 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[458 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[459 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[45a 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[45b 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[45c 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[45d 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[45e 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= ------END CERTIFICATE----- -[45f 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A ------END CERTIFICATE----- -[460 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A ------END CERTIFICATE----- -[461 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[462 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[463 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[464 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[465 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[466 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[467 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[468 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -[469 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[46a 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[46b 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[46c 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[46d 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -xEFWkMtGbgY= ------END CERTIFICATE----- -[46e 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[46f 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[470 12-12 14:19:39.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[471 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[472 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[473 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[474 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[475 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[476 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[477 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[478 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[479 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[47a 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -+8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -cNvAXU8LlQ== ------END CERTIFICATE----- -[47b 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[47c 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[47d 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[47e 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[47f 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[480 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[481 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[482 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[483 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[484 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[485 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[486 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[487 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[488 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[489 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[48a 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[48b 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[48c 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[48d 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy ChannelCreationPolicy for Channel/Application -[48e 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins -[48f 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[490 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Application/Readers -[491 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[492 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Application/Writers -[493 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[494 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[495 12-12 14:19:39.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[496 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[497 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[498 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[499 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[49a 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[49b 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[49c 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[49d 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[49e 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[49f 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[4a0 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[4a1 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[4a2 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[4a3 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[4a4 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[4a5 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[4a6 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[4a7 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[4a8 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[4a9 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[4aa 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[4ab 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[4ac 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[4ad 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[4ae 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[4af 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -[4b0 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[4b1 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[4b2 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[4b3 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[4b4 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[4b5 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[4b6 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[4b7 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[4b8 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[4b9 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[4ba 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[4bb 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[4bc 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[4bd 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[4be 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[4bf 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[4c0 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[4c1 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[4c2 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[4c3 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[4c4 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[4c5 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[4c6 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Capabilities -[4c7 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Writers -[4c8 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Readers -[4c9 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -[4ca 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy ChannelCreationPolicy -[4cb 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] -[4cc 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[4cd 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[4ce 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[4cf 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[4d0 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[4d1 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[4d2 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[4d3 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[4d4 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy == -[4d5 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[4d6 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -[4d7 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[4d8 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[4d9 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e260 gate 1513088379759138800 evaluation starts -[4da 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 signed by 0 principal evaluation starts (used [false]) -[4db 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[4dc 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[4dd 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 principal evaluation fails -[4de 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e260 gate 1513088379759138800 evaluation fails -[4df 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Admins -[4e0 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -[4e1 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -[4e2 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e270 gate 1513088379759692100 evaluation starts -[4e3 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 signed by 0 principal evaluation starts (used [false]) -[4e4 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[4e5 12-12 14:19:39.75 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[4e6 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 principal matched by identity 0 -[4e7 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 74 62 55 84 54 84 d3 fc 37 ff 1b d1 3a a6 30 c2 |tbU.T...7...:.0.| -00000010 81 70 dd d3 d0 d5 9e 9b e5 34 4d 83 a6 6d d3 c1 |.p.......4M..m..| -[4e8 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 cb cd 0b 64 09 7d 04 72 03 4b 1d |0E.!....d.}.r.K.| -00000010 53 72 05 21 21 5b 16 61 dd 54 2e 2e c4 b6 05 2f |Sr.!![.a.T...../| -00000020 8f 3e 7e ce ff 02 20 16 94 de b8 6e 43 f6 89 bd |.>~... ....nC...| -00000030 ce ac 70 cb 4a 65 18 e6 4c a6 87 e4 94 7b 5f 1c |..p.Je..L....{_.| -00000040 60 02 b8 01 29 1b 7c |`...).|| -[4e9 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 principal evaluation succeeds for identity 0 -[4ea 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e270 gate 1513088379759692100 evaluation succeeds -[4eb 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -[4ec 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -[4ed 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/ChannelCreationPolicy -[4ee 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy -[4ef 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Admins -[4f0 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[4f1 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[4f2 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[4f3 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[4f4 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[4f5 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[4f6 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[4f7 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[4f8 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[4f9 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[4fa 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[4fb 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[4fc 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[4fd 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[4fe 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[4ff 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[500 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[501 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[502 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[503 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[504 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[505 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[506 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[507 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[508 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[509 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[50a 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[50b 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[50c 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[50d 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[50e 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[50f 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[510 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[511 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[512 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[513 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[514 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -+8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -cNvAXU8LlQ== ------END CERTIFICATE----- -[515 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[516 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[517 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[518 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[519 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[51a 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[51b 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[51c 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -[51d 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[51e 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[51f 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[520 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[521 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -xEFWkMtGbgY= ------END CERTIFICATE----- -[522 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[523 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[524 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[525 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[526 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[527 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[528 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[529 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[52a 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[52b 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[52c 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[52d 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[52e 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[52f 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[530 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[531 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[532 12-12 14:19:39.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= ------END CERTIFICATE----- -[533 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A ------END CERTIFICATE----- -[534 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A ------END CERTIFICATE----- -[535 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[536 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[537 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[538 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[539 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[53a 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[53b 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[53c 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[53d 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[53e 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[53f 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[540 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[541 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[542 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[543 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[544 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[545 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[546 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[547 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[548 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[549 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[54a 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[54b 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[54c 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[54d 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[54e 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[54f 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[550 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[551 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[552 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[553 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[554 12-12 14:19:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[555 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[556 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[557 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[558 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[559 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[55a 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[55b 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[55c 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[55d 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[55e 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[55f 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[560 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[561 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[562 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[563 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[564 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[565 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[566 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[567 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[568 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[569 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[56a 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[56b 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[56c 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[56d 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[56e 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[56f 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[570 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[571 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[572 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: appchannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:36754 -[573 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[574 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[575 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[576 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[577 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[578 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[579 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[57a 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[57b 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[57c 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[57d 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[57e 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[57f 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[580 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[581 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[582 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[583 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[584 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -+8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -cNvAXU8LlQ== ------END CERTIFICATE----- -[585 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[586 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[587 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[588 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[589 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[58a 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[58b 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[58c 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -[58d 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[58f 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:36754: rpc error: code = Canceled desc = context canceled -[590 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[591 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU Rejecting deliver for 172.18.0.7:36752 because channel appchannel not found -[592 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36752 -[593 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36752 -[594 12-12 14:19:39.79 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36752: rpc error: code = Canceled desc = context canceled -[595 12-12 14:19:39.79 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[58e 12-12 14:19:39.78 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[596 12-12 14:19:39.79 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[597 12-12 14:19:39.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[598 12-12 14:19:39.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -xEFWkMtGbgY= ------END CERTIFICATE----- -[599 12-12 14:19:39.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[59a 12-12 14:19:39.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[59b 12-12 14:19:39.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[59c 12-12 14:19:39.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[59d 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[59e 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[59f 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[5a0 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[5a1 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[5a2 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[5a3 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[5a4 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36756 -[5a5 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36756 -[5a6 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[5a7 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[5a8 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[5a9 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[5aa 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[5ab 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[5ac 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= ------END CERTIFICATE----- -[5ad 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A ------END CERTIFICATE----- -[5ae 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A ------END CERTIFICATE----- -[5af 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[5b0 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[5b1 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[5b2 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[5b3 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[5b4 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[5b5 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[5b6 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[5b7 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[5b8 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[5b9 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[5ba 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[5bb 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[5bc 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[5bd 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[5be 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[5bf 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[5c0 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[5c1 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[5c2 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[5c3 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[5c4 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[5c5 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[5c6 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[5c7 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[5c8 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[5c9 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[5ca 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[5cb 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[5cc 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[5cd 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[5ce 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[5cf 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[5d0 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[5d1 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[5d2 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[5d3 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[5d4 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[5d5 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[5d6 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[5d7 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[5d8 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[5d9 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[5da 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[5db 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[5dc 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[5dd 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[5de 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[5df 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[5e0 12-12 14:19:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[5e1 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[5e2 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[5e3 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[5e4 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[5e5 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[5e6 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[5e7 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[5e8 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[5e9 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[5ea 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[5eb 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[5ec 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[5ed 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[5ee 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[5ef 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[5f0 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[5f1 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[5f2 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[5f3 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[5f4 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[5f5 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[5f6 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[5f7 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[5f8 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[5f9 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[5fa 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[5fb 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[5fc 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[5fd 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate -> DEBU Initializing chain appchannel at: /var/hyperledger/production/orderer/chain_appchannel -[5fe 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.newChain -> DEBU Initialized to block height 18446744073709551615 with hash -[5ff 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] WriteConfigBlock.newChain.Append.writeBlock -> DEBU Wrote block 0 -[600 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.readBlock -> DEBU Read block 0 -[601 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport.newBlockWriter -> DEBU [channel: appchannel] Creating block writer for tip of chain (blockNumber=0, lastConfigBlockNum=0, lastConfigSeq=1) -[602 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport -> DEBU [channel: appchannel] Done creating channel support resources -[603 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain -> INFO Created and starting new chain appchannel -[604 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[605 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[606 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[607 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[608 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...5E14A620AF959339E865CA50A299FB0C -[609 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 76E09E4E725FD7C77F977B4CC0A88227B74FD1A5A157FDA1EF4018C27F28A45C -[60a 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[60b 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[60c 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 -[60d 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[60e 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[60f 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...5E14A620AF959339E865CA50A299FB0C -[610 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: EDDE8E195DF532E1651CE3CBC615FCA8502A3402D7AA6D0DC879E38A3D3A933E -[611 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] commitBlock.Append.Append.writeBlock -> DEBU Wrote block 2 -[612 12-12 14:19:39.81 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: testchainid] Wrote block 2 -[613 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[614 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[615 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[616 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[617 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[618 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[619 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[61a 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e280 gate 1513088380005795100 evaluation starts -[61b 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e280 signed by 0 principal evaluation starts (used [false]) -[61c 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e280 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[61d 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e280 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[61e 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e280 principal evaluation fails -[61f 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e280 gate 1513088380005795100 evaluation fails -[620 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -[621 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[622 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -[623 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -[624 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[625 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[626 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[627 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[628 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e290 gate 1513088380007671400 evaluation starts -[629 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e290 signed by 0 principal evaluation starts (used [false]) -[62a 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e290 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[62b 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e290 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[62c 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e290 principal evaluation fails -[62d 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e290 gate 1513088380007671400 evaluation fails -[62e 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[62f 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[630 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[631 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e298 gate 1513088380008744900 evaluation starts -[632 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 signed by 0 principal evaluation starts (used [false]) -[633 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[634 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[635 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[636 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 principal matched by identity 0 -[637 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d8 e6 68 2d 95 0b f4 15 38 9c 58 af 3f 6c 8b 46 |..h-....8.X.?l.F| -00000010 2f 07 26 76 30 e4 f5 8f 99 a6 26 40 8a c9 3f f3 |/.&v0.....&@..?.| -[638 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5b 98 fe 2f 5c 0e 2c 3e 89 17 65 b6 |0D. [../\.,>..e.| -00000010 bd 9f 41 e3 05 fe 1c e6 f6 80 12 81 ab 6f 02 29 |..A..........o.)| -00000020 7d e8 cb a5 02 20 0c 45 97 51 2c 77 90 0b 88 5a |}.... .E.Q,w...Z| -00000030 c5 3e f2 5c 85 60 35 67 8c 53 13 7f 67 58 76 09 |.>.\.`5g.S..gXv.| -00000040 47 a7 bb fb 05 bb |G.....| -[639 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 principal evaluation succeeds for identity 0 -[63a 12-12 14:19:40.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e298 gate 1513088380008744900 evaluation succeeds -[63b 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -[63c 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[63d 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -[63e 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[63f 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[640 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[641 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: appchannel] Received seekInfo (0xc4204b6840) start: > stop: > from 172.18.0.7:36756 -[642 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 0 -[643 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: appchannel] Delivering block for (0xc4204b6840) for 172.18.0.7:36756 -[644 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: appchannel] Done delivering to 172.18.0.7:36756 for (0xc4204b6840) -[645 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36756 -[646 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36756 -[647 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36756: rpc error: code = Canceled desc = context canceled -[648 12-12 14:19:40.01 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[649 12-12 14:19:41.09 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[64a 12-12 14:19:41.10 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36766 -[64b 12-12 14:19:41.10 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36766 -[64c 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[64d 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:36768 -[64e 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.18.0.7:36768 -[64f 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update message for channel businesschannel -[650 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[651 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[652 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[653 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[654 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[655 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e030 gate 1513088381115793100 evaluation starts -[656 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e030 signed by 0 principal evaluation starts (used [false]) -[657 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e030 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[658 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e030 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[659 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e030 principal evaluation fails -[65a 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e030 gate 1513088381115793100 evaluation fails -[65b 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -[65c 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -[65d 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -[65e 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -[65f 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[660 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -[661 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[662 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -[663 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e038 gate 1513088381118063300 evaluation starts -[664 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 signed by 0 principal evaluation starts (used [false]) -[665 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[666 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[667 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 principal evaluation fails -[668 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e038 gate 1513088381118063300 evaluation fails -[669 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers -[66a 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -[66b 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -[66c 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e040 gate 1513088381119431200 evaluation starts -[66d 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e040 signed by 0 principal evaluation starts (used [false]) -[66e 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e040 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[66f 12-12 14:19:41.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[670 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[671 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e040 principal matched by identity 0 -[672 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 c3 e0 46 5f 23 ff 31 85 b1 92 5d a1 49 83 9a 8c |..F_#.1...].I...| -00000010 d2 dc c2 ed b1 f2 bb c3 77 e7 ab ca 36 3f 21 24 |........w...6?!$| -[673 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 97 1c 0b d3 9f d8 c9 cc b8 e9 72 |0E.!...........r| -00000010 16 51 55 51 1a d8 20 3e 04 a1 07 42 78 4c ef b0 |.QUQ.. >...BxL..| -00000020 ef 62 c8 6c d6 02 20 71 4b 18 c1 03 d1 05 ca f5 |.b.l.. qK.......| -00000030 49 a7 89 f2 11 a9 5a 73 50 07 35 0a af 98 f6 a4 |I.....ZsP.5.....| -00000040 3f 05 87 7f 68 32 06 |?...h2.| -[674 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e040 principal evaluation succeeds for identity 0 -[675 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e040 gate 1513088381119431200 evaluation succeeds -[676 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers -[677 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -[678 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -[679 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -[67a 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[67b 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[67c 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[67d 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[67e 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[67f 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[680 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[681 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[682 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[683 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[684 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[685 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[686 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[687 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[688 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[689 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[68a 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[68b 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -[68c 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -[68d 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[68e 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[68f 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[690 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[691 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[692 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[693 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org1MSP] -[694 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[695 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[696 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org1MSP looking up path [] -[697 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -[698 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000e4a0 gate 1513088381126545900 evaluation starts -[699 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4a0 signed by 0 principal evaluation starts (used [false]) -[69a 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4a0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[69b 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[69c 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4a0 principal matched by identity 0 -[69d 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 8f 9f 17 cb ec 19 a5 bd 38 53 60 42 6b 06 57 58 |........8S`Bk.WX| -00000010 06 97 66 b1 66 bf 8c 2b 47 2e f7 cf a2 2c 87 c4 |..f.f..+G....,..| -[69e 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 6e 3c f7 a2 0b 18 74 47 57 83 f5 4e |0D. n<....tGW..N| -00000010 c1 f2 c3 d3 ab 46 24 55 af d6 ba 74 c9 e3 6f 53 |.....F$U...t..oS| -00000020 54 0d fe 03 02 20 54 30 83 45 87 dc e3 49 84 c3 |T.... T0.E...I..| -00000030 78 7e d2 4b 52 6f 0a 9d 45 a7 99 c2 c0 24 24 c8 |x~.KRo..E....$$.| -00000040 fb c3 05 59 77 b0 |...Yw.| -[69f 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4a0 principal evaluation succeeds for identity 0 -[6a0 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000e4a0 gate 1513088381126545900 evaluation succeeds -[6a1 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -[6a2 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -[6a3 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -[6a4 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[6a5 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[6a6 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[6a7 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[6a8 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[6a9 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[6aa 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[6ab 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[6ac 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[6ad 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[6ae 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[6af 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[6b0 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[6b1 12-12 14:19:41.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[6b2 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[6b3 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[6b4 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[6b5 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[6b6 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[6b7 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[6b8 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[6b9 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[6ba 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[6bb 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[6bc 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[6bd 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[6be 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[6bf 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[6c0 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[6c1 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[6c2 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[6c3 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[6c4 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[6c5 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[6c6 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[6c7 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[6c8 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[6c9 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[6ca 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= ------END CERTIFICATE----- -[6cb 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A ------END CERTIFICATE----- -[6cc 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A ------END CERTIFICATE----- -[6cd 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[6ce 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[6cf 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[6d0 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[6d1 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[6d2 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[6d3 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[6d4 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[6d5 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[6d6 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[6d7 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[6d8 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[6d9 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -+8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -cNvAXU8LlQ== ------END CERTIFICATE----- -[6da 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[6db 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[6dc 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[6dd 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[6de 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[6df 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[6e0 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[6e1 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[6e2 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[6e3 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[6e4 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[6e5 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[6e6 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -xEFWkMtGbgY= ------END CERTIFICATE----- -[6e7 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[6e8 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[6e9 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[6ea 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[6eb 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[6ec 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[6ed 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[6ee 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[6ef 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[6f0 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[6f1 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[6f2 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[6f3 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[6f4 12-12 14:19:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[6f5 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[6f6 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[6f7 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[6f8 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[6f9 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[6fa 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[6fb 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[6fc 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[6fd 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[6fe 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[6ff 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[700 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[701 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[702 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[703 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[704 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[705 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[706 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[707 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[708 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[709 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[70a 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[70b 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[70c 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[70d 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[70e 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[70f 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[710 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[711 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[712 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[713 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[714 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[715 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[716 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[717 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[718 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[719 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[71a 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[71b 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[71c 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[71d 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[71e 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[71f 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[720 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[721 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[722 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[723 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[724 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[725 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[726 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[727 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[728 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[729 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[72a 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[72b 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[72c 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[72d 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[72e 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[72f 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[730 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[731 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[732 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[733 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[734 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[735 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[736 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[737 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[738 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[739 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[73a 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[73b 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[73c 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608FDCABFD10522...735007350AAF98F6A43F05877F683206 -[73d 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: 3ECA6E9D6B05FB516A0E0D7129043609074D5D3885918D69AE433B72BC91AAEB -[73e 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[73f 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[740 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[741 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[742 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[743 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[744 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -hkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN -tV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE -+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q -XZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd ------END CERTIFICATE----- -[745 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e428 gate 1513088381148320500 evaluation starts -[746 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e428 signed by 0 principal evaluation starts (used [false]) -[747 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e428 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624b6741774942416749515a514232667a33766f54575838334f36754e592b796a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d566f58445449334d5449784d4441344e4441784d566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415273516c4d6e6a7836777a4c5133455649357a4357785845485248413046674a6f6148586363505a595a4d746743534b684e0a7456346d424f31762b785565392b313755394f2f467037694b54616c68622f65676e71776f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344416b43387863556452672b44333878734373535a64304b343343724f450a2b455833697a4773554d7931527a414b42676771686b6a4f5051514441674e494144424641694541676e494d4e3768725a5370345561565238752b65746f2f710a585a4e4d476a6b7664614150486f316176673843494736454a4336356e6f6a684b6c754f53484841596b6a72356347646d6159455249576644737935544667640a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[748 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[749 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[74a 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e428 principal matched by identity 0 -[74b 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 3e ca 6e 9d 6b 05 fb 51 6a 0e 0d 71 29 04 36 09 |>.n.k..Qj..q).6.| -00000010 07 4d 5d 38 85 91 8d 69 ae 43 3b 72 bc 91 aa eb |.M]8...i.C;r....| -[74c 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 17 64 93 dd fa ff 2c 44 15 c3 92 f6 |0D. .d....,D....| -00000010 45 fd 6f 87 b7 96 ac 45 fa e0 cf 9b 78 6f b2 34 |E.o....E....xo.4| -00000020 88 5d 17 6d 02 20 32 92 d3 3c 97 b6 d2 5a 28 08 |.].m. 2..<...Z(.| -00000030 59 b6 6d 43 a7 14 d4 0b 6a 7b 58 63 6a 8d 7b cc |Y.mC....j{Xcj.{.| -00000040 3e 19 f5 29 17 20 |>..). | -[74d 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e428 principal evaluation succeeds for identity 0 -[74e 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e428 gate 1513088381148320500 evaluation succeeds -[74f 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers -[750 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -[751 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers -[752 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[753 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[754 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[755 12-12 14:19:41.14 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:36768 -[756 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[757 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[758 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[759 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[75a 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[75b 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[75c 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[75d 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[75e 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[75f 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[760 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[761 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[762 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[763 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[764 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[765 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -[766 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -[769 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[76a 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[76b 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[76c 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[767 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36766: rpc error: code = Canceled desc = context canceled -[768 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:36768: rpc error: code = Canceled desc = context canceled -[76d 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[770 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[771 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org1MSP] -[772 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[773 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[774 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org1MSP looking up path [] -[775 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -[776 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420116da8 gate 1513088381156227200 evaluation starts -[777 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116da8 signed by 0 principal evaluation starts (used [false]) -[778 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116da8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[779 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[76e 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[76f 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[77a 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116da8 principal matched by identity 0 -[77b 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 8f 9f 17 cb ec 19 a5 bd 38 53 60 42 6b 06 57 58 |........8S`Bk.WX| -00000010 06 97 66 b1 66 bf 8c 2b 47 2e f7 cf a2 2c 87 c4 |..f.f..+G....,..| -[77c 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 6e 3c f7 a2 0b 18 74 47 57 83 f5 4e |0D. n<....tGW..N| -00000010 c1 f2 c3 d3 ab 46 24 55 af d6 ba 74 c9 e3 6f 53 |.....F$U...t..oS| -00000020 54 0d fe 03 02 20 54 30 83 45 87 dc e3 49 84 c3 |T.... T0.E...I..| -00000030 78 7e d2 4b 52 6f 0a 9d 45 a7 99 c2 c0 24 24 c8 |x~.KRo..E....$$.| -00000040 fb c3 05 59 77 b0 |...Yw.| -[77d 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116da8 principal evaluation succeeds for identity 0 -[77e 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420116da8 gate 1513088381156227200 evaluation succeeds -[77f 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -[780 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -[781 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -[782 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[783 12-12 14:19:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[784 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[785 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[786 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[787 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[788 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[789 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[78a 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[78b 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[78c 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[78d 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[78e 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[78f 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[790 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[791 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[792 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[793 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[794 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[795 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[796 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[797 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[798 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[799 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[79a 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[79b 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[79c 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[79d 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[79e 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[79f 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[7a0 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[7a1 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[7a2 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[7a3 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[7a4 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[7a5 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[7a6 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[7a7 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[7a8 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= ------END CERTIFICATE----- -[7a9 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A ------END CERTIFICATE----- -[7aa 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A ------END CERTIFICATE----- -[7ab 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[7ac 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[7ad 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[7ae 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[7af 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[7b0 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[7b1 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[7b2 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[7b3 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[7b4 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[7b5 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[7b6 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[7b7 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -+8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -cNvAXU8LlQ== ------END CERTIFICATE----- -[7b8 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[7b9 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[7ba 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[7bb 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[7bc 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[7bd 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[7be 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[7bf 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[7c0 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[7c1 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[7c2 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[7c3 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[7c4 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -xEFWkMtGbgY= ------END CERTIFICATE----- -[7c5 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[7c6 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[7c7 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[7c8 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[7c9 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[7ca 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[7cb 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[7cc 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[7cd 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[7ce 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[7cf 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[7d0 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[7d1 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[7d2 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[7d3 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[7d4 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[7d5 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[7d6 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[7d7 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[7d8 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[7d9 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[7da 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[7db 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[7dc 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[7dd 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[7de 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[7df 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[7e0 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[7e1 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[7e2 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[7e3 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[7e4 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[7e5 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[7e6 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[7e7 12-12 14:19:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[7e8 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[7e9 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[7ea 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[7eb 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[7ec 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[7ed 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[7ee 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[7ef 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[7f0 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[7f1 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[7f2 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[7f3 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[7f4 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[7f5 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[7f6 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[7f7 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[7f8 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[7f9 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[7fa 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[7fb 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[7fc 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[7fd 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[7fe 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[7ff 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[800 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[801 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[802 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[803 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[804 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[805 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[806 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[807 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[808 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[809 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[80a 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[80b 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[80c 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[80d 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[80e 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[80f 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[810 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[811 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[812 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[813 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[814 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[815 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[816 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[817 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[818 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[819 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[81a 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...4CF6A70ABBFAC8F76AFFD28E3B63EE3A -[81b 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 6897BDD330A6994DD5982094D92B99B90C516D3EE0BCE153847492BAE3A2B14A -[81c 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 1 to 2, setting lastConfigBlockNum from 0 to 1 -[81d 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[81e 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[81f 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 -[820 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[821 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[822 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08010A90060A0A4F7264657265724D53...4CF6A70ABBFAC8F76AFFD28E3B63EE3A -[823 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 5AF3D28DADF2ECF8E91DF524F2727F003CF15861BBB592C5B7366961DB4A1DF4 -[824 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] commitBlock.Append.Append.writeBlock -> DEBU Wrote block 1 -[825 12-12 14:19:41.17 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 1 -[826 12-12 14:19:43.25 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[827 12-12 14:19:43.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36770 -[828 12-12 14:19:43.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36770 -[829 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[82a 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:36772 -[82b 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.18.0.7:36772 -[82c 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update message for channel businesschannel -[82d 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[82e 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[82f 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[830 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[831 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[832 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[833 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[834 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116278 gate 1513088383264448000 evaluation starts -[835 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116278 signed by 0 principal evaluation starts (used [false]) -[836 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116278 processing identity 0 with bytes of 0a074f7267324d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b67417749424167495142487a565451465670357636657347472f4146767044414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544661467730794e7a45794d5441774f4451774d5446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414549514f2b6d3649736c4a37534732682f415774365570564762496648312b586b0a454541534c76597a3177514c576837336a556d72446530473755684c355275796d6b337548312b5156534b587364553833474e7337714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416748545163787371594e4a58540a364f6b4c4e464e7353654b6b556e30444a50324c4e444f596a3261704a6a3077436759494b6f5a497a6a30454177494452774177524149674d6e6f444c7976420a396f4e6c4a6c564e5876647371582f72722f614c6743626c5952626374304c36575538434941774a6964677163706e565737344f3334556268416e65715143660a5a4d3872774c6c675636585565544c570a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[837 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116278 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -[838 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116278 principal evaluation fails -[839 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116278 gate 1513088383264448000 evaluation fails -[83a 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -[83b 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -[83c 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -[83d 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -[83e 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[83f 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -[840 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[841 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -[842 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116288 gate 1513088383265238600 evaluation starts -[843 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116288 signed by 0 principal evaluation starts (used [false]) -[844 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116288 processing identity 0 with bytes of 0a074f7267324d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b67417749424167495142487a565451465670357636657347472f4146767044414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544661467730794e7a45794d5441774f4451774d5446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414549514f2b6d3649736c4a37534732682f415774365570564762496648312b586b0a454541534c76597a3177514c576837336a556d72446530473755684c355275796d6b337548312b5156534b587364553833474e7337714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416748545163787371594e4a58540a364f6b4c4e464e7353654b6b556e30444a50324c4e444f596a3261704a6a3077436759494b6f5a497a6a30454177494452774177524149674d6e6f444c7976420a396f4e6c4a6c564e5876647371582f72722f614c6743626c5952626374304c36575538434941774a6964677163706e565737344f3334556268416e65715143660a5a4d3872774c6c675636585565544c570a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[845 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[846 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[847 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116288 principal matched by identity 0 -[848 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 9f eb e8 ee 7b 4a f3 74 1b d1 a3 2c bc f3 c4 c4 |....{J.t...,....| -00000010 e6 38 39 95 ee 94 09 45 dd 7d 63 64 0c 57 c0 c0 |.89....E.}cd.W..| -[849 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 69 11 8e f0 c2 d4 24 27 90 9c fd 3e |0D. i.....$'...>| -00000010 35 46 b1 37 39 c0 a2 ee 7f 01 ec 09 0c 5e 5e ae |5F.79........^^.| -00000020 d3 36 ff 7b 02 20 5b 4d b6 b8 c6 14 f7 cf e9 35 |.6.{. [M.......5| -00000030 b5 ab 1d 4a e9 44 be 0d 8c 29 35 6d 2f c9 bb c6 |...J.D...)5m/...| -00000040 54 d3 25 30 f2 6f |T.%0.o| -[84a 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116288 principal evaluation succeeds for identity 0 -[84b 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116288 gate 1513088383265238600 evaluation succeeds -[84c 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers -[84d 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -[84e 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -[84f 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -[850 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[851 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[852 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[853 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[854 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[855 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[856 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[857 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[858 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[859 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[85a 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[85b 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[85c 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -[85d 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[85e 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[85f 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[860 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[861 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -[862 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins -[863 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[864 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[865 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[866 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[867 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[868 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[869 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org2MSP] -[86a 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[86b 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[86c 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org2MSP looking up path [] -[86d 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -[86e 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420116ae0 gate 1513088383269021000 evaluation starts -[86f 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116ae0 signed by 0 principal evaluation starts (used [false]) -[870 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116ae0 processing identity 0 with bytes of 0a074f7267324d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b67417749424167495142487a565451465670357636657347472f4146767044414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544661467730794e7a45794d5441774f4451774d5446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414549514f2b6d3649736c4a37534732682f415774365570564762496648312b586b0a454541534c76597a3177514c576837336a556d72446530473755684c355275796d6b337548312b5156534b587364553833474e7337714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416748545163787371594e4a58540a364f6b4c4e464e7353654b6b556e30444a50324c4e444f596a3261704a6a3077436759494b6f5a497a6a30454177494452774177524149674d6e6f444c7976420a396f4e6c4a6c564e5876647371582f72722f614c6743626c5952626374304c36575538434941774a6964677163706e565737344f3334556268416e65715143660a5a4d3872774c6c675636585565544c570a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[871 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP -[872 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116ae0 principal matched by identity 0 -[873 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 07 bb 89 6b b2 c6 1a e0 2f 9a d6 d8 e5 dc f2 23 |...k..../......#| -00000010 87 5b 62 90 21 78 f3 2c 3f 1b 88 91 6a da e1 4e |.[b.!x.,?...j..N| -[874 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 bc e8 f3 06 59 cd f4 78 0f 09 29 |0E.!.....Y..x..)| -00000010 ca 6a a7 af c2 d5 d3 1b f2 69 e6 75 d8 55 90 38 |.j.......i.u.U.8| -00000020 5a 65 68 7e c2 02 20 1f 09 19 79 f4 d3 5c 0e 72 |Zeh~.. ...y..\.r| -00000030 ae 00 af d6 4b ad 09 83 09 4c 5d 11 75 74 30 4c |....K....L].ut0L| -00000040 ab 56 80 1b d4 e6 6d |.V....m| -[875 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116ae0 principal evaluation succeeds for identity 0 -[876 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420116ae0 gate 1513088383269021000 evaluation succeeds -[877 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins -[878 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -[879 12-12 14:19:43.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers -[87a 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[87b 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[87c 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[87d 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[87e 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[87f 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[880 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[881 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[882 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[883 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[884 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[885 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[886 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[887 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[888 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[889 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[88a 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[88b 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[88c 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[88d 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[88e 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[88f 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[890 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[891 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[892 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[893 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[894 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[895 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[896 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[897 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[898 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[899 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[89a 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[89b 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[89c 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[89d 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[89e 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[89f 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[8a0 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= ------END CERTIFICATE----- -[8a1 12-12 14:19:43.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A ------END CERTIFICATE----- -[8a2 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A ------END CERTIFICATE----- -[8a3 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[8a4 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[8a5 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[8a6 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[8a7 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[8a8 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[8a9 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[8aa 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[8ab 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[8ac 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[8ad 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[8ae 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[8af 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -+8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -cNvAXU8LlQ== ------END CERTIFICATE----- -[8b0 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[8b1 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[8b2 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[8b3 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[8b4 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[8b5 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[8b6 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[8b7 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[8b8 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[8b9 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[8ba 12-12 14:19:43.28 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[8bb 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[8bc 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -xEFWkMtGbgY= ------END CERTIFICATE----- -[8bd 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[8be 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[8bf 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[8c0 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[8c1 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[8c2 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[8c3 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[8c4 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[8c5 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[8c6 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[8c7 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[8c8 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[8c9 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[8ca 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[8cb 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[8cc 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[8cd 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[8ce 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[8cf 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[8d0 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[8d1 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[8d2 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[8d3 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[8d4 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[8d5 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[8d6 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[8d7 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[8d8 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[8d9 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[8da 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[8db 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[8dc 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[8dd 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[8de 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[8df 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[8e0 12-12 14:19:43.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[8e1 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[8e2 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[8e3 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[8e4 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[8e5 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[8e6 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[8e7 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[8e8 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -[8e9 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[8ea 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[8eb 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[8ec 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[8ed 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[8ee 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[8ef 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[8f0 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[8f1 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[8f2 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[8f3 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[8f4 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[8f5 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[8f6 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[8f7 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[8f8 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[8f9 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[8fa 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[8fb 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[8fc 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[8fd 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[8fe 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[8ff 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[900 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[901 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[902 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[903 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[904 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[905 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[906 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[907 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[908 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[909 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[90a 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[90b 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[90c 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[90d 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[90e 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[90f 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[910 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[911 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[912 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[913 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608FFCABFD10522...BE0D8C29356D2FC9BBC654D32530F26F -[914 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: 49651D55C31F9E75B6DDD7DB1E7B66357EF4C99D579C91D027AEA79A30753BE3 -[915 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[916 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[917 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[918 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[919 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[91a 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[91b 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -hkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN -tV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE -+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q -XZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd ------END CERTIFICATE----- -[91c 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116a38 gate 1513088383308817400 evaluation starts -[91d 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116a38 signed by 0 principal evaluation starts (used [false]) -[91e 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116a38 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624b6741774942416749515a514232667a33766f54575838334f36754e592b796a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d566f58445449334d5449784d4441344e4441784d566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415273516c4d6e6a7836777a4c5133455649357a4357785845485248413046674a6f6148586363505a595a4d746743534b684e0a7456346d424f31762b785565392b313755394f2f467037694b54616c68622f65676e71776f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344416b43387863556452672b44333878734373535a64304b343343724f450a2b455833697a4773554d7931527a414b42676771686b6a4f5051514441674e494144424641694541676e494d4e3768725a5370345561565238752b65746f2f710a585a4e4d476a6b7664614150486f316176673843494736454a4336356e6f6a684b6c754f53484841596b6a72356347646d6159455249576644737935544667640a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[91f 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[920 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[921 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116a38 principal matched by identity 0 -[922 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 49 65 1d 55 c3 1f 9e 75 b6 dd d7 db 1e 7b 66 35 |Ie.U...u.....{f5| -00000010 7e f4 c9 9d 57 9c 91 d0 27 ae a7 9a 30 75 3b e3 |~...W...'...0u;.| -[923 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 79 72 d4 c7 42 2d d5 71 29 3b 9c 05 |0D. yr..B-.q);..| -00000010 6a 80 eb c3 19 da 53 aa 0a d8 3d 72 3d 5d a1 50 |j.....S...=r=].P| -00000020 8c f8 a3 0c 02 20 0b f8 2e 99 69 05 81 c7 a6 de |..... ....i.....| -00000030 0c 1b 2b 1b 1c 42 c3 f7 18 62 86 75 32 38 e9 32 |..+..B...b.u28.2| -00000040 82 4f de 74 bb df |.O.t..| -[924 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116a38 principal evaluation succeeds for identity 0 -[925 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116a38 gate 1513088383308817400 evaluation succeeds -[926 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers -[927 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -[928 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers -[929 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[92a 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[92b 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[92c 12-12 14:19:43.30 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:36772 -[92d 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[92e 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[92f 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[930 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[931 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[932 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[933 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[934 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[935 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[936 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[937 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[938 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -[939 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[93a 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[93b 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[93c 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -[93d 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins -[93f 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[93e 12-12 14:19:43.31 UTC] [github.com/hyperledger/fabric/common/flogging] serveHTTP2Transport.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.3:7050->172.18.0.7:36772: read: connection reset by peer -[941 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36770: rpc error: code = Canceled desc = context canceled -[942 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[940 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[944 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[945 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[943 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:36772: rpc error: code = Canceled desc = context canceled -[946 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[948 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[947 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[949 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org2MSP] -[94a 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[94b 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[94c 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org2MSP looking up path [] -[94d 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -[94e 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420116a50 gate 1513088383321054000 evaluation starts -[94f 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116a50 signed by 0 principal evaluation starts (used [false]) -[950 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116a50 processing identity 0 with bytes of 0a074f7267324d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b67417749424167495142487a565451465670357636657347472f4146767044414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544661467730794e7a45794d5441774f4451774d5446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414549514f2b6d3649736c4a37534732682f415774365570564762496648312b586b0a454541534c76597a3177514c576837336a556d72446530473755684c355275796d6b337548312b5156534b587364553833474e7337714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416748545163787371594e4a58540a364f6b4c4e464e7353654b6b556e30444a50324c4e444f596a3261704a6a3077436759494b6f5a497a6a30454177494452774177524149674d6e6f444c7976420a396f4e6c4a6c564e5876647371582f72722f614c6743626c5952626374304c36575538434941774a6964677163706e565737344f3334556268416e65715143660a5a4d3872774c6c675636585565544c570a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[951 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP -[952 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116a50 principal matched by identity 0 -[953 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 07 bb 89 6b b2 c6 1a e0 2f 9a d6 d8 e5 dc f2 23 |...k..../......#| -00000010 87 5b 62 90 21 78 f3 2c 3f 1b 88 91 6a da e1 4e |.[b.!x.,?...j..N| -[954 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 bc e8 f3 06 59 cd f4 78 0f 09 29 |0E.!.....Y..x..)| -00000010 ca 6a a7 af c2 d5 d3 1b f2 69 e6 75 d8 55 90 38 |.j.......i.u.U.8| -00000020 5a 65 68 7e c2 02 20 1f 09 19 79 f4 d3 5c 0e 72 |Zeh~.. ...y..\.r| -00000030 ae 00 af d6 4b ad 09 83 09 4c 5d 11 75 74 30 4c |....K....L].ut0L| -00000040 ab 56 80 1b d4 e6 6d |.V....m| -[955 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116a50 principal evaluation succeeds for identity 0 -[956 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420116a50 gate 1513088383321054000 evaluation succeeds -[957 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins -[958 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -[959 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers -[95a 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[95b 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[95c 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[95d 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[95e 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[95f 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[960 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[961 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[962 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[963 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[964 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[965 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[966 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[967 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[968 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[969 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[96a 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[96b 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[96c 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[96d 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[96e 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[96f 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[970 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[971 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[972 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[973 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[974 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[975 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[976 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[977 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[978 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[979 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[97a 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[97b 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[97c 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[97d 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[97e 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[97f 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[980 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQSz51Uvna8yPXOsFiK0lrATAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCQ4MADH/9mNGUX+hMQpZiLF6h8i -ZjU4nsBs6bNYuDTDG5jRPUQv8D/iq6W1LNxYmDrhQYKCTbPu/VdMPV0Rq2KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEIMCQLzFxR1GD4PfzGwKxJl3QrjcKs4T4RfeLMaxQzLVHMAoG -CCqGSM49BAMCA0gAMEUCIQDMxPb5wZsYR3Gt6nJuMWIXZGOTf6uo4YpTuse1wiXg -0AIgDkVHrGEnbkFxqxgt8pg208FkeffnVYKWaP1vbqOvSCc= ------END CERTIFICATE----- -[981 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A ------END CERTIFICATE----- -[982 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A ------END CERTIFICATE----- -[983 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[984 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[985 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[986 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[987 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[988 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[989 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[98a 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[98b 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[98c 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[98d 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[98e 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[98f 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMHqdqUjcmgTL6PM2SYraQ8wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCm1cgwgRgenNBhn9XuZzRqHwIVn4fTIY8Hs30/Nco7jowHqo5u7IRXLBisnkn4I -z/KOnwgxrbz0DM53FvV/eaajXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIPkf6WVvtt9c0qvn754r -GzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQCWibVYoMvHsX6x -OzsrrPqhLYbISd4LiuLfCiL5DkTTqgIgZcBgbd5FzKyzrTzKpT9W+oJCmkAPA0mf -xEFWkMtGbgY= ------END CERTIFICATE----- -[990 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[991 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== ------END CERTIFICATE----- -[992 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[993 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[994 12-12 14:19:43.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[995 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[996 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[997 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[998 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[999 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[99a 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[99b 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[99c 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQX12XlOJCiGQjj0SCCpyR5DAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -n1pLn/pEFanA1xgQ0vqvyZEf86ScaxUZG4Bd0QeQzGnpiRlXQtapwtNprIw8JwZG -+8fCnyEydbciSS7fF7MFLaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgHTQcxsqYNJXT6OkLNFNs -SeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDSAAwRQIhAJp9vjfnjnHFNXaY -uJkMca1+pKBc+IfF52BBVLFib2YVAiBLS8ShowlCD+uj8i9ftv1ZOZDeZEeJv07Y -cNvAXU8LlQ== ------END CERTIFICATE----- -[99d 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[99e 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW ------END CERTIFICATE----- -[99f 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[9a0 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[9a1 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[9a2 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[9a3 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[9a4 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[9a5 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[9a6 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[9a7 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[9a8 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[9a9 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[9aa 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[9ab 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[9ac 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[9ad 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[9ae 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[9af 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[9b0 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[9b1 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[9b2 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[9b3 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[9b4 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[9b5 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[9b6 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[9b7 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[9b8 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[9b9 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[9ba 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[9bb 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[9bc 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[9bd 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[9be 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[9bf 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[9c0 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[9c1 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[9c2 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[9c3 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[9c4 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[9c5 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[9c6 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[9c7 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[9c8 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -[9c9 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[9ca 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[9cb 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[9cc 12-12 14:19:43.33 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[9cd 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[9ce 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[9cf 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[9d0 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[9d1 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[9d2 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[9d3 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[9d4 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[9d5 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[9d6 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[9d7 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[9d8 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[9d9 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[9da 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[9db 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[9dc 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[9dd 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[9de 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[9df 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[9e0 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[9e1 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[9e2 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[9e3 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[9e4 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[9e5 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[9e6 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[9e7 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[9e8 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[9e9 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[9ea 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[9eb 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[9ec 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[9ed 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[9ee 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[9ef 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[9f0 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[9f1 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[9f2 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[9f3 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...B6FA6CC63579766702F2D59568356AF2 -[9f4 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: EB4424609345F17855040034CC7F16366B2B2BD61A26E49994B2373649080ABD -[9f5 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 2 to 3, setting lastConfigBlockNum from 1 to 2 -[9f6 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[9f7 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[9f8 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[9f9 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[9fa 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[9fb 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...B6FA6CC63579766702F2D59568356AF2 -[9fc 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: BD8C45264FC22347355103694C09621774B8B055F799824ACC49AD61A701F2BF -[9fd 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] commitBlock.Append.Append.writeBlock -> DEBU Wrote block 2 -[9fe 12-12 14:19:43.34 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 2 -[9ff 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[a00 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.6:53324 -[a01 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.6:53324 -[a02 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[a03 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a04 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[a05 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a06 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[a07 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[a08 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQfxCgdHnKWSB1ck7NCIf+4jAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEttPjC3up1Q77jKnXYIA7Wu2YrLoAKqPa -Cj9pdoCw3vR9Imf/c8dgnaRHBvU+dgxN5en1+n4tkq0DFamZ843WpqNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAKrUoMIb -2WwA9949iLHY+idNaQnD9S2wuUoml0JPNu/NAiBQlxXukEi49c9p1+nROwn0IuOM -3NSyqtTUGH26cyVUgw== ------END CERTIFICATE----- -[a09 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e458 gate 1513088386374261500 evaluation starts -[a0a 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e458 signed by 0 principal evaluation starts (used [false]) -[a0b 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e458 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749516678436764486e4b57534231636b374e4349662b346a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741457474506a43337570315137376a4b6e585949413757753259724c6f414b7150610a436a3970646f437733765239496d662f633864676e6152484276552b6467784e35656e312b6e34746b71304446616d5a3834335770714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a3045417749445341417752514968414b72556f4d49620a3257774139393439694c48592b69644e61516e443953327775556f6d6c304a504e752f4e416942516c7858756b45693439633970312b6e524f776e3049754f4d0a334e537971745455474832366379565567773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[a0c 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e458 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[a0d 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e458 principal evaluation fails -[a0e 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e458 gate 1513088386374261500 evaluation fails -[a0f 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -[a10 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[a11 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -[a12 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -[a13 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[a14 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[a15 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a16 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[a17 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e498 gate 1513088386376027800 evaluation starts -[a18 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e498 signed by 0 principal evaluation starts (used [false]) -[a19 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e498 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749516678436764486e4b57534231636b374e4349662b346a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741457474506a43337570315137376a4b6e585949413757753259724c6f414b7150610a436a3970646f437733765239496d662f633864676e6152484276552b6467784e35656e312b6e34746b71304446616d5a3834335770714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a3045417749445341417752514968414b72556f4d49620a3257774139393439694c48592b69644e61516e443953327775556f6d6c304a504e752f4e416942516c7858756b45693439633970312b6e524f776e3049754f4d0a334e537971745455474832366379565567773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[a1a 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[a1b 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[a1c 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e498 principal matched by identity 0 -[a1d 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 0f a5 8f 8c 77 e1 b0 20 a3 25 4d 9a 13 96 30 89 |....w.. .%M...0.| -00000010 f0 94 4a e2 a3 f2 1c 92 a4 c1 c5 b9 c0 42 d9 03 |..J..........B..| -[a1e 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7c 7b 86 0d f3 5d 46 04 51 ce 10 84 |0D. |{...]F.Q...| -00000010 e7 07 db 40 24 17 8a 63 b0 30 10 78 33 50 84 de |...@$..c.0.x3P..| -00000020 aa 58 b5 39 02 20 79 4d 1f 3f 42 93 85 c8 e1 c3 |.X.9. yM.?B.....| -00000030 18 4c d4 8d 36 af d6 6e bc 10 31 a9 49 e3 2a 3d |.L..6..n..1.I.*=| -00000040 57 62 eb 45 3f ba |Wb.E?.| -[a1f 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e498 principal evaluation succeeds for identity 0 -[a20 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e498 gate 1513088386376027800 evaluation succeeds -[a21 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -[a22 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[a23 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -[a24 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[a25 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[a26 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[a27 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203880e0) start: > stop: > from 172.18.0.6:53324 -[a28 12-12 14:19:46.38 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 1 -[a29 12-12 14:19:46.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203880e0) for 172.18.0.6:53324 -[a2a 12-12 14:19:46.39 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 2 -[a2b 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203880e0) for 172.18.0.6:53324 -[a2c 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[a2d 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.5:33552 -[a2e 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.5:33552 -[a2f 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[a30 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a31 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[a32 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a33 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[a34 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[a35 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALADzPPE97iyHtSxn9RqjfgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDEwWhcNMjcxMjEwMDg0MDEw +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHbbFgxKR+4UJyrZzRgvS6CFZZxY7Pbi -Odp+osNIcE3Xvigd0wdt9TBstawIYqqncekYq/Gow7DZmYdR7nOFFL6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPkf6WVvtt9c -0qvn754rGzpR/8VkIKQlXqxBIQzniKlXMAoGCCqGSM49BAMCA0gAMEUCIQC7onwy -Xg1MdE8XzzNqF0O4QX5DPfr1EaZNMNriGihkKwIgDrlllaiu+/kP74QuITuz6eUr -Zs7vWf/TFL+lCFpVqNE= +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== -----END CERTIFICATE----- -[a36 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e058 gate 1513088386503629900 evaluation starts -[a37 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e058 signed by 0 principal evaluation starts (used [false]) -[a38 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e058 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c41447a50504539376979487453786e3952716a666777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45794d4467304d4445775768634e4d6a63784d6a45774d4467304d4445770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424862624667784b522b34554a79725a7a526776533643465a5a7859375062690a4f64702b6f734e4963453358766967643077647439544273746177495971716e63656b59712f476f7737445a6d596452376e4f46464c366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506b6636575676747439630a3071766e37353472477a70522f38566b494b516c5871784249517a6e694b6c584d416f4743437147534d343942414d43413067414d455543495143376f6e77790a5867314d644538587a7a4e7146304f34515835445066723145615a4e4d4e72694769686b4b77496744726c6c6c6169752b2f6b50373451754954757a366555720a5a73377657662f54464c2b6c43467056714e453d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[a39 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e058 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[a3a 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e058 principal evaluation fails -[a3b 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e058 gate 1513088386503629900 evaluation fails -[a3c 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -[a3d 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[a3e 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -[a3f 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -[a40 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[a41 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[a42 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a43 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[a44 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0a0 gate 1513088386505268400 evaluation starts -[a45 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0a0 signed by 0 principal evaluation starts (used [false]) -[a46 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0a0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c41447a50504539376979487453786e3952716a666777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45794d4467304d4445775768634e4d6a63784d6a45774d4467304d4445770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424862624667784b522b34554a79725a7a526776533643465a5a7859375062690a4f64702b6f734e4963453358766967643077647439544273746177495971716e63656b59712f476f7737445a6d596452376e4f46464c366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506b6636575676747439630a3071766e37353472477a70522f38566b494b516c5871784249517a6e694b6c584d416f4743437147534d343942414d43413067414d455543495143376f6e77790a5867314d644538587a7a4e7146304f34515835445066723145615a4e4d4e72694769686b4b77496744726c6c6c6169752b2f6b50373451754954757a366555720a5a73377657662f54464c2b6c43467056714e453d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[a47 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[a48 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[a49 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0a0 principal matched by identity 0 -[a4a 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 97 99 61 58 3f 92 90 8f ab 55 59 b9 95 6d 1a 16 |..aX?....UY..m..| -00000010 35 84 b1 5f 49 4f e0 5d 70 93 c7 a5 4d ce d8 6e |5.._IO.]p...M..n| -[a4b 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 1d c6 e5 a5 8d 7d 9b 89 39 c9 33 9d |0D. .....}..9.3.| -00000010 c1 e0 1b 10 bc 35 27 86 9d 2d a8 fe 04 56 9b 46 |.....5'..-...V.F| -00000020 ae c3 93 52 02 20 62 6d 92 c1 f6 b3 d0 a8 47 36 |...R. bm......G6| -00000030 5d 31 a6 69 91 21 44 b7 ad 24 58 f6 78 7e 4a 11 |]1.i.!D..$X.x~J.| -00000040 af 3e ef 1a 7b 18 |.>..{.| -[a4c 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0a0 principal evaluation succeeds for identity 0 -[a4d 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0a0 gate 1513088386505268400 evaluation succeeds -[a4e 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -[a4f 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[a50 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -[a51 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[a52 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[a53 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[a54 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4200d3ce0) start: > stop: > from 172.18.0.5:33552 -[a55 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 1 -[a56 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3ce0) for 172.18.0.5:33552 -[a57 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 2 -[a58 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3ce0) for 172.18.0.5:33552 -[a59 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[a5a 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.4:60104 -[a5b 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.4:60104 -[a5c 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[a5d 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a5e 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[a5f 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a60 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[a61 12-12 14:19:46.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[a62 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQHUKqjkG4EzqFzYBhVKiDXDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEvvO9+zYtRj0iGF59mG/hah0Pu/RoFfei -f+cdfmT/meA3Hq5c8VwZvcDrd9LOWzhpbhVWPSE++iqWuBNuNZc55qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgYyekaRBc -HJDyS9hMK2kIbliGQhn65H8LUHIDlt22I8ECIBg0+i2f6Oc4x1ME19m5p5oSf2n8 -iyI6uwCYclK0dU1/ +[0e4 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== -----END CERTIFICATE----- -[a63 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116038 gate 1513088386670549000 evaluation starts -[a64 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116038 signed by 0 principal evaluation starts (used [false]) -[a65 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116038 processing identity 0 with bytes of 0a074f7267324d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b67417749424167495148554b716a6b4734457a71467a594268564b69445844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544661467730794e7a45794d5441774f4451774d5446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414576764f392b7a5974526a3069474635396d472f6861683050752f526f466665690a662b6364666d542f6d654133487135633856775a7663447264394c4f577a6870626856575053452b2b69715775424e754e5a633535714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416748545163787371594e4a58540a364f6b4c4e464e7353654b6b556e30444a50324c4e444f596a3261704a6a3077436759494b6f5a497a6a30454177494452774177524149675979656b615242630a484a44795339684d4b326b49626c694751686e363548384c554849446c74323249384543494267302b693266364f633478314d4531396d3570356f5366326e380a6979493675774359636c4b306455312f0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[a66 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116038 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -[a67 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116038 principal evaluation fails -[a68 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116038 gate 1513088386670549000 evaluation fails -[a69 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -[a6a 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[a6b 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -[a6c 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -[a6d 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[a6e 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[a6f 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a70 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[a71 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116278 gate 1513088386671756900 evaluation starts -[a72 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116278 signed by 0 principal evaluation starts (used [false]) -[a73 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116278 processing identity 0 with bytes of 0a074f7267324d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b67417749424167495148554b716a6b4734457a71467a594268564b69445844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544661467730794e7a45794d5441774f4451774d5446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414576764f392b7a5974526a3069474635396d472f6861683050752f526f466665690a662b6364666d542f6d654133487135633856775a7663447264394c4f577a6870626856575053452b2b69715775424e754e5a633535714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416748545163787371594e4a58540a364f6b4c4e464e7353654b6b556e30444a50324c4e444f596a3261704a6a3077436759494b6f5a497a6a30454177494452774177524149675979656b615242630a484a44795339684d4b326b49626c694751686e363548384c554849446c74323249384543494267302b693266364f633478314d4531396d3570356f5366326e380a6979493675774359636c4b306455312f0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[a74 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116278 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -[a75 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116278 principal evaluation fails -[a76 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116278 gate 1513088386671756900 evaluation fails -[a77 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[a78 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[a79 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[a7a 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116280 gate 1513088386672608200 evaluation starts -[a7b 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116280 signed by 0 principal evaluation starts (used [false]) -[a7c 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116280 processing identity 0 with bytes of 0a074f7267324d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b67417749424167495148554b716a6b4734457a71467a594268564b69445844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544661467730794e7a45794d5441774f4451774d5446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414576764f392b7a5974526a3069474635396d472f6861683050752f526f466665690a662b6364666d542f6d654133487135633856775a7663447264394c4f577a6870626856575053452b2b69715775424e754e5a633535714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416748545163787371594e4a58540a364f6b4c4e464e7353654b6b556e30444a50324c4e444f596a3261704a6a3077436759494b6f5a497a6a30454177494452774177524149675979656b615242630a484a44795339684d4b326b49626c694751686e363548384c554849446c74323249384543494267302b693266364f633478314d4531396d3570356f5366326e380a6979493675774359636c4b306455312f0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[a7d 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[a7e 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[a7f 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116280 principal matched by identity 0 -[a80 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 fd 4c e0 f5 73 80 7f dc 6d 1e 0e d7 59 ab d9 20 |.L..s...m...Y.. | -00000010 1c 2c 89 83 61 f3 0f 0a 82 25 5e 30 cc 1d cb 42 |.,..a....%^0...B| -[a81 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8b 79 cf fa 20 ba 7e a4 70 f8 90 |0E.!..y.. .~.p..| -00000010 aa f3 eb 16 64 6d a4 42 49 39 d6 9c 80 44 fa a8 |....dm.BI9...D..| -00000020 69 81 95 e2 43 02 20 52 4f 18 21 f1 e0 92 d9 e5 |i...C. RO.!.....| -00000030 30 7b 5e 2b a0 d7 46 f6 a3 e7 83 1f b7 13 7b db |0{^+..F.......{.| -00000040 7b 27 5e 0f 55 f4 b7 |{'^.U..| -[a82 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116280 principal evaluation succeeds for identity 0 -[a83 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116280 gate 1513088386672608200 evaluation succeeds -[a84 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers -[a85 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[a86 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -[a87 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[a88 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[a89 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[a8a 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420112980) start: > stop: > from 172.18.0.4:60104 -[a8b 12-12 14:19:46.67 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 1 -[a8c 12-12 14:19:46.68 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420112980) for 172.18.0.4:60104 -[a8d 12-12 14:19:46.68 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 2 -[a8e 12-12 14:19:46.68 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420112980) for 172.18.0.4:60104 -[a8f 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[a90 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.2:35612 -[a91 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.2:35612 -[a92 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[a93 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a94 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[a95 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a96 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[a97 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[a98 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAPGelOdxXc9oj513U/gIAoswCgYIKoZIzj0EAwIwczEL +[0e5 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +[0e6 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[0e7 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[0e8 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[0e9 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[0ea 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +[0eb 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[0ec 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[0ed 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[0ee 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +[0ef 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAMt+4ybOK1r7B8eavLVTMBUwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjEyMDg0MDExWhcNMjcxMjEwMDg0MDEx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABP48rqtcNNXgWStMJAAcSs0pMybkXlxN -g+bvwZCmkq1DbIGJwn5LGRQJ/dnP/9vvQCckEiPkarSuoH3FtkvHuKejTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIB00HMbKmDSV -0+jpCzRTbEnipFJ9AyT9izQzmI9mqSY9MAoGCCqGSM49BAMCA0cAMEQCIFhNymPu -7ilbI62JiuL9JUYa+f6+J31qLbVVou4nkbwIAiBG8ex/sGf2cTf5F51gUhhCQZ42 -dERXC0iEeQyYe63F5w== +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPGrtJtHj1Ql02gq7I0ZQQKJwvtZhp0t3rCwF1cFILTHIBM4phJ/ZYJQa1lb12pO +sxSxuEvRGTFcZXtunUc0SeWjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICSqVyrJerF7YoXDKKeV +2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCIB+psiek7FqP18l1 +3s2anbtfpiGTHbAnm2BihpD9sRPjAiAIvsdyfn+nb2bCQBK6sodbO+LxSkuZulkP +oMR3yCH/eA== -----END CERTIFICATE----- -[a99 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201163a8 gate 1513088386827388900 evaluation starts -[a9a 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163a8 signed by 0 principal evaluation starts (used [false]) -[a9b 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163a8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952415047656c4f64785863396f6a353133552f6749416f7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45794d4467304d4445785768634e4d6a63784d6a45774d4467304d4445780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142503438727174634e4e58675753744d4a414163537330704d79626b586c784e0a672b6276775a436d6b7131446249474a776e354c4752514a2f646e502f3976765143636b4569506b617253756f483346746b7648754b656a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149423030484d624b6d4453560a302b6a70437a525462456e6970464a3941795439697a517a6d49396d715359394d416f4743437147534d343942414d43413063414d4551434946684e796d50750a37696c624936324a69754c394a5559612b66362b4a3331714c6256566f75346e6b627749416942473865782f73476632635466354635316755686843515a34320a6445525843306945655179596536334635773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[a9c 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -[a9d 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163a8 principal evaluation fails -[a9e 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201163a8 gate 1513088386827388900 evaluation fails -[a9f 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -[aa0 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[aa1 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -[aa2 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -[aa3 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[aa4 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[aa5 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[aa6 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[aa7 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201163c0 gate 1513088386828403700 evaluation starts -[aa8 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163c0 signed by 0 principal evaluation starts (used [false]) -[aa9 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163c0 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952415047656c4f64785863396f6a353133552f6749416f7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45794d4467304d4445785768634e4d6a63784d6a45774d4467304d4445780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142503438727174634e4e58675753744d4a414163537330704d79626b586c784e0a672b6276775a436d6b7131446249474a776e354c4752514a2f646e502f3976765143636b4569506b617253756f483346746b7648754b656a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149423030484d624b6d4453560a302b6a70437a525462456e6970464a3941795439697a517a6d49396d715359394d416f4743437147534d343942414d43413063414d4551434946684e796d50750a37696c624936324a69754c394a5559612b66362b4a3331714c6256566f75346e6b627749416942473865782f73476632635466354635316755686843515a34320a6445525843306945655179596536334635773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[aaa 12-12 14:19:46.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163c0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -[aab 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163c0 principal evaluation fails -[aac 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201163c0 gate 1513088386828403700 evaluation fails -[aad 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[aae 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[aaf 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[ab0 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e238 gate 1513088386830872800 evaluation starts -[ab1 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 signed by 0 principal evaluation starts (used [false]) -[ab2 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952415047656c4f64785863396f6a353133552f6749416f7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45794d4467304d4445785768634e4d6a63784d6a45774d4467304d4445780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142503438727174634e4e58675753744d4a414163537330704d79626b586c784e0a672b6276775a436d6b7131446249474a776e354c4752514a2f646e502f3976765143636b4569506b617253756f483346746b7648754b656a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149423030484d624b6d4453560a302b6a70437a525462456e6970464a3941795439697a517a6d49396d715359394d416f4743437147534d343942414d43413063414d4551434946684e796d50750a37696c624936324a69754c394a5559612b66362b4a3331714c6256566f75346e6b627749416942473865782f73476632635466354635316755686843515a34320a6445525843306945655179596536334635773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[ab3 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[ab4 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[ab5 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 principal matched by identity 0 -[ab6 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 01 ec 46 dd ff c9 0e 52 26 84 e0 17 22 82 bf 25 |..F....R&..."..%| -00000010 02 93 89 0e a6 7c 2c 1e a6 02 81 60 52 47 65 35 |.....|,....`RGe5| -[ab7 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 54 65 9c c3 22 82 17 db fb 72 0c e2 |0D. Te.."....r..| -00000010 fc aa 51 b1 b1 3c ca 37 6c 3a b5 fa 82 07 1c 0a |..Q..<.7l:......| -00000020 50 a2 1f ff 02 20 1e a9 76 f5 83 0b 4f e7 0f 56 |P.... ..v...O..V| -00000030 61 6f b1 c7 c9 f0 89 67 ee 67 cf 79 74 d3 04 b9 |ao.....g.g.yt...| -00000040 75 06 47 7f bf 4c |u.G..L| -[ab8 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 principal evaluation succeeds for identity 0 -[ab9 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e238 gate 1513088386830872800 evaluation succeeds -[aba 12-12 14:19:46.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers -[abb 12-12 14:19:46.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[abc 12-12 14:19:46.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -[abd 12-12 14:19:46.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[abe 12-12 14:19:46.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[abf 12-12 14:19:46.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[ac0 12-12 14:19:46.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420307b20) start: > stop: > from 172.18.0.2:35612 -[ac1 12-12 14:19:46.84 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 1 -[ac2 12-12 14:19:46.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420307b20) for 172.18.0.2:35612 -[ac3 12-12 14:19:46.86 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 2 -[ac4 12-12 14:19:46.86 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420307b20) for 172.18.0.2:35612 -[ac5 12-12 14:19:49.42 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[ac6 12-12 14:19:49.42 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:36824 -[ac7 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:36824 with txid 'd107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d' of type ENDORSER_TRANSACTION -[ac8 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[ac9 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[aca 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[acb 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[acc 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[acd 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[ace 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw +[0f0 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= +-----END CERTIFICATE----- +[0f1 12-15 03:49:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= +-----END CERTIFICATE----- +[0f2 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +[0f3 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +[0f4 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +[0f5 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +[0f6 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +[0f7 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +[0f8 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[0f9 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[0fa 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[0fb 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[0fc 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +[0fd 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +[0fe 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +[0ff 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +[100 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +[101 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +[102 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy ChannelCreationPolicy for Channel/Application +[103 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Application/Writers +[104 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[105 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins +[106 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[107 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Application/Readers +[108 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[109 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[10a 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[10b 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[10c 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[10d 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[10e 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[10f 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[110 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[111 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[112 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[113 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[114 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[115 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[116 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[117 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[118 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[119 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[11a 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[11b 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[11c 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[11d 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[11e 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[11f 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[120 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[121 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[122 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[123 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[124 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +[125 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[126 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[127 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[128 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[129 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[12a 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[12b 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[12c 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[12d 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[12e 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[12f 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[130 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[131 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[132 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[133 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[134 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[135 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[136 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[137 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[138 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[139 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[13a 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[13b 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Admins +[13c 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Writers +[13d 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Capabilities +[13e 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Readers +[13f 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +[140 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy ChannelCreationPolicy +[141 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] +[142 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[143 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +[144 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +[145 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[146 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +[147 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[148 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[149 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[14a 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy == +[14b 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[14c 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +[14d 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[14e 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== +-----END CERTIFICATE----- +[14f 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c3b8 gate 1513309754259765800 evaluation starts +[150 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c3b8 signed by 0 principal evaluation starts (used [false]) +[151 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c3b8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b78664b6f3271717459665054415039526b4136796f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455775768634e4d6a63784d6a457a4d444d7a4e5455770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424c493853704e726b4330415968693747496377353237505056364e75682b410a6b6f6b7670516355436746536d373374595a375141556c5446384e2f5642424e51436e464c326b72756b4f4c6431496f4237776e5a6e756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4376615250365a53446c0a64644a716e6e314d784c776b464f716d394d5877324c474f6b38584c72424e574d416f4743437147534d343942414d43413063414d455143494235334a6546780a4f665644446c692b4a6955636b463459376b4d64595550714778477373755948305570694169416f7159577a596a4f4c397071677874495430332f59717370630a62714569362f6c59326b4b30457447526e413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[152 12-15 03:49:14.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[153 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c3b8 principal matched by identity 0 +[154 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 29 48 f2 2a 49 b8 f5 f0 cd 3f ad 85 65 44 b2 6b |)H.*I....?..eD.k| +00000010 cb 3e 0a 8c c7 e1 7d 9a 8d 3a d9 33 bc 75 f0 cb |.>....}..:.3.u..| +[155 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 9a ce 8e 4f 7d 0d 27 e3 6c 56 d0 |0E.!....O}.'.lV.| +00000010 6a e2 73 30 89 26 39 32 e6 6c c7 1f 22 25 41 bc |j.s0.&92.l.."%A.| +00000020 aa 6f 30 8a e0 02 20 29 6a 95 68 cd 31 0f 5b 0a |.o0... )j.h.1.[.| +00000030 e4 3f ce 07 58 04 ac 35 f8 2c 1e a3 52 3f bc 46 |.?..X..5.,..R?.F| +00000040 c6 ca 9f e4 6c 91 f0 |....l..| +[156 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c3b8 principal evaluation succeeds for identity 0 +[157 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c3b8 gate 1513309754259765800 evaluation succeeds +[158 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +[159 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins +[15a 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/ChannelCreationPolicy +[15b 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy +[15c 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[15d 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[15e 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[15f 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[160 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[161 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[162 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[163 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[164 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[165 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[166 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[167 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[168 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[169 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[16a 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[16b 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[16c 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[16d 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[16e 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[16f 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[170 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[171 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[172 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[173 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608BA8CCDD10522...C2A7A9403CE08A7D9A31FA90EA582763 +[174 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: 2A96636C3B02B56056579AF12BAE4DAE77AD3A8288DCA022FF309CA776F069C4 +[175 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[176 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[177 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[178 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[179 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AC9060A1708041A0608BA8CCDD10522...DC6C8FE16E4D2CD83A424CB28520F7FF +[17a 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: 3B3092B1C36802338BABDF2970B02EE52C7B8431FB1F22980D436A4E6DB35235 +[17b 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +[17c 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[17d 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +[17e 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[17f 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +[180 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[181 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv +zQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd +ibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv +zjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg= +-----END CERTIFICATE----- +[182 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c4c0 gate 1513309754263396400 evaluation starts +[183 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c4c0 signed by 0 principal evaluation starts (used [false]) +[184 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c4c0 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749514b77793676416c34704643476846726d4a6d5a305554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e434141534b53436b2b3274316e61597867417059614f3030613970376b47316d6d4a31302f68744e434a49535076547555513163760a7a514f2b694e39366d4c754d6e693475746b416466616b597459576963416830365736636f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a44416967434438636f50455972677065567673447146314b6e6b5956675845646c78640a696256696561725354454e324e54414b42676771686b6a4f5051514441674e4841444245416941794f594647594256623938546a6d6e4451682f56544e5247760a7a6a6643644169736f594355773935725177496744463834756136676e7a50336b444f5530345551564b6b307553414469744a32354b7a31705668694b51673d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[185 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[186 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[187 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c4c0 principal matched by identity 0 +[188 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 3b 30 92 b1 c3 68 02 33 8b ab df 29 70 b0 2e e5 |;0...h.3...)p...| +00000010 2c 7b 84 31 fb 1f 22 98 0d 43 6a 4e 6d b3 52 35 |,{.1.."..CjNm.R5| +[189 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 03 65 f0 29 5f 1e 91 ff 2b c5 a4 32 |0D. .e.)_...+..2| +00000010 a4 1d 46 86 6f 3b 71 bd f9 5c 35 fb f3 b6 8b 8f |..F.o;q..\5.....| +00000020 9c e5 af ee 02 20 38 78 bc 9f 30 b2 a3 00 0b da |..... 8x..0.....| +00000030 d6 3d b4 82 9c 51 d7 8f 28 84 e2 8b ad 47 47 37 |.=...Q..(....GG7| +00000040 34 95 87 fc 4c 51 |4...LQ| +[18a 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c4c0 principal evaluation succeeds for identity 0 +[18b 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c4c0 gate 1513309754263396400 evaluation succeeds +[18c 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers +[18d 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +[18e 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers +[18f 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +[190 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +[191 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +[192 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[193 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[194 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[195 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[196 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[197 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[198 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[199 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[19a 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[19b 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[19c 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[19d 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[19e 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[19f 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[1a0 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[1a1 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[1a2 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[1a3 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[1a4 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[1a5 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICLzCCAdWgAwIBAgIQGXf5zEgjlejkE1rJW2znwDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowaTELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFSKPRsXnXvaTTqRKjkTRYYoPjGg +TgXRAoMQwI+9AaLXTSL+AsApwlxedr+PJ+UgfBNcxey226YSZRJqLeiH/TajXzBd +MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +Af8wKQYDVR0OBCIEIPxyg8RiuCl5W+wOoXUqeRhWBcR2XF2JtWJ5qtJMQ3Y1MAoG +CCqGSM49BAMCA0gAMEUCIQCoRrlZYPh0Qnsp3Z9KitmTDkRqi6JyR4RLiOyfv8Tf +QgIgdHbFqXGTZ0HFQmknUFd5DD4TTltv8Ijmfm8J1skS4jc= +-----END CERTIFICATE----- +[1a6 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +-----END CERTIFICATE----- +[1a7 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +-----END CERTIFICATE----- +[1a8 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[1a9 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[1aa 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[1ab 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[1ac 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[1ad 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[1ae 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[1af 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +[1b0 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[1b1 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[1b2 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[1b3 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[1b4 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQShjAwe+6sxoSMZ8UrYKOcTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv -pydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c -gHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf -OwJpoynNCyKsWozuVw== +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +GwyyfDLH07dFVkEvxJDGOKGevUcaYHphZvhzV78MBXVwIEGIENk7Zs8x+dx6iwIK +LOGmXxq/Wqd4qLs6kFyZvqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgsK9pE/plIOV10mqefUzE +vCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAL7xXrYD1fkzcpxi +yyZhFfEvMDWCoUicQw2b+c3GQ6OuAiA0KtNuH4yS4+c13W9Lsd28XNQK88FkwB2J +QR9yhJE7rA== -----END CERTIFICATE----- -[acf 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3d0 gate 1513088396960437500 evaluation starts -[ad0 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3d0 signed by 0 principal evaluation starts (used [false]) -[ad1 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3d0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[ad2 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3d0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[ad3 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3d0 principal evaluation fails -[ad4 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3d0 gate 1513088396960437500 evaluation fails -[ad5 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -[ad6 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -[ad7 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -[ad8 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -[ad9 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[ada 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -[adb 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[adc 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -[add 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3e0 gate 1513088396961875100 evaluation starts -[ade 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e0 signed by 0 principal evaluation starts (used [false]) -[adf 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[ae0 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[ae1 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e0 principal evaluation fails -[ae2 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3e0 gate 1513088396961875100 evaluation fails -[ae3 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers -[ae4 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -[ae5 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -[ae6 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e238 gate 1513088396963141400 evaluation starts -[ae7 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 signed by 0 principal evaluation starts (used [false]) -[ae8 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[ae9 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[aea 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[aeb 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 principal matched by identity 0 -[aec 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 fb 32 b1 50 a3 8f 40 16 a9 f3 89 b6 d3 de 29 55 |.2.P..@.......)U| -00000010 44 c8 b5 8d 73 41 bb 60 82 05 b7 76 11 2a 56 95 |D...sA.`...v.*V.| -[aed 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 57 90 03 73 0d 3c fc 1f 60 e9 ed b0 |0D. W..s.<..`...| -00000010 8e d0 42 85 b6 e9 74 cd 9a 75 1a 53 d1 e6 be 3c |..B...t..u.S...<| -00000020 82 a4 87 6e 02 20 6f 92 6a 2c 57 e3 82 cc 43 c3 |...n. o.j,W...C.| -00000030 88 b2 37 5b ee 1c 4b 0f d1 3d 62 70 d0 cc bd 0f |..7[..K..=bp....| -00000040 aa d4 40 c3 65 fd |..@.e.| -[aee 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 principal evaluation succeeds for identity 0 -[aef 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e238 gate 1513088396963141400 evaluation succeeds -[af0 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers -[af1 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -[af2 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -[af3 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -[af4 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[af5 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[af6 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:36824 -[af7 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -[af8 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:36824: rpc error: code = Canceled desc = context canceled -[af9 12-12 14:19:56.96 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[afa 12-12 14:19:57.06 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[afb 12-12 14:19:57.06 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:36832 -[afc 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -[afd 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[afe 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[aff 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[b00 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[b01 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...CA99CE80B8FE29256E2A87370395FD73 -[b02 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 76418EF992EB9C7837BF3050D891F6CC89F2DDD4DC078924E4BF958A76653050 -[b03 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[b04 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[b05 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[b06 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[b07 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[b08 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...CA99CE80B8FE29256E2A87370395FD73 -[b09 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 7CEBF42B6F5D32D0304FDC1AE3CD4AAD907155866E02F0149C7B83187C218750 -[b0a 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] commitBlock.Append.Append.writeBlock -> DEBU Wrote block 3 -[b0b 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 3 -[b0c 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 3 -[b0d 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203880e0) for 172.18.0.6:53324 -[b0e 12-12 14:19:58.96 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> WARN [channel: businesschannel] Error sending to 172.18.0.6:53324: rpc error: code = Unavailable desc = transport is closing -[b0f 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[b10 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 3 -[b11 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420307b20) for 172.18.0.2:35612 -[b12 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> WARN [channel: businesschannel] Error sending to 172.18.0.2:35612: rpc error: code = Unavailable desc = transport is closing -[b13 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[b14 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 3 -[b15 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420112980) for 172.18.0.4:60104 -[b16 12-12 14:19:58.97 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 3 -[b17 12-12 14:19:58.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3ce0) for 172.18.0.5:33552 -[b18 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:36832 with txid '21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea' of type ENDORSER_TRANSACTION -[b19 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[b1a 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b1b 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[b1c 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b1d 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[b1e 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[b1f 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw +[1b5 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== +-----END CERTIFICATE----- +[1b6 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== +-----END CERTIFICATE----- +[1b7 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +[1b8 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[1b9 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[1ba 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[1bb 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[1bc 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +[1bd 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[1be 12-15 03:49:14.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[1bf 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[1c0 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +[1c1 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAMt+4ybOK1r7B8eavLVTMBUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPGrtJtHj1Ql02gq7I0ZQQKJwvtZhp0t3rCwF1cFILTHIBM4phJ/ZYJQa1lb12pO +sxSxuEvRGTFcZXtunUc0SeWjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICSqVyrJerF7YoXDKKeV +2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCIB+psiek7FqP18l1 +3s2anbtfpiGTHbAnm2BihpD9sRPjAiAIvsdyfn+nb2bCQBK6sodbO+LxSkuZulkP +oMR3yCH/eA== +-----END CERTIFICATE----- +[1c2 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= +-----END CERTIFICATE----- +[1c3 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= +-----END CERTIFICATE----- +[1c4 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +[1c5 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +[1c6 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +[1c7 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +[1c8 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +[1c9 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +[1ca 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[1cb 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[1cc 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[1cd 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[1ce 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +[1cf 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +[1d0 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +[1d1 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +[1d2 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +[1d3 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +[1d4 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy ChannelCreationPolicy for Channel/Application +[1d5 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Application/Readers +[1d6 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[1d7 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Application/Writers +[1d8 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[1d9 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins +[1da 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[1db 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[1dc 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[1dd 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[1de 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[1df 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[1e0 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[1e1 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[1e2 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[1e3 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[1e4 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[1e5 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[1e6 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[1e7 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[1e8 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[1e9 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[1ea 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[1eb 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[1ec 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[1ed 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[1ee 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[1ef 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[1f0 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[1f1 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[1f2 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[1f3 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[1f4 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[1f5 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[1f6 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +[1f7 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[1f8 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[1f9 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[1fa 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[1fb 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[1fc 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[1fd 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[1fe 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[1ff 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[200 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[201 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[202 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[203 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[204 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[205 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[206 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[207 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[208 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[209 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[20a 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[20b 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[20c 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[20d 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Capabilities +[20e 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Admins +[20f 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Readers +[210 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +[211 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy ChannelCreationPolicy +[212 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] +[213 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +[214 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[215 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +[216 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[217 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +[218 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[219 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[21a 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[21b 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy == +[21c 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[21d 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == +[21e 12-15 03:49:14.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[21f 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== +-----END CERTIFICATE----- +[220 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c2e8 gate 1513309754280332000 evaluation starts +[221 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c2e8 signed by 0 principal evaluation starts (used [false]) +[222 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c2e8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b78664b6f3271717459665054415039526b4136796f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455775768634e4d6a63784d6a457a4d444d7a4e5455770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424c493853704e726b4330415968693747496377353237505056364e75682b410a6b6f6b7670516355436746536d373374595a375141556c5446384e2f5642424e51436e464c326b72756b4f4c6431496f4237776e5a6e756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4376615250365a53446c0a64644a716e6e314d784c776b464f716d394d5877324c474f6b38584c72424e574d416f4743437147534d343942414d43413063414d455143494235334a6546780a4f665644446c692b4a6955636b463459376b4d64595550714778477373755948305570694169416f7159577a596a4f4c397071677874495430332f59717370630a62714569362f6c59326b4b30457447526e413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[223 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c2e8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +[224 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c2e8 principal evaluation fails +[225 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c2e8 gate 1513309754280332000 evaluation fails +[226 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Admins +[227 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins +[228 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +[229 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c2f8 gate 1513309754281088000 evaluation starts +[22a 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c2f8 signed by 0 principal evaluation starts (used [false]) +[22b 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c2f8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b78664b6f3271717459665054415039526b4136796f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455775768634e4d6a63784d6a457a4d444d7a4e5455770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424c493853704e726b4330415968693747496377353237505056364e75682b410a6b6f6b7670516355436746536d373374595a375141556c5446384e2f5642424e51436e464c326b72756b4f4c6431496f4237776e5a6e756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4376615250365a53446c0a64644a716e6e314d784c776b464f716d394d5877324c474f6b38584c72424e574d416f4743437147534d343942414d43413063414d455143494235334a6546780a4f665644446c692b4a6955636b463459376b4d64595550714778477373755948305570694169416f7159577a596a4f4c397071677874495430332f59717370630a62714569362f6c59326b4b30457447526e413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[22c 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[22d 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c2f8 principal matched by identity 0 +[22e 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 29 48 f2 2a 49 b8 f5 f0 cd 3f ad 85 65 44 b2 6b |)H.*I....?..eD.k| +00000010 cb 3e 0a 8c c7 e1 7d 9a 8d 3a d9 33 bc 75 f0 cb |.>....}..:.3.u..| +[22f 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 9a ce 8e 4f 7d 0d 27 e3 6c 56 d0 |0E.!....O}.'.lV.| +00000010 6a e2 73 30 89 26 39 32 e6 6c c7 1f 22 25 41 bc |j.s0.&92.l.."%A.| +00000020 aa 6f 30 8a e0 02 20 29 6a 95 68 cd 31 0f 5b 0a |.o0... )j.h.1.[.| +00000030 e4 3f ce 07 58 04 ac 35 f8 2c 1e a3 52 3f bc 46 |.?..X..5.,..R?.F| +00000040 c6 ca 9f e4 6c 91 f0 |....l..| +[230 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c2f8 principal evaluation succeeds for identity 0 +[231 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c2f8 gate 1513309754281088000 evaluation succeeds +[232 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +[233 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins +[234 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/ChannelCreationPolicy +[235 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy +[236 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Writers +[237 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[238 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[239 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[23a 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[23b 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[23c 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[23d 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[23e 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[23f 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[240 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[241 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[242 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[243 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[244 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[245 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[246 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[247 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[248 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[249 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[24a 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[24b 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[24c 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[24d 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[24e 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[24f 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[250 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[251 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[252 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[253 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[254 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[255 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[256 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[257 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[258 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[259 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[25a 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[25b 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[25c 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[25d 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICLzCCAdWgAwIBAgIQGXf5zEgjlejkE1rJW2znwDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowaTELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFSKPRsXnXvaTTqRKjkTRYYoPjGg +TgXRAoMQwI+9AaLXTSL+AsApwlxedr+PJ+UgfBNcxey226YSZRJqLeiH/TajXzBd +MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +Af8wKQYDVR0OBCIEIPxyg8RiuCl5W+wOoXUqeRhWBcR2XF2JtWJ5qtJMQ3Y1MAoG +CCqGSM49BAMCA0gAMEUCIQCoRrlZYPh0Qnsp3Z9KitmTDkRqi6JyR4RLiOyfv8Tf +QgIgdHbFqXGTZ0HFQmknUFd5DD4TTltv8Ijmfm8J1skS4jc= +-----END CERTIFICATE----- +[25e 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +-----END CERTIFICATE----- +[25f 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +-----END CERTIFICATE----- +[260 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[261 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[262 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[263 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[264 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[265 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[266 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[267 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +[268 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[269 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[26a 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[26b 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[26c 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQShjAwe+6sxoSMZ8UrYKOcTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +GwyyfDLH07dFVkEvxJDGOKGevUcaYHphZvhzV78MBXVwIEGIENk7Zs8x+dx6iwIK +LOGmXxq/Wqd4qLs6kFyZvqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgsK9pE/plIOV10mqefUzE +vCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAL7xXrYD1fkzcpxi +yyZhFfEvMDWCoUicQw2b+c3GQ6OuAiA0KtNuH4yS4+c13W9Lsd28XNQK88FkwB2J +QR9yhJE7rA== +-----END CERTIFICATE----- +[26d 12-15 03:49:14.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== +-----END CERTIFICATE----- +[26e 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== +-----END CERTIFICATE----- +[26f 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +[270 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[271 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[272 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[273 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[274 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +[275 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[276 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[277 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[278 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +[279 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAMt+4ybOK1r7B8eavLVTMBUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPGrtJtHj1Ql02gq7I0ZQQKJwvtZhp0t3rCwF1cFILTHIBM4phJ/ZYJQa1lb12pO +sxSxuEvRGTFcZXtunUc0SeWjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICSqVyrJerF7YoXDKKeV +2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCIB+psiek7FqP18l1 +3s2anbtfpiGTHbAnm2BihpD9sRPjAiAIvsdyfn+nb2bCQBK6sodbO+LxSkuZulkP +oMR3yCH/eA== +-----END CERTIFICATE----- +[27a 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= +-----END CERTIFICATE----- +[27b 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= +-----END CERTIFICATE----- +[27c 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +[27d 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +[27e 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +[27f 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +[280 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +[281 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +[282 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[283 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[284 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[285 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[286 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +[287 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +[288 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +[289 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +[28a 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +[28b 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +[28c 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +[28d 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +[28e 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +[28f 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[290 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[291 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[292 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[293 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[294 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[295 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[296 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[297 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[298 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[299 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[29a 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[29b 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[29c 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[29d 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[29e 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[29f 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[2a0 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[2a1 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[2a2 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[2a3 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[2a4 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[2a5 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[2a6 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[2a7 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[2a8 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[2a9 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[2aa 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[2ab 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[2ac 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[2ad 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[2ae 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[2af 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[2b0 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[2b1 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[2b2 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[2b3 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[2b4 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[2b5 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[2b6 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[2b7 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[2b8 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[2b9 12-15 03:49:14.29 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.21.0.8:57092 +[2ba 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[2bb 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[2bc 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[2bd 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[2be 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[2bf 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[2c0 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[2c1 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[2c2 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[2c3 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[2c4 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[2c5 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[2c6 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +[2c7 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[2c8 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[2c9 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[2ca 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[2cb 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQShjAwe+6sxoSMZ8UrYKOcTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +GwyyfDLH07dFVkEvxJDGOKGevUcaYHphZvhzV78MBXVwIEGIENk7Zs8x+dx6iwIK +LOGmXxq/Wqd4qLs6kFyZvqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgsK9pE/plIOV10mqefUzE +vCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAL7xXrYD1fkzcpxi +yyZhFfEvMDWCoUicQw2b+c3GQ6OuAiA0KtNuH4yS4+c13W9Lsd28XNQK88FkwB2J +QR9yhJE7rA== +-----END CERTIFICATE----- +[2cc 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== +-----END CERTIFICATE----- +[2cd 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== +-----END CERTIFICATE----- +[2ce 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +[2cf 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[2d0 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[2d1 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[2d2 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[2d3 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +[2d4 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[2d5 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[2d6 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[2d7 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +[2d8 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAMt+4ybOK1r7B8eavLVTMBUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPGrtJtHj1Ql02gq7I0ZQQKJwvtZhp0t3rCwF1cFILTHIBM4phJ/ZYJQa1lb12pO +sxSxuEvRGTFcZXtunUc0SeWjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICSqVyrJerF7YoXDKKeV +2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCIB+psiek7FqP18l1 +3s2anbtfpiGTHbAnm2BihpD9sRPjAiAIvsdyfn+nb2bCQBK6sodbO+LxSkuZulkP +oMR3yCH/eA== +-----END CERTIFICATE----- +[2d9 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= +-----END CERTIFICATE----- +[2da 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= +-----END CERTIFICATE----- +[2db 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +[2dc 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[2dd 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[2de 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[2df 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[2e0 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[2e1 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[2e2 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[2e3 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[2e4 12-15 03:49:14.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[2e5 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[2e6 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[2e7 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[2e8 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[2e9 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICLzCCAdWgAwIBAgIQGXf5zEgjlejkE1rJW2znwDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowaTELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFSKPRsXnXvaTTqRKjkTRYYoPjGg +TgXRAoMQwI+9AaLXTSL+AsApwlxedr+PJ+UgfBNcxey226YSZRJqLeiH/TajXzBd +MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +Af8wKQYDVR0OBCIEIPxyg8RiuCl5W+wOoXUqeRhWBcR2XF2JtWJ5qtJMQ3Y1MAoG +CCqGSM49BAMCA0gAMEUCIQCoRrlZYPh0Qnsp3Z9KitmTDkRqi6JyR4RLiOyfv8Tf +QgIgdHbFqXGTZ0HFQmknUFd5DD4TTltv8Ijmfm8J1skS4jc= +-----END CERTIFICATE----- +[2ea 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +-----END CERTIFICATE----- +[2eb 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +-----END CERTIFICATE----- +[2ec 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[2ed 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +[2ee 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +[2ef 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +[2f0 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +[2f1 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +[2f2 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +[2f3 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +[2f4 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +[2f5 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +[2f6 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +[2f7 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +[2f8 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +[2f9 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +[2fa 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +[2fb 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[2fc 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[2fd 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[2fe 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[2ff 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[300 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[301 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[302 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[303 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[304 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[305 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[306 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[307 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[308 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[309 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[30a 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[30b 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[30c 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[30d 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[30e 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[30f 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[310 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[311 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[312 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[313 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[314 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[315 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[316 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[317 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[318 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[319 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[31a 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[31b 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[31c 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[31d 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[31e 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[31f 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[320 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[321 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[322 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[323 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[324 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[325 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[326 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[327 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU Rejecting deliver for 172.21.0.8:57090 because channel businesschannel not found +[328 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.21.0.8:57090 +[329 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57090 +[32a 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.21.0.8:57092: rpc error: code = Canceled desc = context canceled +[32b 12-15 03:49:14.31 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[32c 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57090: rpc error: code = Canceled desc = context canceled +[32d 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[32e 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[32f 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[330 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[331 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[332 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +[333 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[334 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[335 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[336 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[337 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[338 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[339 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[33a 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[33b 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +[33c 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[33d 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[33e 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +[33f 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +[340 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[341 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +[342 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] +[343 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] does not exist +[344 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] exists +[345 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +[346 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +[347 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +[348 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +[349 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +[34a 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +[34b 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc420ba7c80)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +[34c 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[34d 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57094 +[34e 12-15 03:49:14.32 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57094 +[34f 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] +[350 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xa1, 0x60, 0xe0, 0x48, 0x49, 0xa2, 0x7b, 0xd, 0x4, 0xe8, 0xa0, 0x11, 0xe6, 0xf7, 0x68, 0xce, 0x66, 0xf4, 0xbe, 0xa6, 0xb, 0xc5, 0x74, 0xd1, 0xf8, 0xc1, 0xc6, 0x60, 0xbf, 0x2c, 0xe0, 0x38} txOffsets= +txId= locPointer=offset=38, bytesLength=12083 +] +[351 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12126], isChainEmpty=[false], lastBlockNumber=[0] +[352 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +[353 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +[354 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[12126], Going to peek [8] bytes +[355 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12124], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[356 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12124] read from file [0] +[357 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport.newBlockWriter -> DEBU [channel: businesschannel] Creating block writer for tip of chain (blockNumber=0, lastConfigBlockNum=0, lastConfigSeq=1) +[358 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport -> DEBU [channel: businesschannel] Done creating channel support resources +[359 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain -> INFO Created and starting new chain businesschannel +[35a 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[35b 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[35c 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[35d 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[35e 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...B4BBBB86D3079290422234D114B76CBB +[35f 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 8A49BC500CC6F705427084E779867A6845C2BFCA0FA6883B6D43D685B3E8BB10 +[360 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[361 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[362 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 +[363 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[364 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[365 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...B4BBBB86D3079290422234D114B76CBB +[366 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 10903617131318C52CCE1BA30BAAE4D09CA055E5F96A6F4F9B3211FBA6A0ACFA +[367 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xd0, 0xfd, 0x9a, 0xa3, 0x30, 0xc3, 0x9f, 0xe5, 0x99, 0xe9, 0x1d, 0xfd, 0xf3, 0xed, 0x4d, 0x50, 0x9f, 0xfa, 0x6f, 0x8f, 0xf0, 0x9c, 0x9d, 0xa2, 0x6d, 0xe4, 0x4c, 0xa8, 0x6a, 0x22, 0x45, 0x47} txOffsets= +txId= locPointer=offset=70, bytesLength=13005 +] +[368 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[24023], isChainEmpty=[false], lastBlockNumber=[1] +[369 12-15 03:49:14.33 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: testchainid] Wrote block 1 +[36a 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[36b 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[36c 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[36d 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[36e 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[36f 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[370 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== +-----END CERTIFICATE----- +[371 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000efe0 gate 1513309754534159800 evaluation starts +[372 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000efe0 signed by 0 principal evaluation starts (used [false]) +[373 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000efe0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b78664b6f3271717459665054415039526b4136796f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455775768634e4d6a63784d6a457a4d444d7a4e5455770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424c493853704e726b4330415968693747496377353237505056364e75682b410a6b6f6b7670516355436746536d373374595a375141556c5446384e2f5642424e51436e464c326b72756b4f4c6431496f4237776e5a6e756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4376615250365a53446c0a64644a716e6e314d784c776b464f716d394d5877324c474f6b38584c72424e574d416f4743437147534d343942414d43413063414d455143494235334a6546780a4f665644446c692b4a6955636b463459376b4d64595550714778477373755948305570694169416f7159577a596a4f4c397071677874495430332f59717370630a62714569362f6c59326b4b30457447526e413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[374 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000efe0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +[375 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000efe0 principal evaluation fails +[376 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000efe0 gate 1513309754534159800 evaluation fails +[377 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers +[378 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[379 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] +[37a 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers +[37b 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[37c 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[37d 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[37e 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[37f 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000eff0 gate 1513309754535775100 evaluation starts +[380 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eff0 signed by 0 principal evaluation starts (used [false]) +[381 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eff0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b78664b6f3271717459665054415039526b4136796f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455775768634e4d6a63784d6a457a4d444d7a4e5455770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424c493853704e726b4330415968693747496377353237505056364e75682b410a6b6f6b7670516355436746536d373374595a375141556c5446384e2f5642424e51436e464c326b72756b4f4c6431496f4237776e5a6e756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4376615250365a53446c0a64644a716e6e314d784c776b464f716d394d5877324c474f6b38584c72424e574d416f4743437147534d343942414d43413063414d455143494235334a6546780a4f665644446c692b4a6955636b463459376b4d64595550714778477373755948305570694169416f7159577a596a4f4c397071677874495430332f59717370630a62714569362f6c59326b4b30457447526e413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[382 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[383 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +[384 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eff0 principal matched by identity 0 +[385 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 b9 f4 55 f2 a0 9d 14 bf 79 c6 f7 a1 99 72 de 0d |..U.....y....r..| +00000010 a3 5c bf 1f eb 0f d7 16 b4 ce 46 93 6e 17 bd 75 |.\........F.n..u| +[386 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 05 76 56 b0 c9 aa 7a d9 23 3e 53 62 |0D. .vV...z.#>Sb| +00000010 df 54 c2 42 68 1f 71 32 9c 70 a1 69 1c 86 18 18 |.T.Bh.q2.p.i....| +00000020 85 dd dd 97 02 20 55 c9 7b dc f5 b1 33 a5 f7 0a |..... U.{...3...| +00000030 40 7a 84 37 8c cf d5 90 6e 8a 51 6d c2 69 2b ae |@z.7....n.Qm.i+.| +00000040 85 ed e9 93 5f 5a |...._Z| +[387 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eff0 principal evaluation succeeds for identity 0 +[388 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000eff0 gate 1513309754535775100 evaluation succeeds +[389 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers +[38a 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[38b 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +[38c 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[38d 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[38e 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[38f 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4204f3ea0) start: > stop: > from 172.21.0.8:57094 +[390 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +[391 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +[392 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[12126], Going to peek [8] bytes +[393 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12124], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[394 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12124] read from file [0] +[395 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4204f3ea0) for 172.21.0.8:57094 +[396 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.21.0.8:57094 for (0xc4204f3ea0) +[397 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.21.0.8:57094 +[398 12-15 03:49:14.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57094 +[399 12-15 03:49:14.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57094: rpc error: code = Canceled desc = context canceled +[39a 12-15 03:49:14.54 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[39b 12-15 03:49:15.67 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[39c 12-15 03:49:15.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57104 +[39d 12-15 03:49:15.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57104 +[39e 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[39f 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.21.0.8:57106 +[3a0 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.21.0.8:57106 +[3a1 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update message for channel businesschannel +[3a2 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +[3a3 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[3a4 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +[3a5 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[3a6 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +[3a7 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c040 gate 1513309755692677800 evaluation starts +[3a8 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c040 signed by 0 principal evaluation starts (used [false]) +[3a9 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c040 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b78664b6f3271717459665054415039526b4136796f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455775768634e4d6a63784d6a457a4d444d7a4e5455770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424c493853704e726b4330415968693747496377353237505056364e75682b410a6b6f6b7670516355436746536d373374595a375141556c5446384e2f5642424e51436e464c326b72756b4f4c6431496f4237776e5a6e756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4376615250365a53446c0a64644a716e6e314d784c776b464f716d394d5877324c474f6b38584c72424e574d416f4743437147534d343942414d43413063414d455143494235334a6546780a4f665644446c692b4a6955636b463459376b4d64595550714778477373755948305570694169416f7159577a596a4f4c397071677874495430332f59717370630a62714569362f6c59326b4b30457447526e413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[3aa 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[3ab 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +[3ac 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c040 principal matched by identity 0 +[3ad 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 6b e0 92 f3 cb 45 17 6d e4 b4 61 9b 40 f0 6c f0 |k....E.m..a.@.l.| +00000010 d6 e3 85 a4 59 06 ce f9 e6 38 b3 07 0a 6e 92 b9 |....Y....8...n..| +[3ae 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 1a f0 b6 85 95 1e 58 ac ad b8 36 a5 |0D. ......X...6.| +00000010 bc b9 d8 60 73 93 e4 67 d7 48 bc a7 1a a8 c2 a9 |...`s..g.H......| +00000020 ec 6f 95 cf 02 20 1b 6d 19 da cd 0c ec 08 c6 df |.o... .m........| +00000030 67 52 f9 2a db 47 4b 1b 35 1b cd 49 fc 6d 1b 9c |gR.*.GK.5..I.m..| +00000040 56 6f 58 b5 d9 24 |VoX..$| +[3af 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c040 principal evaluation succeeds for identity 0 +[3b0 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c040 gate 1513309755692677800 evaluation succeeds +[3b1 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers +[3b2 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +[3b3 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +[3b4 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +[3b5 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +[3b6 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +[3b7 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[3b8 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[3b9 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[3ba 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[3bb 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[3bc 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[3bd 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[3be 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[3bf 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[3c0 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[3c1 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[3c2 12-15 03:49:15.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[3c3 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[3c4 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[3c5 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[3c6 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers +[3c7 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP +[3c8 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins +[3c9 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +[3ca 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +[3cb 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[3cc 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[3cd 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[3ce 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[3cf 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org1MSP] +[3d0 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[3d1 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[3d2 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org1MSP looking up path [] +[3d3 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +[3d4 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42026c2a0 gate 1513309755703050700 evaluation starts +[3d5 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c2a0 signed by 0 principal evaluation starts (used [false]) +[3d6 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c2a0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b78664b6f3271717459665054415039526b4136796f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455775768634e4d6a63784d6a457a4d444d7a4e5455770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424c493853704e726b4330415968693747496377353237505056364e75682b410a6b6f6b7670516355436746536d373374595a375141556c5446384e2f5642424e51436e464c326b72756b4f4c6431496f4237776e5a6e756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4376615250365a53446c0a64644a716e6e314d784c776b464f716d394d5877324c474f6b38584c72424e574d416f4743437147534d343942414d43413063414d455143494235334a6546780a4f665644446c692b4a6955636b463459376b4d64595550714778477373755948305570694169416f7159577a596a4f4c397071677874495430332f59717370630a62714569362f6c59326b4b30457447526e413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[3d7 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[3d8 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c2a0 principal matched by identity 0 +[3d9 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 bd 5c 5b b3 5f 33 24 75 a7 5c 33 ff c3 a0 2e 60 |.\[._3$u.\3....`| +00000010 02 b6 b3 e3 12 8b ad 19 4b 55 e5 75 b0 8c 87 4e |........KU.u...N| +[3da 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 9b ec d5 2a d3 c0 d4 32 36 55 ba |0E.!....*...26U.| +00000010 22 54 79 79 1d c0 4e e9 ae 42 41 f3 2b 73 e8 b0 |"Tyy..N..BA.+s..| +00000020 6c 0c 1a d2 15 02 20 69 e5 c0 5c 04 19 3d 97 8f |l..... i..\..=..| +00000030 f4 7b 2d 6a 1d 03 19 73 27 9e 52 a9 5d b9 65 75 |.{-j...s'.R.].eu| +00000040 5a 08 1a d4 4b bf da |Z...K..| +[3db 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c2a0 principal evaluation succeeds for identity 0 +[3dc 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42026c2a0 gate 1513309755703050700 evaluation succeeds +[3dd 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +[3de 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins +[3df 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3e0 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3e1 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3e2 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3e3 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3e4 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3e5 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[3e6 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3e7 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3e8 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3e9 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[3ea 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[3eb 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[3ec 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3ed 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3ee 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3ef 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3f0 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3f1 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3f2 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[3f3 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[3f4 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[3f5 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[3f6 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[3f7 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[3f8 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[3f9 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[3fa 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[3fb 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[3fc 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[3fd 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[3fe 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[3ff 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[400 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[401 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[402 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[403 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[404 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[405 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICLzCCAdWgAwIBAgIQGXf5zEgjlejkE1rJW2znwDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowaTELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFSKPRsXnXvaTTqRKjkTRYYoPjGg +TgXRAoMQwI+9AaLXTSL+AsApwlxedr+PJ+UgfBNcxey226YSZRJqLeiH/TajXzBd +MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +Af8wKQYDVR0OBCIEIPxyg8RiuCl5W+wOoXUqeRhWBcR2XF2JtWJ5qtJMQ3Y1MAoG +CCqGSM49BAMCA0gAMEUCIQCoRrlZYPh0Qnsp3Z9KitmTDkRqi6JyR4RLiOyfv8Tf +QgIgdHbFqXGTZ0HFQmknUFd5DD4TTltv8Ijmfm8J1skS4jc= +-----END CERTIFICATE----- +[406 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +-----END CERTIFICATE----- +[407 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +-----END CERTIFICATE----- +[408 12-15 03:49:15.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[409 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[40a 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[40b 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[40c 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[40d 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[40e 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[40f 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[410 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[411 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[412 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[413 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[414 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQShjAwe+6sxoSMZ8UrYKOcTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +GwyyfDLH07dFVkEvxJDGOKGevUcaYHphZvhzV78MBXVwIEGIENk7Zs8x+dx6iwIK +LOGmXxq/Wqd4qLs6kFyZvqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgsK9pE/plIOV10mqefUzE +vCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAL7xXrYD1fkzcpxi +yyZhFfEvMDWCoUicQw2b+c3GQ6OuAiA0KtNuH4yS4+c13W9Lsd28XNQK88FkwB2J +QR9yhJE7rA== +-----END CERTIFICATE----- +[415 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== +-----END CERTIFICATE----- +[416 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== +-----END CERTIFICATE----- +[417 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +[418 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[419 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[41a 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[41b 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[41c 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +[41d 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[41e 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[41f 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[420 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +[421 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAMt+4ybOK1r7B8eavLVTMBUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPGrtJtHj1Ql02gq7I0ZQQKJwvtZhp0t3rCwF1cFILTHIBM4phJ/ZYJQa1lb12pO +sxSxuEvRGTFcZXtunUc0SeWjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICSqVyrJerF7YoXDKKeV +2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCIB+psiek7FqP18l1 +3s2anbtfpiGTHbAnm2BihpD9sRPjAiAIvsdyfn+nb2bCQBK6sodbO+LxSkuZulkP +oMR3yCH/eA== +-----END CERTIFICATE----- +[422 12-15 03:49:15.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= +-----END CERTIFICATE----- +[423 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= +-----END CERTIFICATE----- +[424 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +[425 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +[426 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +[427 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +[428 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +[429 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +[42a 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[42b 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[42c 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[42d 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[42e 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +[42f 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +[430 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +[431 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +[432 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +[433 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +[434 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +[435 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +[436 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +[437 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[438 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[439 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[43a 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[43b 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[43c 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[43d 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[43e 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[43f 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[440 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[441 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[442 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[443 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[444 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[445 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[446 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[447 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[448 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[449 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[44a 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[44b 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[44c 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[44d 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[44e 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[44f 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[450 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[451 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[452 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[453 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[454 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[455 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[456 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[457 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[458 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[459 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[45a 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[45b 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[45c 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[45d 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[45e 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[45f 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[460 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[461 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[462 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[463 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[464 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +[465 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[466 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[467 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[468 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[469 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[46a 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[46b 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[46c 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[46d 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +[46e 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[46f 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[470 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +[471 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +[472 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[473 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[474 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[475 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[476 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[477 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608BB8CCDD10522...4B1B351BCD49FC6D1B9C566F58B5D924 +[478 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: 7E26FF4F8C31CC0540845B9CE90ECD406832CB298CC01F9D3F1FE8ADE68594D7 +[479 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +[47a 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[47b 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +[47c 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[47d 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +[47e 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[47f 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv +zQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd +ibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv +zjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg= +-----END CERTIFICATE----- +[480 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c5a8 gate 1513309755728302200 evaluation starts +[481 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c5a8 signed by 0 principal evaluation starts (used [false]) +[482 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c5a8 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749514b77793676416c34704643476846726d4a6d5a305554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e434141534b53436b2b3274316e61597867417059614f3030613970376b47316d6d4a31302f68744e434a49535076547555513163760a7a514f2b694e39366d4c754d6e693475746b416466616b597459576963416830365736636f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a44416967434438636f50455972677065567673447146314b6e6b5956675845646c78640a696256696561725354454e324e54414b42676771686b6a4f5051514441674e4841444245416941794f594647594256623938546a6d6e4451682f56544e5247760a7a6a6643644169736f594355773935725177496744463834756136676e7a50336b444f5530345551564b6b307553414469744a32354b7a31705668694b51673d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[483 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c5a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[484 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c5a8 principal evaluation fails +[485 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c5a8 gate 1513309755728302200 evaluation fails +[486 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Writers +[487 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +[488 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == +[489 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c5b8 gate 1513309755728666400 evaluation starts +[48a 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c5b8 signed by 0 principal evaluation starts (used [false]) +[48b 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c5b8 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749514b77793676416c34704643476846726d4a6d5a305554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e434141534b53436b2b3274316e61597867417059614f3030613970376b47316d6d4a31302f68744e434a49535076547555513163760a7a514f2b694e39366d4c754d6e693475746b416466616b597459576963416830365736636f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a44416967434438636f50455972677065567673447146314b6e6b5956675845646c78640a696256696561725354454e324e54414b42676771686b6a4f5051514441674e4841444245416941794f594647594256623938546a6d6e4451682f56544e5247760a7a6a6643644169736f594355773935725177496744463834756136676e7a50336b444f5530345551564b6b307553414469744a32354b7a31705668694b51673d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[48c 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c5b8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[48d 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c5b8 principal evaluation fails +[48e 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c5b8 gate 1513309755728666400 evaluation fails +[48f 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers +[490 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +[491 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org1MSP.Writers Org2MSP.Writers ] +[492 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Writers +[493 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +[494 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +[495 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[496 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +[497 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c5c0 gate 1513309755729214700 evaluation starts +[498 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c5c0 signed by 0 principal evaluation starts (used [false]) +[499 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c5c0 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749514b77793676416c34704643476846726d4a6d5a305554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e434141534b53436b2b3274316e61597867417059614f3030613970376b47316d6d4a31302f68744e434a49535076547555513163760a7a514f2b694e39366d4c754d6e693475746b416466616b597459576963416830365736636f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a44416967434438636f50455972677065567673447146314b6e6b5956675845646c78640a696256696561725354454e324e54414b42676771686b6a4f5051514441674e4841444245416941794f594647594256623938546a6d6e4451682f56544e5247760a7a6a6643644169736f594355773935725177496744463834756136676e7a50336b444f5530345551564b6b307553414469744a32354b7a31705668694b51673d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[49a 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[49b 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[49c 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c5c0 principal matched by identity 0 +[49d 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 7e 26 ff 4f 8c 31 cc 05 40 84 5b 9c e9 0e cd 40 |~&.O.1..@.[....@| +00000010 68 32 cb 29 8c c0 1f 9d 3f 1f e8 ad e6 85 94 d7 |h2.)....?.......| +[49e 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 68 3b f9 b4 80 9a d5 5f c5 e2 2e aa |0D. h;....._....| +00000010 b8 6c 50 16 0b 52 7c 07 2e 67 f5 04 d3 70 62 ce |.lP..R|..g...pb.| +00000020 42 c2 4d d1 02 20 5b e9 0f 91 37 89 c1 89 17 9c |B.M.. [...7.....| +00000030 78 b6 40 7e 30 6a 34 06 08 43 a2 09 02 c7 44 5f |x.@~0j4..C....D_| +00000040 4d 0e d5 e6 a5 0e |M.....| +[49f 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c5c0 principal evaluation succeeds for identity 0 +[4a0 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c5c0 gate 1513309755729214700 evaluation succeeds +[4a1 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers +[4a2 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +[4a3 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers +[4a4 12-15 03:49:15.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +[4a5 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +[4a6 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +[4a7 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.21.0.8:57106 +[4a8 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[4a9 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[4aa 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[4ab 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[4ac 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[4ad 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[4ae 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[4af 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[4b0 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[4b1 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[4b2 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[4b3 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[4b4 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[4b5 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[4b6 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[4b7 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP +[4b8 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins +[4b9 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +[4ba 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +[4bb 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[4bc 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[4bd 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[4be 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[4bf 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org1MSP] +[4c0 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[4c1 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[4c2 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org1MSP looking up path [] +[4c3 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +[4c4 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000eef0 gate 1513309755731635100 evaluation starts +[4c5 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eef0 signed by 0 principal evaluation starts (used [false]) +[4c6 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eef0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b78664b6f3271717459665054415039526b4136796f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455775768634e4d6a63784d6a457a4d444d7a4e5455770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424c493853704e726b4330415968693747496377353237505056364e75682b410a6b6f6b7670516355436746536d373374595a375141556c5446384e2f5642424e51436e464c326b72756b4f4c6431496f4237776e5a6e756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4376615250365a53446c0a64644a716e6e314d784c776b464f716d394d5877324c474f6b38584c72424e574d416f4743437147534d343942414d43413063414d455143494235334a6546780a4f665644446c692b4a6955636b463459376b4d64595550714778477373755948305570694169416f7159577a596a4f4c397071677874495430332f59717370630a62714569362f6c59326b4b30457447526e413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[4c7 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[4c8 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eef0 principal matched by identity 0 +[4c9 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 bd 5c 5b b3 5f 33 24 75 a7 5c 33 ff c3 a0 2e 60 |.\[._3$u.\3....`| +00000010 02 b6 b3 e3 12 8b ad 19 4b 55 e5 75 b0 8c 87 4e |........KU.u...N| +[4ca 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 9b ec d5 2a d3 c0 d4 32 36 55 ba |0E.!....*...26U.| +00000010 22 54 79 79 1d c0 4e e9 ae 42 41 f3 2b 73 e8 b0 |"Tyy..N..BA.+s..| +00000020 6c 0c 1a d2 15 02 20 69 e5 c0 5c 04 19 3d 97 8f |l..... i..\..=..| +00000030 f4 7b 2d 6a 1d 03 19 73 27 9e 52 a9 5d b9 65 75 |.{-j...s'.R.].eu| +00000040 5a 08 1a d4 4b bf da |Z...K..| +[4cb 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eef0 principal evaluation succeeds for identity 0 +[4cc 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000eef0 gate 1513309755731635100 evaluation succeeds +[4cd 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +[4ce 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins +[4cf 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers +[4d0 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[4d1 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[4d2 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[4d3 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[4d4 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[4d5 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[4d6 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[4d7 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[4d8 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[4d9 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[4da 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[4db 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[4dc 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[4dd 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[4de 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[4df 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[4e0 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[4e1 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[4e2 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[4e3 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[4e4 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[4e5 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[4e6 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[4e7 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[4e8 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[4e9 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[4ea 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[4eb 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[4ec 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[4ed 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[4ee 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[4ef 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[4f0 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[4f1 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[4f2 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[4f3 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[4f4 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[4f5 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[4f6 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICLzCCAdWgAwIBAgIQGXf5zEgjlejkE1rJW2znwDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowaTELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFSKPRsXnXvaTTqRKjkTRYYoPjGg +TgXRAoMQwI+9AaLXTSL+AsApwlxedr+PJ+UgfBNcxey226YSZRJqLeiH/TajXzBd +MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +Af8wKQYDVR0OBCIEIPxyg8RiuCl5W+wOoXUqeRhWBcR2XF2JtWJ5qtJMQ3Y1MAoG +CCqGSM49BAMCA0gAMEUCIQCoRrlZYPh0Qnsp3Z9KitmTDkRqi6JyR4RLiOyfv8Tf +QgIgdHbFqXGTZ0HFQmknUFd5DD4TTltv8Ijmfm8J1skS4jc= +-----END CERTIFICATE----- +[4f7 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +-----END CERTIFICATE----- +[4f8 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +-----END CERTIFICATE----- +[4f9 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[4fa 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[4fb 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[4fc 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[4fd 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[4fe 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[4ff 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[500 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[501 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[502 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[503 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[504 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[505 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQShjAwe+6sxoSMZ8UrYKOcTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +GwyyfDLH07dFVkEvxJDGOKGevUcaYHphZvhzV78MBXVwIEGIENk7Zs8x+dx6iwIK +LOGmXxq/Wqd4qLs6kFyZvqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgsK9pE/plIOV10mqefUzE +vCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAL7xXrYD1fkzcpxi +yyZhFfEvMDWCoUicQw2b+c3GQ6OuAiA0KtNuH4yS4+c13W9Lsd28XNQK88FkwB2J +QR9yhJE7rA== +-----END CERTIFICATE----- +[506 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== +-----END CERTIFICATE----- +[507 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== +-----END CERTIFICATE----- +[508 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +[509 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[50a 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[50b 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[50c 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[50d 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +[50e 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[50f 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[510 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[511 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +[512 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAMt+4ybOK1r7B8eavLVTMBUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPGrtJtHj1Ql02gq7I0ZQQKJwvtZhp0t3rCwF1cFILTHIBM4phJ/ZYJQa1lb12pO +sxSxuEvRGTFcZXtunUc0SeWjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICSqVyrJerF7YoXDKKeV +2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCIB+psiek7FqP18l1 +3s2anbtfpiGTHbAnm2BihpD9sRPjAiAIvsdyfn+nb2bCQBK6sodbO+LxSkuZulkP +oMR3yCH/eA== +-----END CERTIFICATE----- +[513 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= +-----END CERTIFICATE----- +[514 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= +-----END CERTIFICATE----- +[515 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +[516 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +[517 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +[518 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +[519 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +[51a 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +[51b 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[51c 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[51d 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[51e 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[51f 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +[520 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +[521 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +[522 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +[523 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +[524 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +[525 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +[526 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +[527 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +[528 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[529 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[52a 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[52b 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[52c 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[52d 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[52e 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[52f 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[530 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[531 12-15 03:49:15.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[532 12-15 03:49:15.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[533 12-15 03:49:15.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[534 12-15 03:49:15.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[535 12-15 03:49:15.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[536 12-15 03:49:15.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[539 12-15 03:49:15.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[53a 12-15 03:49:15.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[53b 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[53c 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[53d 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[53e 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[53f 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[540 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[541 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[542 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[543 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[544 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[545 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[546 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[547 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[548 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[549 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[54a 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[54b 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[54c 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[54d 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[54e 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[54f 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[550 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[551 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[552 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[553 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[554 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[555 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[556 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[557 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +[558 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[559 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[55a 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[55b 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[55c 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[55d 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[55e 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[55f 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[560 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +[561 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[562 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[563 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +[564 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +[565 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[566 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[537 12-15 03:49:15.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57104: rpc error: code = Canceled desc = context canceled +[568 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[538 12-15 03:49:15.74 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.21.0.8:57106: rpc error: code = Canceled desc = context canceled +[569 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[567 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[56a 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[56b 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[56c 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...B6FF1F7FBE34CE72E2D7B17326F7EB7E +[56d 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 1B3D797E7BC250B8D2530919AD613F3643E30AF5CF5368A63706BD2B0FF9BF8A +[56e 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 1 to 2, setting lastConfigBlockNum from 0 to 1 +[56f 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[570 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[571 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 +[572 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[573 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[574 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08010A90060A0A4F7264657265724D53...B6FF1F7FBE34CE72E2D7B17326F7EB7E +[575 12-15 03:49:15.75 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 003CF03EA6284FC2973BFD232697E71930B1C1AC1DEA53938551A9004FD57C18 +[576 12-15 03:49:15.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xaa, 0x80, 0xff, 0xc, 0x39, 0xaa, 0xa8, 0x8f, 0x5f, 0xc0, 0x97, 0xdb, 0x69, 0x4b, 0xab, 0xe6, 0x6c, 0xaa, 0x32, 0xc5, 0x62, 0x29, 0x98, 0xb, 0xb6, 0x72, 0x4f, 0xe1, 0x1e, 0xe7, 0xb5, 0x8f} txOffsets= +txId= locPointer=offset=70, bytesLength=12097 +] +[577 12-15 03:49:15.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26086], isChainEmpty=[false], lastBlockNumber=[1] +[578 12-15 03:49:15.76 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 1 +[579 12-15 03:49:17.83 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[57a 12-15 03:49:17.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57108 +[57b 12-15 03:49:17.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57108 +[57c 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[57d 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.21.0.8:57110 +[57e 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.21.0.8:57110 +[57f 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update message for channel businesschannel +[580 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +[581 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[582 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +[583 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[584 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +[585 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[586 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= +-----END CERTIFICATE----- +[587 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e728 gate 1513309757849711400 evaluation starts +[588 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e728 signed by 0 principal evaluation starts (used [false]) +[589 12-15 03:49:17.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e728 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414d4b66625241343136702b6653617851357150386a5977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455785768634e4d6a63784d6a457a4d444d7a4e5455780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d2f682f2b44587872326c4d315674504477686c41794a56723458742b4b760a564c536d65592b6d58352f2b38303253504d7049785a4b456636356a7a7461734b427847624f67414262657978336f58476437646538716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494353715679724a657246370a596f58444b4b65563241582f366b3659677a3665415031344b4f6566356d71374d416f4743437147534d343942414d43413067414d4555434951443449584b320a386241457353656e5a65752b4e2f35306b3262566a4c50734d734a337345393141726c50784149675862324b3238594f47414c59465873592f74476b2b612f300a4e352b7a2f66545466636847664c6143747a4d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[58a 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e728 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +[58b 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e728 principal evaluation fails +[58c 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e728 gate 1513309757849711400 evaluation fails +[58d 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers +[58e 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +[58f 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] +[590 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers +[591 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +[592 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +[593 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[594 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == +[595 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e738 gate 1513309757850618100 evaluation starts +[596 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e738 signed by 0 principal evaluation starts (used [false]) +[597 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e738 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414d4b66625241343136702b6653617851357150386a5977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455785768634e4d6a63784d6a457a4d444d7a4e5455780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d2f682f2b44587872326c4d315674504477686c41794a56723458742b4b760a564c536d65592b6d58352f2b38303253504d7049785a4b456636356a7a7461734b427847624f67414262657978336f58476437646538716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494353715679724a657246370a596f58444b4b65563241582f366b3659677a3665415031344b4f6566356d71374d416f4743437147534d343942414d43413067414d4555434951443449584b320a386241457353656e5a65752b4e2f35306b3262566a4c50734d734a337345393141726c50784149675862324b3238594f47414c59465873592f74476b2b612f300a4e352b7a2f66545466636847664c6143747a4d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[598 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[599 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +[59a 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e738 principal matched by identity 0 +[59b 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 a6 79 df 06 48 f6 03 06 1e 49 f7 a6 8d 5a d0 e9 |.y..H....I...Z..| +00000010 7b 00 1f d5 7b e6 a6 4a e0 29 bc 7c 22 cb 3e 88 |{...{..J.).|".>.| +[59c 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 73 76 5b 6b 56 9e 66 61 74 4d 72 97 |0D. sv[kV.fatMr.| +00000010 e4 8f 6f 41 d9 2c 51 a4 ed 88 9a 56 d2 c0 e6 3a |..oA.,Q....V...:| +00000020 00 5e 31 bc 02 20 74 d7 0d 9d e2 5e 49 b6 04 be |.^1.. t....^I...| +00000030 36 b4 81 c4 3a 59 e1 61 c9 b9 79 48 80 d7 08 f2 |6...:Y.a..yH....| +00000040 6e 54 f6 1a b4 4b |nT...K| +[59d 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e738 principal evaluation succeeds for identity 0 +[59e 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e738 gate 1513309757850618100 evaluation succeeds +[59f 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers +[5a0 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +[5a1 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +[5a2 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +[5a3 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +[5a4 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +[5a5 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[5a6 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[5a7 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[5a8 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[5a9 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[5aa 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[5ab 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[5ac 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[5ad 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[5ae 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[5af 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[5b0 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +[5b1 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[5b2 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[5b3 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[5b4 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP +[5b5 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins +[5b6 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +[5b7 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[5b8 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +[5b9 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[5ba 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[5bb 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[5bc 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org2MSP] +[5bd 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[5be 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[5bf 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org2MSP looking up path [] +[5c0 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == +[5c1 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000ebb0 gate 1513309757854848200 evaluation starts +[5c2 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000ebb0 signed by 0 principal evaluation starts (used [false]) +[5c3 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000ebb0 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414d4b66625241343136702b6653617851357150386a5977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455785768634e4d6a63784d6a457a4d444d7a4e5455780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d2f682f2b44587872326c4d315674504477686c41794a56723458742b4b760a564c536d65592b6d58352f2b38303253504d7049785a4b456636356a7a7461734b427847624f67414262657978336f58476437646538716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494353715679724a657246370a596f58444b4b65563241582f366b3659677a3665415031344b4f6566356d71374d416f4743437147534d343942414d43413067414d4555434951443449584b320a386241457353656e5a65752b4e2f35306b3262566a4c50734d734a337345393141726c50784149675862324b3238594f47414c59465873592f74476b2b612f300a4e352b7a2f66545466636847664c6143747a4d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[5c4 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +[5c5 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000ebb0 principal matched by identity 0 +[5c6 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 76 68 01 24 5d e6 7b ad 13 1a 5c f4 45 82 70 e5 |vh.$].{...\.E.p.| +00000010 dc 20 91 08 42 e4 23 16 9d ce 90 6c 8d 69 f1 a6 |. ..B.#....l.i..| +[5c7 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 cf e1 7d fa 51 e7 78 eb 82 a4 dd |0E.!...}.Q.x....| +00000010 df e8 cc 11 bb d5 af 09 d3 7f 30 18 ec 6e 6d 42 |..........0..nmB| +00000020 ec 40 46 e6 3b 02 20 5f b4 bc ae 05 35 03 34 9d |.@F.;. _....5.4.| +00000030 ff e7 b3 57 4e 90 ec 52 51 50 7d 5c c1 d4 9a f1 |...WN..RQP}\....| +00000040 26 18 7c 1d 54 b9 e0 |&.|.T..| +[5c8 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000ebb0 principal evaluation succeeds for identity 0 +[5c9 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000ebb0 gate 1513309757854848200 evaluation succeeds +[5ca 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins +[5cb 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins +[5cc 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +[5cd 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[5ce 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[5cf 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[5d0 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[5d1 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[5d2 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[5d3 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[5d4 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[5d5 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[5d6 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[5d7 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[5d8 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[5d9 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[5da 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[5db 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[5dc 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[5dd 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[5de 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[5df 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[5e0 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[5e1 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[5e2 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[5e3 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[5e4 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[5e5 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[5e6 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[5e7 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[5e8 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[5e9 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[5ea 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[5eb 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[5ec 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[5ed 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[5ee 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[5ef 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[5f0 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[5f1 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[5f2 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[5f3 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICLzCCAdWgAwIBAgIQGXf5zEgjlejkE1rJW2znwDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowaTELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFSKPRsXnXvaTTqRKjkTRYYoPjGg +TgXRAoMQwI+9AaLXTSL+AsApwlxedr+PJ+UgfBNcxey226YSZRJqLeiH/TajXzBd +MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +Af8wKQYDVR0OBCIEIPxyg8RiuCl5W+wOoXUqeRhWBcR2XF2JtWJ5qtJMQ3Y1MAoG +CCqGSM49BAMCA0gAMEUCIQCoRrlZYPh0Qnsp3Z9KitmTDkRqi6JyR4RLiOyfv8Tf +QgIgdHbFqXGTZ0HFQmknUFd5DD4TTltv8Ijmfm8J1skS4jc= +-----END CERTIFICATE----- +[5f4 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +-----END CERTIFICATE----- +[5f5 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +-----END CERTIFICATE----- +[5f6 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[5f7 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[5f8 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[5f9 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[5fa 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[5fb 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[5fc 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[5fd 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[5fe 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[5ff 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[600 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[601 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +[602 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAMt+4ybOK1r7B8eavLVTMBUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPGrtJtHj1Ql02gq7I0ZQQKJwvtZhp0t3rCwF1cFILTHIBM4phJ/ZYJQa1lb12pO +sxSxuEvRGTFcZXtunUc0SeWjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICSqVyrJerF7YoXDKKeV +2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCIB+psiek7FqP18l1 +3s2anbtfpiGTHbAnm2BihpD9sRPjAiAIvsdyfn+nb2bCQBK6sodbO+LxSkuZulkP +oMR3yCH/eA== +-----END CERTIFICATE----- +[603 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= +-----END CERTIFICATE----- +[604 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= +-----END CERTIFICATE----- +[605 12-15 03:49:17.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +[606 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[607 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[608 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[609 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[60a 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[60b 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[60c 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[60d 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[60e 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[60f 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQShjAwe+6sxoSMZ8UrYKOcTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +GwyyfDLH07dFVkEvxJDGOKGevUcaYHphZvhzV78MBXVwIEGIENk7Zs8x+dx6iwIK +LOGmXxq/Wqd4qLs6kFyZvqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgsK9pE/plIOV10mqefUzE +vCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAL7xXrYD1fkzcpxi +yyZhFfEvMDWCoUicQw2b+c3GQ6OuAiA0KtNuH4yS4+c13W9Lsd28XNQK88FkwB2J +QR9yhJE7rA== +-----END CERTIFICATE----- +[610 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== +-----END CERTIFICATE----- +[611 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== +-----END CERTIFICATE----- +[612 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +[613 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +[614 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +[615 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +[616 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +[617 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +[618 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[619 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[61a 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[61b 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[61c 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +[61d 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +[61e 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +[61f 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +[620 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +[621 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +[622 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +[623 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +[624 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +[625 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[626 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[627 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[628 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[629 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[62a 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[62b 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[62c 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[62d 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[62e 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[62f 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[630 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[631 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[632 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[633 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[634 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[635 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[636 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[637 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[638 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[639 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[63a 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[63b 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[63c 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[63d 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[63e 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[63f 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[640 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[641 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +[642 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[643 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[644 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[645 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[646 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[647 12-15 03:49:17.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[648 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[649 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[64a 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[64b 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[64c 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[64d 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[64e 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[64f 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[650 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[651 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[652 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[653 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +[654 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[655 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[656 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[657 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[658 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[659 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[65a 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[65b 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[65c 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +[65d 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[65e 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[65f 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +[660 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +[661 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[662 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[663 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[664 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[665 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[666 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608BD8CCDD10522...E161C9B9794880D708F26E54F61AB44B +[667 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: 5D5E6CC7C093462DBBD859E6028BEEBEA34D5D66BF773CB4FB3BDCB044B057EF +[668 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +[669 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[66a 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +[66b 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[66c 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +[66d 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[66e 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv +zQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd +ibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv +zjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg= +-----END CERTIFICATE----- +[66f 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e600 gate 1513309757873714000 evaluation starts +[670 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e600 signed by 0 principal evaluation starts (used [false]) +[671 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e600 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749514b77793676416c34704643476846726d4a6d5a305554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e434141534b53436b2b3274316e61597867417059614f3030613970376b47316d6d4a31302f68744e434a49535076547555513163760a7a514f2b694e39366d4c754d6e693475746b416466616b597459576963416830365736636f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a44416967434438636f50455972677065567673447146314b6e6b5956675845646c78640a696256696561725354454e324e54414b42676771686b6a4f5051514441674e4841444245416941794f594647594256623938546a6d6e4451682f56544e5247760a7a6a6643644169736f594355773935725177496744463834756136676e7a50336b444f5530345551564b6b307553414469744a32354b7a31705668694b51673d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[672 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[673 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[674 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e600 principal matched by identity 0 +[675 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 5d 5e 6c c7 c0 93 46 2d bb d8 59 e6 02 8b ee be |]^l...F-..Y.....| +00000010 a3 4d 5d 66 bf 77 3c b4 fb 3b dc b0 44 b0 57 ef |.M]f.w<..;..D.W.| +[676 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 63 6d 78 73 7b 69 63 42 ee 8e 79 f9 |0D. cmxs{icB..y.| +00000010 62 a2 0c 1d 83 f6 88 56 d5 78 81 a4 b2 41 36 14 |b......V.x...A6.| +00000020 93 8a 84 a0 02 20 11 51 a2 ff 28 ec 1d 0d 4b 13 |..... .Q..(...K.| +00000030 55 00 76 83 07 81 87 39 4c 8d a4 60 56 87 cb ad |U.v....9L..`V...| +00000040 b5 cf 60 62 71 d2 |..`bq.| +[677 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e600 principal evaluation succeeds for identity 0 +[678 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e600 gate 1513309757873714000 evaluation succeeds +[679 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers +[67a 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +[67b 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers +[67c 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +[67d 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +[67e 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +[67f 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.21.0.8:57110 +[680 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[681 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[682 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[683 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[684 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[685 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[686 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[687 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[688 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[689 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[68a 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[68b 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +[68c 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[68d 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[68e 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[68f 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP +[690 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins +[691 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +[692 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[693 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +[694 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[695 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[696 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[697 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org2MSP] +[698 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[699 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[69a 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org2MSP looking up path [] +[69b 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == +[69c 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42026c638 gate 1513309757876465000 evaluation starts +[69d 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c638 signed by 0 principal evaluation starts (used [false]) +[69e 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c638 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414d4b66625241343136702b6653617851357150386a5977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455785768634e4d6a63784d6a457a4d444d7a4e5455780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d2f682f2b44587872326c4d315674504477686c41794a56723458742b4b760a564c536d65592b6d58352f2b38303253504d7049785a4b456636356a7a7461734b427847624f67414262657978336f58476437646538716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494353715679724a657246370a596f58444b4b65563241582f366b3659677a3665415031344b4f6566356d71374d416f4743437147534d343942414d43413067414d4555434951443449584b320a386241457353656e5a65752b4e2f35306b3262566a4c50734d734a337345393141726c50784149675862324b3238594f47414c59465873592f74476b2b612f300a4e352b7a2f66545466636847664c6143747a4d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[69f 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +[6a0 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c638 principal matched by identity 0 +[6a1 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 76 68 01 24 5d e6 7b ad 13 1a 5c f4 45 82 70 e5 |vh.$].{...\.E.p.| +00000010 dc 20 91 08 42 e4 23 16 9d ce 90 6c 8d 69 f1 a6 |. ..B.#....l.i..| +[6a2 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 cf e1 7d fa 51 e7 78 eb 82 a4 dd |0E.!...}.Q.x....| +00000010 df e8 cc 11 bb d5 af 09 d3 7f 30 18 ec 6e 6d 42 |..........0..nmB| +00000020 ec 40 46 e6 3b 02 20 5f b4 bc ae 05 35 03 34 9d |.@F.;. _....5.4.| +00000030 ff e7 b3 57 4e 90 ec 52 51 50 7d 5c c1 d4 9a f1 |...WN..RQP}\....| +00000040 26 18 7c 1d 54 b9 e0 |&.|.T..| +[6a3 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c638 principal evaluation succeeds for identity 0 +[6a4 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42026c638 gate 1513309757876465000 evaluation succeeds +[6a5 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins +[6a6 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins +[6a7 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +[6a8 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[6a9 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[6aa 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[6ab 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[6ac 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[6ad 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[6ae 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[6af 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[6b0 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[6b1 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[6b2 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[6b3 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[6b4 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[6b5 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[6b6 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[6b7 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[6b8 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[6b9 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[6ba 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[6bb 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[6bc 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[6bd 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[6be 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[6bf 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[6c0 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[6c1 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[6c2 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[6c3 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[6c4 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[6c5 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[6c6 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[6c7 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[6c8 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[6c9 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[6ca 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[6cb 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[6cc 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[6cd 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[6ce 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICLzCCAdWgAwIBAgIQGXf5zEgjlejkE1rJW2znwDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowaTELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFSKPRsXnXvaTTqRKjkTRYYoPjGg +TgXRAoMQwI+9AaLXTSL+AsApwlxedr+PJ+UgfBNcxey226YSZRJqLeiH/TajXzBd +MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +Af8wKQYDVR0OBCIEIPxyg8RiuCl5W+wOoXUqeRhWBcR2XF2JtWJ5qtJMQ3Y1MAoG +CCqGSM49BAMCA0gAMEUCIQCoRrlZYPh0Qnsp3Z9KitmTDkRqi6JyR4RLiOyfv8Tf +QgIgdHbFqXGTZ0HFQmknUFd5DD4TTltv8Ijmfm8J1skS4jc= +-----END CERTIFICATE----- +[6cf 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +-----END CERTIFICATE----- +[6d0 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 +-----END CERTIFICATE----- +[6d1 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[6d2 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[6d3 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[6d4 12-15 03:49:17.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[6d5 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[6d6 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[6d7 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[6d8 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[6d9 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[6da 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[6db 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[6dc 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[6dd 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQShjAwe+6sxoSMZ8UrYKOcTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTBaFw0yNzEyMTMwMzM1NTBa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +GwyyfDLH07dFVkEvxJDGOKGevUcaYHphZvhzV78MBXVwIEGIENk7Zs8x+dx6iwIK +LOGmXxq/Wqd4qLs6kFyZvqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgsK9pE/plIOV10mqefUzE +vCQU6qb0xfDYsY6TxcusE1YwCgYIKoZIzj0EAwIDSAAwRQIhAL7xXrYD1fkzcpxi +yyZhFfEvMDWCoUicQw2b+c3GQ6OuAiA0KtNuH4yS4+c13W9Lsd28XNQK88FkwB2J +QR9yhJE7rA== +-----END CERTIFICATE----- +[6de 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== +-----END CERTIFICATE----- +[6df 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== +-----END CERTIFICATE----- +[6e0 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +[6e1 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[6e2 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[6e3 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[6e4 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[6e5 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[6e6 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[6e7 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[6e8 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[6e9 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +[6ea 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAMt+4ybOK1r7B8eavLVTMBUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPGrtJtHj1Ql02gq7I0ZQQKJwvtZhp0t3rCwF1cFILTHIBM4phJ/ZYJQa1lb12pO +sxSxuEvRGTFcZXtunUc0SeWjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICSqVyrJerF7YoXDKKeV +2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCIB+psiek7FqP18l1 +3s2anbtfpiGTHbAnm2BihpD9sRPjAiAIvsdyfn+nb2bCQBK6sodbO+LxSkuZulkP +oMR3yCH/eA== +-----END CERTIFICATE----- +[6eb 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= +-----END CERTIFICATE----- +[6ec 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= +-----END CERTIFICATE----- +[6ed 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +[6ee 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +[6ef 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +[6f0 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +[6f1 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +[6f2 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +[6f3 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +[6f4 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +[6f5 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +[6f6 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +[6f7 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +[6f8 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +[6f9 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +[6fa 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +[6fb 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +[6fc 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[6fd 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[6fe 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[6ff 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[700 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[701 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[702 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[703 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[704 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[705 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[706 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[707 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +[708 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[709 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[70a 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[70b 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[70c 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[70d 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[70e 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[70f 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[710 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[711 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[712 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[713 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[714 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[715 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[716 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[717 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[718 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[719 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[71a 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[71b 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[71c 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[71d 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[71e 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[720 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.21.0.8:57110: rpc error: code = Canceled desc = context canceled +[721 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[71f 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[722 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[723 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[724 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[725 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[726 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[727 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[728 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[729 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[72a 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[72b 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[72c 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[72d 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[72e 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[72f 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[730 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +[731 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[732 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[733 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[734 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[735 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[736 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[737 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[738 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[739 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +[73a 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[73b 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[73c 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +[73d 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +[73e 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[740 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57108: rpc error: code = Canceled desc = context canceled +[741 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[73f 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[742 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[743 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[744 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[745 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...909C750B50A16E420C0D471014D469DB +[746 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: DA764810AD3EAAF714C7EED7D3249B911F0E4F4D79A1B85D6976F9E74FEFADA8 +[747 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 2 to 3, setting lastConfigBlockNum from 1 to 2 +[748 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[749 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[74a 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[74b 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[74c 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[74d 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...909C750B50A16E420C0D471014D469DB +[74e 12-15 03:49:17.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: BE55140F443298A6BAA985C8EDD7785DFC9F1DACC0CE4A8A77138D6B97FFF6B7 +[74f 12-15 03:49:17.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x68, 0x6d, 0x91, 0xee, 0x2d, 0x0, 0xda, 0x9, 0x25, 0x18, 0x90, 0xe9, 0xa9, 0xb6, 0x90, 0xc8, 0x66, 0x89, 0xfe, 0xd7, 0x8a, 0xf7, 0x59, 0xb9, 0x69, 0xf9, 0xd8, 0xb0, 0x15, 0x8, 0x78, 0x54} txOffsets= +txId= locPointer=offset=70, bytesLength=12155 +] +[750 12-15 03:49:17.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40105], isChainEmpty=[false], lastBlockNumber=[2] +[751 12-15 03:49:17.91 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 2 +[752 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[753 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.6:44968 +[754 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.6:44968 +[755 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[756 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[757 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[758 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[759 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[75a 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[75b 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAIlXD+JMST62kcDisx8EdZ4wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOmm7o/jS6n0W46EDsOZNTE89JEAsUy3 +JQpocRi7jQOPlSYtnLpN9B7pYFXldzUEYQQ6ULfRD/XfuOFxjy3jdCmjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0gAMEUCIQCaq7Zt +YoGZKFTwKxKIh0iFWj+K1p/LsaPjOd2X4ALGSAIgVHS1jGmxQaam88SeKViUck5+ +IDNK9dYOsiKBpmoLVDw= +-----END CERTIFICATE----- +[75c 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e640 gate 1513309760882868900 evaluation starts +[75d 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e640 signed by 0 principal evaluation starts (used [false]) +[75e 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e640 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241496c58442b4a4d535436326b63446973783845645a3477436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455775768634e4d6a63784d6a457a4d444d7a4e5455770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424f6d6d376f2f6a53366e305734364544734f5a4e544538394a4541735579330a4a51706f635269376a514f506c5359746e4c704e394237705946586c647a554559515136554c6652442f5866754f46786a79336a64436d6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4376615250365a53446c0a64644a716e6e314d784c776b464f716d394d5877324c474f6b38584c72424e574d416f4743437147534d343942414d43413067414d4555434951436171375a740a596f475a4b4654774b784b4968306946576a2b4b31702f4c7361506a4f64325834414c4753414967564853316a476d785161616d383853654b566955636b352b0a49444e4b3964594f73694b42706d6f4c5644773d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[75f 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e640 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +[760 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e640 principal evaluation fails +[761 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e640 gate 1513309760882868900 evaluation fails +[762 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +[763 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[764 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[765 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e650 gate 1513309760883814800 evaluation starts +[766 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e650 signed by 0 principal evaluation starts (used [false]) +[767 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e650 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241496c58442b4a4d535436326b63446973783845645a3477436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455775768634e4d6a63784d6a457a4d444d7a4e5455770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424f6d6d376f2f6a53366e305734364544734f5a4e544538394a4541735579330a4a51706f635269376a514f506c5359746e4c704e394237705946586c647a554559515136554c6652442f5866754f46786a79336a64436d6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4376615250365a53446c0a64644a716e6e314d784c776b464f716d394d5877324c474f6b38584c72424e574d416f4743437147534d343942414d43413067414d4555434951436171375a740a596f475a4b4654774b784b4968306946576a2b4b31702f4c7361506a4f64325834414c4753414967564853316a476d785161616d383853654b566955636b352b0a49444e4b3964594f73694b42706d6f4c5644773d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[768 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[769 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +[76a 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e650 principal matched by identity 0 +[76b 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 72 5b b1 65 67 2a 27 b0 37 64 33 e3 0f 2a 8c 76 |r[.eg*'.7d3..*.v| +00000010 fb c3 57 7b d9 db f0 e9 c6 12 53 43 fe b9 06 51 |..W{......SC...Q| +[76c 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 60 0b fe c5 c0 41 a4 c3 bb 0a 49 e5 |0D. `....A....I.| +00000010 b9 bc 0e 04 dc 5c 13 1f f5 ed f6 2e 48 8a c7 3d |.....\......H..=| +00000020 23 bd a4 00 02 20 13 a3 93 e7 3f 6e 36 2c e3 b3 |#.... ....?n6,..| +00000030 de 98 f7 28 88 48 6b e7 d3 4a 0e cd 05 e4 c6 68 |...(.Hk..J.....h| +00000040 1b 25 20 61 fc 79 |.% a.y| +[76d 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e650 principal evaluation succeeds for identity 0 +[76e 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e650 gate 1513309760883814800 evaluation succeeds +[76f 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers +[770 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[771 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +[772 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[773 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[774 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[775 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420179c20) start: > stop: > from 172.21.0.6:44968 +[776 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 +[777 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12126] +[778 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27979], Going to peek [8] bytes +[779 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13958], placementInfo={fileNum=[0], startOffset=[12126], bytesOffset=[12128]} +[77a 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13958] read from file [0] +[77b 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420179c20) for 172.21.0.6:44968 +[77c 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14019], Going to peek [8] bytes +[77d 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14017], placementInfo={fileNum=[0], startOffset=[26086], bytesOffset=[26088]} +[77e 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14017] read from file [0] +[77f 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420179c20) for 172.21.0.6:44968 +[780 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] +[781 12-15 03:49:21.23 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[782 12-15 03:49:21.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.4:40772 +[783 12-15 03:49:21.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.4:40772 +[784 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[785 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[786 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[787 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[788 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[789 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[78a 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAL3NzKek8hEVtKQG033nrA0wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABFKf/1ShMneEIuqfjyHxBUmpAZ9XoizD +0PYfXItXn9uvZ5vGWBGx0EXP22NaIrjBDeSOzI0qqWOHUBHefAfJ6KujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0cAMEQCICpmK2/d +duNwsmfdFxvEOOjUejsdtnE3KAnUx/kgAab7AiB+CrG8fUMqQAzKC7pBOY2USIYc +WI7/XhL+fOOqr3SNYw== +-----END CERTIFICATE----- +[78b 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026cc38 gate 1513309761242241800 evaluation starts +[78c 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026cc38 signed by 0 principal evaluation starts (used [false]) +[78d 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026cc38 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414c334e7a4b656b38684556744b51473033336e72413077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455785768634e4d6a63784d6a457a4d444d7a4e5455780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142464b662f3153684d6e6545497571666a79487842556d70415a39586f697a440a30505966584974586e3975765a357647574247783045585032324e6149726a424465534f7a49307171574f48554248656641664a364b756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494353715679724a657246370a596f58444b4b65563241582f366b3659677a3665415031344b4f6566356d71374d416f4743437147534d343942414d43413063414d4551434943706d4b322f640a64754e77736d6664467876454f4f6a55656a7364746e45334b416e55782f6b67416162374169422b4372473866554d7151417a4b433770424f593255534959630a5749372f58684c2b664f4f717233534e59773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[78e 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[78f 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +[790 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026cc38 principal matched by identity 0 +[791 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 43 4d de 7e 27 ee 47 4e e2 26 b7 0f c3 7e b0 37 |CM.~'.GN.&...~.7| +00000010 12 78 29 95 c8 9f cb 77 79 92 0d 6b 19 48 b3 26 |.x)....wy..k.H.&| +[792 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 54 a2 e1 c5 bc b8 9b a6 47 9d e7 47 |0D. T.......G..G| +00000010 24 85 80 a3 ea 71 1b 22 42 83 66 75 75 21 d3 d4 |$....q."B.fuu!..| +00000020 17 81 0e 9e 02 20 38 48 68 a2 34 ea 77 04 09 c0 |..... 8Hh.4.w...| +00000030 b0 4c 17 02 d4 a5 f3 a5 8d 46 ab f5 c5 b8 c8 3a |.L.......F.....:| +00000040 b8 40 95 29 07 50 |.@.).P| +[793 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026cc38 principal evaluation succeeds for identity 0 +[794 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026cc38 gate 1513309761242241800 evaluation succeeds +[795 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers +[796 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[797 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +[798 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[799 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[79a 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[79b 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420ad1060) start: > stop: > from 172.21.0.4:40772 +[79c 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 +[79d 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12126] +[79e 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27979], Going to peek [8] bytes +[79f 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13958], placementInfo={fileNum=[0], startOffset=[12126], bytesOffset=[12128]} +[7a0 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13958] read from file [0] +[7a1 12-15 03:49:21.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420ad1060) for 172.21.0.4:40772 +[7a2 12-15 03:49:21.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14019], Going to peek [8] bytes +[7a3 12-15 03:49:21.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14017], placementInfo={fileNum=[0], startOffset=[26086], bytesOffset=[26088]} +[7a4 12-15 03:49:21.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14017] read from file [0] +[7a5 12-15 03:49:21.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420ad1060) for 172.21.0.4:40772 +[7a6 12-15 03:49:21.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] +[7a7 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[7a8 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.7:33460 +[7a9 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.7:33460 +[7aa 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[7ab 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[7ac 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[7ad 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[7ae 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[7af 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[7b0 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGDCCAb+gAwIBAgIQL9CD8dvgLK0sQ8PWDq6MlDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTUwMzM1NTFaFw0yNzEyMTMwMzM1NTFa MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk -EEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT -6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB -9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf -ZM8rwLlgV6XUeTLW +YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE1IBtaTQvUUa1aH1RcjXk6b/7FmkPvt41 +C+GnAdJEv2tGOHK7/M+PDVx5ajf4vbVpMiz4wM+BRsI3yZuQnfH6lqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgJKpXKsl6sXti +hcMop5XYBf/qTpiDPp4A/Xgo55/marswCgYIKoZIzj0EAwIDRwAwRAIgb98dbAnO +yIHId+rwemQQ9aQidqLj7W9820b/BSYGcBoCIEtU2XV647baneViWaeGuWLhola7 +vPzasLRP5tn/reUi -----END CERTIFICATE----- -[b20 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e570 gate 1513088403461724000 evaluation starts -[b21 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e570 signed by 0 principal evaluation starts (used [false]) -[b22 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e570 processing identity 0 with bytes of 0a074f7267324d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b67417749424167495142487a565451465670357636657347472f4146767044414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544661467730794e7a45794d5441774f4451774d5446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414549514f2b6d3649736c4a37534732682f415774365570564762496648312b586b0a454541534c76597a3177514c576837336a556d72446530473755684c355275796d6b337548312b5156534b587364553833474e7337714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416748545163787371594e4a58540a364f6b4c4e464e7353654b6b556e30444a50324c4e444f596a3261704a6a3077436759494b6f5a497a6a30454177494452774177524149674d6e6f444c7976420a396f4e6c4a6c564e5876647371582f72722f614c6743626c5952626374304c36575538434941774a6964677163706e565737344f3334556268416e65715143660a5a4d3872774c6c675636585565544c570a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[b23 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e570 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -[b24 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e570 principal evaluation fails -[b25 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e570 gate 1513088403461724000 evaluation fails -[b26 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -[b27 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -[b28 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -[b29 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -[b2a 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[b2b 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -[b2c 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b2d 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -[b2e 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e580 gate 1513088403462961600 evaluation starts -[b2f 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e580 signed by 0 principal evaluation starts (used [false]) -[b30 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e580 processing identity 0 with bytes of 0a074f7267324d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b67417749424167495142487a565451465670357636657347472f4146767044414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544661467730794e7a45794d5441774f4451774d5446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414549514f2b6d3649736c4a37534732682f415774365570564762496648312b586b0a454541534c76597a3177514c576837336a556d72446530473755684c355275796d6b337548312b5156534b587364553833474e7337714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416748545163787371594e4a58540a364f6b4c4e464e7353654b6b556e30444a50324c4e444f596a3261704a6a3077436759494b6f5a497a6a30454177494452774177524149674d6e6f444c7976420a396f4e6c4a6c564e5876647371582f72722f614c6743626c5952626374304c36575538434941774a6964677163706e565737344f3334556268416e65715143660a5a4d3872774c6c675636585565544c570a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[b31 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[b32 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[b33 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e580 principal matched by identity 0 -[b34 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 76 47 3c 5a 3e 9d 1e fa 5d 72 ec 34 98 34 1c 50 |vG...]r.4.4.P| -00000010 51 62 3e ca 89 fa cb 5f 96 78 b9 52 eb ec 63 90 |Qb>...._.x.R..c.| -[b35 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c4 e1 1f 22 5f e0 80 56 39 b6 a6 |0E.!...."_..V9..| -00000010 ab 7d 3f 45 8f 73 1b 69 4d 08 19 4f 6a 1c 2b 13 |.}?E.s.iM..Oj.+.| -00000020 43 15 a5 f0 23 02 20 06 2d 38 81 52 7c 5b 32 9f |C...#. .-8.R|[2.| -00000030 90 ba 03 f6 24 7c 40 1c 04 72 f5 29 78 1a 88 61 |....$|@..r.)x..a| -00000040 cc 62 92 f0 67 02 41 |.b..g.A| -[b36 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e580 principal evaluation succeeds for identity 0 -[b37 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e580 gate 1513088403462961600 evaluation succeeds -[b38 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers -[b39 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -[b3a 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -[b3b 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -[b3c 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[b3d 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[b3e 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:36832 -[b3f 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -[b40 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:36832: rpc error: code = Canceled desc = context canceled -[b41 12-12 14:20:03.46 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[b42 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -[b43 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[b44 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[b45 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[b46 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[b47 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...9AFEC7357150AA9A2EDB3CC683846275 -[b48 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 1E30D84C7D0A05C8B688163FA3D4446BDF5212ABB767C573B1AABF0B2F11AECD -[b49 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[b4a 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[b4b 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[b4c 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[b4d 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[b4e 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...9AFEC7357150AA9A2EDB3CC683846275 -[b4f 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: ECB78B7685883DB046980073468947C43461B2D080F7FD2F043B85E48F6E2A5C -[b50 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] commitBlock.Append.Append.writeBlock -> DEBU Wrote block 4 -[b51 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 4 -[b52 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 4 -[b54 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 4 -[b55 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3ce0) for 172.18.0.5:33552 -[b53 12-12 14:20:05.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420112980) for 172.18.0.4:60104 -[b56 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[b57 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:36846 -[b58 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:36846 with txid '772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7' of type ENDORSER_TRANSACTION -[b59 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[b5a 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b5b 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[b5c 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b5d 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[b5e 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e600 gate 1513088410517518600 evaluation starts -[b5f 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e600 signed by 0 principal evaluation starts (used [false]) -[b60 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e600 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[b61 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e600 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[b62 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e600 principal evaluation fails -[b63 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e600 gate 1513088410517518600 evaluation fails -[b64 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -[b65 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -[b66 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -[b67 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -[b68 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[b69 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -[b6a 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b6b 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -[b6c 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e608 gate 1513088410518421400 evaluation starts -[b6d 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e608 signed by 0 principal evaluation starts (used [false]) -[b6e 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e608 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[b6f 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e608 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[b70 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e608 principal evaluation fails -[b71 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e608 gate 1513088410518421400 evaluation fails -[b72 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers -[b73 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -[b74 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -[b75 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e610 gate 1513088410518917600 evaluation starts -[b76 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e610 signed by 0 principal evaluation starts (used [false]) -[b77 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e610 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495144412b33544b5157434b427a4656376775504759786a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544261467730794e7a45794d5441774f4451774d5442610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145775a744652674949544269532b346b3262546e45626d2f554f345269547668760a707964436772504630417442474d6437366741696148567a2b5832632b496152704d4c6d5850416f635445786f3762386377383772614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b522f705a572b3233317a530a712b66766e6973624f6c482f785751677043566572454568444f654971566377436759494b6f5a497a6a304541774944534141775251496841496364674f30630a674841637a6d317459387539727055394c70394972485432622b476963505939542f65304169427933576f4b4f474a4c673153514d6a6e42566c2b31436d4c660a4f774a706f796e4e43794b73576f7a7556773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[b78 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[b79 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[b7a 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e610 principal matched by identity 0 -[b7b 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ee f4 0d a1 6b 9c 16 51 f9 fd e1 2c 8c c5 17 23 |....k..Q...,...#| -00000010 19 24 ac e6 a0 04 80 8f 56 63 3c 1b f7 2e 3a 95 |.$......Vc<...:.| -[b7c 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f4 b0 06 15 a4 91 f6 54 92 2d 9f |0E.!........T.-.| -00000010 93 29 6a b8 00 cd 3e af 56 68 ae 6a 95 7f 53 a8 |.)j...>.Vh.j..S.| -00000020 5a 8a ed b6 55 02 20 13 6a db 9f 95 e4 91 1f cc |Z...U. .j.......| -00000030 d2 39 10 54 6a 15 0f cd 40 f5 4a c4 0d b9 61 37 |.9.Tj...@.J...a7| -00000040 23 c6 fa 32 72 3f f2 |#..2r?.| -[b7d 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e610 principal evaluation succeeds for identity 0 -[b7e 12-12 14:20:10.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e610 gate 1513088410518917600 evaluation succeeds -[b7f 12-12 14:20:10.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers -[b80 12-12 14:20:10.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -[b81 12-12 14:20:10.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -[b82 12-12 14:20:10.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -[b83 12-12 14:20:10.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[b84 12-12 14:20:10.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[b85 12-12 14:20:10.52 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:36846 -[b87 12-12 14:20:10.53 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:36846: rpc error: code = Canceled desc = context canceled -[b88 12-12 14:20:10.53 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[b86 12-12 14:20:10.52 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -[b89 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -[b8a 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[b8b 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[b8c 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[b8d 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[b8e 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...BDC5D3CBDAA2674025F66514D158D418 -[b8f 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 46E1BF6F44B3F3B74C99ECF92EF844ED1DFA835C8AFC32C63CDE6205E238426A -[b90 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[b91 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[b92 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[b93 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[b94 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[b95 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...BDC5D3CBDAA2674025F66514D158D418 -[b96 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 03C9F3737ACBD21F0450C4BBF5CA9E47265E8136FEBF419F43D9E7AA67DFC46B -[b97 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] commitBlock.Append.Append.writeBlock -> DEBU Wrote block 5 -[b98 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 5 -[b99 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 5 -[b9a 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420112980) for 172.18.0.4:60104 -[b9b 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 5 -[b9c 12-12 14:20:12.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3ce0) for 172.18.0.5:33552 -[b9d 12-12 14:20:17.47 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[b9e 12-12 14:20:17.47 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:36856 -[b9f 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:36856 with txid 'd7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a' of type ENDORSER_TRANSACTION -[ba0 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[ba1 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[ba2 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[ba3 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[ba4 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[ba5 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201163a8 gate 1513088417502468200 evaluation starts -[ba6 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163a8 signed by 0 principal evaluation starts (used [false]) -[ba7 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163a8 processing identity 0 with bytes of 0a074f7267324d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b67417749424167495142487a565451465670357636657347472f4146767044414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544661467730794e7a45794d5441774f4451774d5446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414549514f2b6d3649736c4a37534732682f415774365570564762496648312b586b0a454541534c76597a3177514c576837336a556d72446530473755684c355275796d6b337548312b5156534b587364553833474e7337714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416748545163787371594e4a58540a364f6b4c4e464e7353654b6b556e30444a50324c4e444f596a3261704a6a3077436759494b6f5a497a6a30454177494452774177524149674d6e6f444c7976420a396f4e6c4a6c564e5876647371582f72722f614c6743626c5952626374304c36575538434941774a6964677163706e565737344f3334556268416e65715143660a5a4d3872774c6c675636585565544c570a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[ba8 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -[ba9 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163a8 principal evaluation fails -[baa 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201163a8 gate 1513088417502468200 evaluation fails -[bab 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -[bac 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -[bad 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -[bae 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -[baf 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[bb0 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -[bb1 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[bb2 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -[bb3 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201163c0 gate 1513088417504023600 evaluation starts -[bb4 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163c0 signed by 0 principal evaluation starts (used [false]) -[bb5 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163c0 processing identity 0 with bytes of 0a074f7267324d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b67417749424167495142487a565451465670357636657347472f4146767044414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d5449774f4451774d544661467730794e7a45794d5441774f4451774d5446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414549514f2b6d3649736c4a37534732682f415774365570564762496648312b586b0a454541534c76597a3177514c576837336a556d72446530473755684c355275796d6b337548312b5156534b587364553833474e7337714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416748545163787371594e4a58540a364f6b4c4e464e7353654b6b556e30444a50324c4e444f596a3261704a6a3077436759494b6f5a497a6a30454177494452774177524149674d6e6f444c7976420a396f4e6c4a6c564e5876647371582f72722f614c6743626c5952626374304c36575538434941774a6964677163706e565737344f3334556268416e65715143660a5a4d3872774c6c675636585565544c570a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[bb6 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[bb7 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[bb8 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163c0 principal matched by identity 0 -[bb9 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 35 3a 35 b8 fb 7b 13 cd e6 b3 66 77 87 9d a7 80 |5:5..{....fw....| -00000010 dc 0a 73 56 31 a1 cc d8 21 49 21 a0 e5 5c 08 cb |..sV1...!I!..\..| -[bba 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 05 ab 88 b4 51 b2 de 7d f3 d7 07 a8 |0D. ....Q..}....| -00000010 46 b5 5c f5 90 81 5b f6 be 61 64 54 6a 0a de d4 |F.\...[..adTj...| -00000020 27 57 6f 22 02 20 33 26 f0 7b cf a5 47 88 d8 50 |'Wo". 3&.{..G..P| -00000030 77 d5 6f 12 c5 56 9b bd fa 8d bb ba 5c de 83 03 |w.o..V......\...| -00000040 01 80 fa 8a c1 cf |......| -[bbb 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163c0 principal evaluation succeeds for identity 0 -[bbc 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201163c0 gate 1513088417504023600 evaluation succeeds -[bbd 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers -[bbe 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -[bbf 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -[bc0 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -[bc1 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[bc2 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[bc4 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -[bc3 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:36856 -[bc5 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:36856: rpc error: code = Canceled desc = context canceled -[bc6 12-12 14:20:17.50 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[bc7 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[bc8 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36876 -[bc9 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36876 -[bca 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[bcb 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[bcc 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[bcd 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[bce 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[bcf 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[bd0 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw +[7b1 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e038 gate 1513309761443725200 evaluation starts +[7b2 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 signed by 0 principal evaluation starts (used [false]) +[7b3 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 processing identity 0 with bytes of 0a074f7267324d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749514c394344386476674c4b3073513850574471364d6c44414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d5455774d7a4d314e544661467730794e7a45794d544d774d7a4d314e5446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d533576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414531494274615451765555613161483152636a586b36622f37466d6b50767434310a432b476e41644a45763274474f484b372f4d2b5044567835616a6634766256704d697a34774d2b4252734933795a75516e6648366c714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674a4b70584b736c36735874690a68634d6f7035585942662f7154706944507034412f58676f35352f6d61727377436759494b6f5a497a6a30454177494452774177524149676239386462416e4f0a79494849642b7277656d51513961516964714c6a375739383230622f4253594763426f434945745532585636343762616e6556695761654775574c686f6c61370a76507a61734c525035746e2f726555690a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[7b4 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[7b5 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +[7b6 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 principal matched by identity 0 +[7b7 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 2a ed 49 ab 9a 8e f8 20 66 8a e6 62 1c 5e 7d 52 |*.I.... f..b.^}R| +00000010 73 c6 76 b0 ae 75 0d 15 6e 11 09 94 61 cf 8d c5 |s.v..u..n...a...| +[7b8 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 72 d3 cb 3e 06 9d ad d0 e3 5e cc 45 |0D. r..>.....^.E| +00000010 3e 98 92 95 7a de 93 ac ed 3b 6d 0f ed 5d b1 5e |>...z....;m..].^| +00000020 c4 85 3d ee 02 20 00 93 3b da 8b a1 78 6b 9b 65 |..=.. ..;...xk.e| +00000030 0a 0f fe 06 9b d6 fc 86 69 d7 13 0c 51 39 fc 20 |........i...Q9. | +00000040 f1 9d 20 bf 70 a1 |.. .p.| +[7b9 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 principal evaluation succeeds for identity 0 +[7ba 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e038 gate 1513309761443725200 evaluation succeeds +[7bb 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers +[7bc 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[7bd 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +[7be 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[7bf 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[7c0 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[7c1 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420d31860) start: > stop: > from 172.21.0.7:33460 +[7c2 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 +[7c3 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12126] +[7c4 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27979], Going to peek [8] bytes +[7c5 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13958], placementInfo={fileNum=[0], startOffset=[12126], bytesOffset=[12128]} +[7c6 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13958] read from file [0] +[7c7 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420d31860) for 172.21.0.7:33460 +[7c8 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14019], Going to peek [8] bytes +[7c9 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14017], placementInfo={fileNum=[0], startOffset=[26086], bytesOffset=[26088]} +[7ca 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14017] read from file [0] +[7cb 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420d31860) for 172.21.0.7:33460 +[7cc 12-15 03:49:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] +[7cd 12-15 03:49:22.48 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[7ce 12-15 03:49:22.48 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.21.0.8:57162 +[7cf 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.21.0.8:57162 with txid '2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60' of type ENDORSER_TRANSACTION +[7d0 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +[7d1 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[7d2 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +[7d3 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[7d4 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +[7d5 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[7d6 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A +kokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx +OfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc +bqEi6/lY2kK0EtGRnA== +-----END CERTIFICATE----- +[7d7 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e548 gate 1513309770158803600 evaluation starts +[7d8 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e548 signed by 0 principal evaluation starts (used [false]) +[7d9 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e548 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b78664b6f3271717459665054415039526b4136796f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455775768634e4d6a63784d6a457a4d444d7a4e5455770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424c493853704e726b4330415968693747496377353237505056364e75682b410a6b6f6b7670516355436746536d373374595a375141556c5446384e2f5642424e51436e464c326b72756b4f4c6431496f4237776e5a6e756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4376615250365a53446c0a64644a716e6e314d784c776b464f716d394d5877324c474f6b38584c72424e574d416f4743437147534d343942414d43413063414d455143494235334a6546780a4f665644446c692b4a6955636b463459376b4d64595550714778477373755948305570694169416f7159577a596a4f4c397071677874495430332f59717370630a62714569362f6c59326b4b30457447526e413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[7da 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[7db 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +[7dc 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e548 principal matched by identity 0 +[7dd 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 37 d1 ab 05 bf a4 51 fa a4 52 b2 03 2c d3 7f b5 |7.....Q..R..,...| +00000010 32 37 36 aa 78 a0 fb 89 d1 bd 34 10 81 1d 6a 9b |276.x.....4...j.| +[7de 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5d 89 f8 45 84 1c 41 2c d5 ca 34 d9 |0D. ]..E..A,..4.| +00000010 1f 75 69 7f 8a 0f cb ca e3 86 11 97 2e 8c c7 08 |.ui.............| +00000020 9f a2 1e a1 02 20 77 7a 72 a3 fb 9f 02 8e a6 f7 |..... wzr.......| +00000030 67 56 88 95 bc 3d 44 f5 10 6b 8e c7 74 6c e5 ab |gV...=D..k..tl..| +00000040 95 62 8b 7d 45 63 |.b.}Ec| +[7df 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e548 principal evaluation succeeds for identity 0 +[7e0 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e548 gate 1513309770158803600 evaluation succeeds +[7e1 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers +[7e2 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +[7e3 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +[7e4 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +[7e5 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +[7e6 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +[7e7 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.21.0.8:57162 +[7e8 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +[7e9 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/common/flogging] serveHTTP2Transport.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.21.0.5:7050->172.21.0.8:57162: read: connection reset by peer +[7ea 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.21.0.8:57162: rpc error: code = Canceled desc = context canceled +[7eb 12-15 03:49:30.16 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[7ec 12-15 03:49:30.31 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[7ed 12-15 03:49:30.31 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.21.0.8:57170 +[7ee 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block +[7ef 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[7f0 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[7f1 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[7f2 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[7f3 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...6015B6D50E0D12C6832F6AFE19D90282 +[7f4 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 645C60B4B821BC6D7C19874C3E98022D5CB8FAD49A5734D81F2494D3626AE50B +[7f5 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[7f6 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[7f7 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[7f8 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[7f9 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[7fa 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...6015B6D50E0D12C6832F6AFE19D90282 +[7fb 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 6E84D209A4CBDEC2B73E15F6467C0876A6FB6CF85B73DBE6EF124D954460CAA3 +[7fc 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xbd, 0x1d, 0x3e, 0x71, 0x54, 0x7d, 0x18, 0xea, 0x68, 0xf5, 0xac, 0xe5, 0x8c, 0xfe, 0x88, 0x50, 0x5, 0xc9, 0x4a, 0xf7, 0x43, 0x38, 0xe6, 0x11, 0x25, 0x7e, 0xb7, 0xf4, 0xb1, 0x42, 0x13, 0xae} txOffsets= +txId=2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 locPointer=offset=70, bytesLength=3454 +] +[7fd 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45423], isChainEmpty=[false], lastBlockNumber=[3] +[7fe 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 3 +[7ff 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] +[800 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5318], Going to peek [8] bytes +[801 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5316], placementInfo={fileNum=[0], startOffset=[40105], bytesOffset=[40107]} +[803 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5316] read from file [0] +[804 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420d31860) for 172.21.0.7:33460 +[802 12-15 03:49:32.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] +[805 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] +[806 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] +[807 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5318], Going to peek [8] bytes +[808 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5316], placementInfo={fileNum=[0], startOffset=[40105], bytesOffset=[40107]} +[809 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5316] read from file [0] +[80a 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420ad1060) for 172.21.0.4:40772 +[80b 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> WARN [channel: businesschannel] Error sending to 172.21.0.4:40772: rpc error: code = Canceled desc = context canceled +[80c 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[80d 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] +[80e 12-15 03:49:32.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] +[80f 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5318], Going to peek [8] bytes +[810 12-15 03:49:32.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5316], placementInfo={fileNum=[0], startOffset=[40105], bytesOffset=[40107]} +[811 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5316] read from file [0] +[812 12-15 03:49:32.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420179c20) for 172.21.0.6:44968 +[813 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] +[814 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.21.0.8:57170 with txid '912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218' of type ENDORSER_TRANSACTION +[815 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +[816 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[817 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +[818 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[819 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +[81a 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[81b 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv +VLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7 +YoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2 +8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0 +N5+z/fTTfchGfLaCtzM= +-----END CERTIFICATE----- +[81c 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c078 gate 1513309777767466600 evaluation starts +[81d 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c078 signed by 0 principal evaluation starts (used [false]) +[81e 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c078 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414d4b66625241343136702b6653617851357150386a5977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455785768634e4d6a63784d6a457a4d444d7a4e5455780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d2f682f2b44587872326c4d315674504477686c41794a56723458742b4b760a564c536d65592b6d58352f2b38303253504d7049785a4b456636356a7a7461734b427847624f67414262657978336f58476437646538716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494353715679724a657246370a596f58444b4b65563241582f366b3659677a3665415031344b4f6566356d71374d416f4743437147534d343942414d43413067414d4555434951443449584b320a386241457353656e5a65752b4e2f35306b3262566a4c50734d734a337345393141726c50784149675862324b3238594f47414c59465873592f74476b2b612f300a4e352b7a2f66545466636847664c6143747a4d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[81f 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c078 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +[820 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c078 principal evaluation fails +[821 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c078 gate 1513309777767466600 evaluation fails +[822 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Writers +[823 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +[824 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == +[825 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c088 gate 1513309777767846700 evaluation starts +[826 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c088 signed by 0 principal evaluation starts (used [false]) +[827 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c088 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414d4b66625241343136702b6653617851357150386a5977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455785768634e4d6a63784d6a457a4d444d7a4e5455780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d2f682f2b44587872326c4d315674504477686c41794a56723458742b4b760a564c536d65592b6d58352f2b38303253504d7049785a4b456636356a7a7461734b427847624f67414262657978336f58476437646538716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494353715679724a657246370a596f58444b4b65563241582f366b3659677a3665415031344b4f6566356d71374d416f4743437147534d343942414d43413067414d4555434951443449584b320a386241457353656e5a65752b4e2f35306b3262566a4c50734d734a337345393141726c50784149675862324b3238594f47414c59465873592f74476b2b612f300a4e352b7a2f66545466636847664c6143747a4d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[828 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[829 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +[82a 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c088 principal matched by identity 0 +[82b 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 36 26 50 e1 b2 f7 95 14 c2 40 1b ca 7e fb e4 f4 |6&P......@..~...| +00000010 6f b2 c1 78 83 a5 33 70 4b 9a aa 1a c9 2e dc c4 |o..x..3pK.......| +[82c 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 80 72 3c a6 e3 cf 2a a0 31 25 32 |0E.!..r<...*.1%2| +00000010 1b ea 6e 6c 4d f4 ee 36 ba 0d 7a 54 13 c3 ba 6f |..nlM..6..zT...o| +00000020 26 ee 75 2c ba 02 20 67 08 fb 3d b8 5d c5 c2 35 |&.u,.. g..=.]..5| +00000030 b0 16 a3 21 11 e7 28 3e be 9a fc 72 b7 a8 53 5e |...!..(>...r..S^| +00000040 2e b9 09 61 9b 1c eb |...a...| +[82d 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c088 principal evaluation succeeds for identity 0 +[82e 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c088 gate 1513309777767846700 evaluation succeeds +[82f 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers +[830 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +[831 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +[832 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +[833 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +[834 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +[835 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.21.0.8:57170 +[836 12-15 03:49:37.76 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +[837 12-15 03:49:37.77 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.21.0.8:57170: rpc error: code = Canceled desc = context canceled +[838 12-15 03:49:37.77 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[839 12-15 03:49:39.76 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block +[83a 12-15 03:49:39.76 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[83b 12-15 03:49:39.76 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[83c 12-15 03:49:39.76 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[83d 12-15 03:49:39.76 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[83e 12-15 03:49:39.76 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...1661D8DE9DE1F25EDF6EA03262E66E34 +[83f 12-15 03:49:39.76 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: EA6D95163F121C5D19B0380C5C76524D961E2508763ECBDFE662B725B2EB1D44 +[840 12-15 03:49:39.76 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[841 12-15 03:49:39.76 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[842 12-15 03:49:39.76 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[843 12-15 03:49:39.76 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[844 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[845 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...1661D8DE9DE1F25EDF6EA03262E66E34 +[846 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: E13B4959CE3F361B67A573A9F8C028A2F542B8C56FDE191DB1D0FBB1D7CB7087 +[847 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x16, 0x8f, 0x87, 0x62, 0x56, 0x57, 0x56, 0x27, 0xf7, 0xf4, 0x70, 0xdb, 0x81, 0x94, 0xc0, 0xac, 0xf4, 0x6c, 0x89, 0xd9, 0x2e, 0x92, 0x8f, 0x5e, 0xb2, 0xa6, 0x41, 0xed, 0x97, 0x77, 0x61, 0xc3} txOffsets= +txId=912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 locPointer=offset=70, bytesLength=3454 +] +[848 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50742], isChainEmpty=[false], lastBlockNumber=[4] +[849 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 4 +[84a 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[4] +[84b 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5319], Going to peek [8] bytes +[84c 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5317], placementInfo={fileNum=[0], startOffset=[45423], bytesOffset=[45425]} +[84e 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5317] read from file [0] +[84d 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[4] +[84f 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420179c20) for 172.21.0.6:44968 +[851 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[4], waitForBlockNum=[5] +[850 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5319], Going to peek [8] bytes +[852 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5317], placementInfo={fileNum=[0], startOffset=[45423], bytesOffset=[45425]} +[853 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5317] read from file [0] +[854 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420d31860) for 172.21.0.7:33460 +[855 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[4], waitForBlockNum=[5] +[856 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[857 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.21.0.8:57180 +[858 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.21.0.8:57180 with txid '522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e' of type ENDORSER_TRANSACTION +[859 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +[85a 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[85b 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +[85c 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[85d 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +[85e 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c0d8 gate 1513309785216349100 evaluation starts +[85f 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c0d8 signed by 0 principal evaluation starts (used [false]) +[860 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c0d8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b78664b6f3271717459665054415039526b4136796f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455775768634e4d6a63784d6a457a4d444d7a4e5455770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424c493853704e726b4330415968693747496377353237505056364e75682b410a6b6f6b7670516355436746536d373374595a375141556c5446384e2f5642424e51436e464c326b72756b4f4c6431496f4237776e5a6e756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4376615250365a53446c0a64644a716e6e314d784c776b464f716d394d5877324c474f6b38584c72424e574d416f4743437147534d343942414d43413063414d455143494235334a6546780a4f665644446c692b4a6955636b463459376b4d64595550714778477373755948305570694169416f7159577a596a4f4c397071677874495430332f59717370630a62714569362f6c59326b4b30457447526e413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[861 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[862 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +[863 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c0d8 principal matched by identity 0 +[864 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 5c 70 fd 4e c4 5c 19 5e 77 98 d9 ea b3 68 ba fe |\p.N.\.^w....h..| +00000010 95 45 67 c9 4b 0f db 42 25 0c 11 c3 ee a0 67 35 |.Eg.K..B%.....g5| +[865 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 0c ba 90 89 6d 59 24 ee 92 c4 f1 c5 |0D. ....mY$.....| +00000010 22 22 a5 53 df cf 78 e5 fa 7e 57 4b 62 96 fe 24 |"".S..x..~WKb..$| +00000020 8e 3c 3c c6 02 20 35 6c e0 4e b6 6f d6 f8 eb bc |.<<.. 5l.N.o....| +00000030 55 c8 b1 45 4d f9 d6 eb 74 d2 f2 3f 48 6a ff dc |U..EM...t..?Hj..| +00000040 cf 48 dd 2b a7 ed |.H.+..| +[866 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c0d8 principal evaluation succeeds for identity 0 +[867 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c0d8 gate 1513309785216349100 evaluation succeeds +[868 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers +[869 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +[86a 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +[86b 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +[86c 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +[86d 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +[86e 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.21.0.8:57180 +[86f 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +[870 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.21.0.8:57180: rpc error: code = Canceled desc = context canceled +[871 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[872 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block +[873 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[874 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[875 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[876 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[877 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...2D1ADD009853F709AEBF5027887E70FC +[878 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 519E94470CFC18CF99DC5F398153945312D6B4362384ECB9907F5808D115370A +[879 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[87a 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[87b 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[87c 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[87d 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[87e 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...2D1ADD009853F709AEBF5027887E70FC +[87f 12-15 03:49:47.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: E16E2205E4118F86C002AB521C879C07618C47B004B5ED1546A30D2BB2F3A54E +[880 12-15 03:49:47.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xcb, 0xcf, 0xb6, 0xae, 0xe4, 0xec, 0x84, 0x3d, 0xff, 0x69, 0xec, 0xe8, 0x67, 0xe0, 0x4, 0x97, 0xd4, 0xed, 0x51, 0x58, 0x9c, 0x6d, 0xdb, 0x2f, 0x52, 0xb2, 0x7b, 0xe3, 0x9b, 0x2a, 0xb2, 0x78} txOffsets= +txId=522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e locPointer=offset=70, bytesLength=2913 +] +[881 12-15 03:49:48.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55518], isChainEmpty=[false], lastBlockNumber=[5] +[882 12-15 03:49:48.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[5] +[883 12-15 03:49:48.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4776], Going to peek [8] bytes +[886 12-15 03:49:48.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4774], placementInfo={fileNum=[0], startOffset=[50742], bytesOffset=[50744]} +[887 12-15 03:49:48.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4774] read from file [0] +[888 12-15 03:49:48.10 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420179c20) for 172.21.0.6:44968 +[884 12-15 03:49:48.10 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 5 +[885 12-15 03:49:48.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[5] +[889 12-15 03:49:48.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4776], Going to peek [8] bytes +[88a 12-15 03:49:48.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4774], placementInfo={fileNum=[0], startOffset=[50742], bytesOffset=[50744]} +[88b 12-15 03:49:48.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4774] read from file [0] +[88c 12-15 03:49:48.10 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420d31860) for 172.21.0.7:33460 +[88d 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[5], waitForBlockNum=[6] +[88e 12-15 03:49:48.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[5], waitForBlockNum=[6] +[88f 12-15 03:49:54.61 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[890 12-15 03:49:54.61 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.21.0.8:57190 +[891 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.21.0.8:57190 with txid '397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a' of type ENDORSER_TRANSACTION +[892 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +[893 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[894 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +[895 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[896 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +[897 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c138 gate 1513309794719224800 evaluation starts +[898 12-15 03:49:54.71 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c138 signed by 0 principal evaluation starts (used [false]) +[899 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c138 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414d4b66625241343136702b6653617851357150386a5977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455785768634e4d6a63784d6a457a4d444d7a4e5455780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d2f682f2b44587872326c4d315674504477686c41794a56723458742b4b760a564c536d65592b6d58352f2b38303253504d7049785a4b456636356a7a7461734b427847624f67414262657978336f58476437646538716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494353715679724a657246370a596f58444b4b65563241582f366b3659677a3665415031344b4f6566356d71374d416f4743437147534d343942414d43413067414d4555434951443449584b320a386241457353656e5a65752b4e2f35306b3262566a4c50734d734a337345393141726c50784149675862324b3238594f47414c59465873592f74476b2b612f300a4e352b7a2f66545466636847664c6143747a4d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[89a 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c138 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +[89b 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c138 principal evaluation fails +[89c 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c138 gate 1513309794719224800 evaluation fails +[89d 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Writers +[89e 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +[89f 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == +[8a0 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c140 gate 1513309794723165000 evaluation starts +[8a1 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c140 signed by 0 principal evaluation starts (used [false]) +[8a2 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c140 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414d4b66625241343136702b6653617851357150386a5977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d444d7a4e5455785768634e4d6a63784d6a457a4d444d7a4e5455780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d2f682f2b44587872326c4d315674504477686c41794a56723458742b4b760a564c536d65592b6d58352f2b38303253504d7049785a4b456636356a7a7461734b427847624f67414262657978336f58476437646538716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494353715679724a657246370a596f58444b4b65563241582f366b3659677a3665415031344b4f6566356d71374d416f4743437147534d343942414d43413067414d4555434951443449584b320a386241457353656e5a65752b4e2f35306b3262566a4c50734d734a337345393141726c50784149675862324b3238594f47414c59465873592f74476b2b612f300a4e352b7a2f66545466636847664c6143747a4d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[8a3 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[8a4 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +[8a5 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c140 principal matched by identity 0 +[8a6 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 bf ae 91 65 c1 d8 bd 0d 59 89 56 26 d4 97 7b b1 |...e....Y.V&..{.| +00000010 89 17 9a f0 3c 1b 5f 16 06 40 3e 80 31 60 df 13 |....<._..@>.1`..| +[8a7 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 72 ec 39 84 15 37 12 2d 33 d4 ea 55 |0D. r.9..7.-3..U| +00000010 2f 2a 1f 19 62 d5 e6 f3 c2 de 7e c0 bc a3 a3 bd |/*..b.....~.....| +00000020 19 fd a1 41 02 20 27 55 74 27 20 de 68 40 63 d9 |...A. 'Ut' .h@c.| +00000030 f9 bf 99 fe ce c2 ac 77 a6 8d 3a 2e 0f c1 06 6d |.......w..:....m| +00000040 1e 66 4c dd b9 31 |.fL..1| +[8a8 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c140 principal evaluation succeeds for identity 0 +[8a9 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c140 gate 1513309794723165000 evaluation succeeds +[8aa 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers +[8ab 12-15 03:49:54.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +[8ac 12-15 03:49:54.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +[8ad 12-15 03:49:54.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +[8ae 12-15 03:49:54.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +[8af 12-15 03:49:54.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +[8b0 12-15 03:49:54.73 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.21.0.8:57190 +[8b1 12-15 03:49:54.73 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +[8b2 12-15 03:49:54.73 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.21.0.8:57190: rpc error: code = Canceled desc = context canceled +[8b3 12-15 03:49:54.73 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[8b4 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block +[8b5 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[8b6 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[8b7 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[8b8 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[8b9 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...F8F9DBA48D8CA1AE3691001084973D48 +[8ba 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 82186859D28CA672C4F2D4DA0C136E436876C507D514040A95DFCE75F4479205 +[8bb 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[8bc 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[8bd 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[8be 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[8bf 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[8c0 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...F8F9DBA48D8CA1AE3691001084973D48 +[8c1 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 139C393A768A2938697F20FB65DEB087BD8E96BC5F3586D3BA280D86FEA32B82 +[8c2 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xd4, 0x4a, 0x73, 0x70, 0x52, 0x32, 0xf1, 0x81, 0x20, 0x2c, 0xdf, 0x71, 0xd8, 0x60, 0x7d, 0x41, 0x3c, 0x56, 0x93, 0x63, 0xa7, 0x8a, 0xcb, 0xad, 0x39, 0xe1, 0x1d, 0xce, 0xe6, 0xca, 0x53, 0x6c} txOffsets= +txId=397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a locPointer=offset=70, bytesLength=2910 +] +[8c3 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60293], isChainEmpty=[false], lastBlockNumber=[6] +[8c4 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 6 +[8c5 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[8c6 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4775], Going to peek [8] bytes +[8c7 12-15 03:49:56.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4773], placementInfo={fileNum=[0], startOffset=[55518], bytesOffset=[55520]} +[8c8 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4773] read from file [0] +[8c9 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420d31860) for 172.21.0.7:33460 +[8ca 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[8cb 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[8cc 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4775], Going to peek [8] bytes +[8cd 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4773], placementInfo={fileNum=[0], startOffset=[55518], bytesOffset=[55520]} +[8ce 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4773] read from file [0] +[8cf 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420179c20) for 172.21.0.6:44968 +[8d0 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[8d1 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[8d2 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57210 +[8d3 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57210 +[8d4 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[8d5 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[8d6 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[8d7 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[8d8 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[8d9 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[8da 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 -----END CERTIFICATE----- -[bd1 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e300 gate 1513088419353740600 evaluation starts -[bd2 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e300 signed by 0 principal evaluation starts (used [false]) -[bd3 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e300 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514d2f74336748756832415462336a7752374378356454414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d6c6f58445449334d5449784d4441344e4441784d6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a30444151634451674145664347573166646278304f352f49704d2f664d32616d6a337a4954413759622b6437534930766f58386b316d724756702b4e61610a746850445a364e334a355277766d352b73344e75564f73443075666e6e5a4c2f43364e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167774a41764d58464855595067392f4d624172456d586443754e77717a685068460a393473787246444d74556377436759494b6f5a497a6a30454177494452774177524149675774395779664c2b4f697378594563556a34356752614b494c6a4c720a344f34794a6d39503051394a4d756f43494745357064314c396c474f307a7478536f58584d786b2f6b666149696879466c4b392b6c4e4932344333410a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[bd4 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[bd5 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[bd6 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e300 principal matched by identity 0 -[bd7 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 e1 e2 01 1a e0 87 c9 d5 6f d1 c1 c7 56 a2 47 62 |........o...V.Gb| -00000010 8b 3e d2 4e be 13 a2 74 03 0a 79 17 9f 4b e2 28 |.>.N...t..y..K.(| -[bd8 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 10 ba 31 cb 5f 46 97 11 17 46 eb 6e |0D. ..1._F...F.n| -00000010 3a 7d a1 bb 68 1c a1 40 23 96 f4 00 1c ed 94 5d |:}..h..@#......]| -00000020 80 a7 04 83 02 20 2b d7 79 b0 82 e5 70 01 80 54 |..... +.y...p..T| -00000030 9c e1 53 42 52 31 2f 9a b8 cf a1 cd 67 90 65 59 |..SBR1/.....g.eY| -00000040 56 ea a0 50 2c 2c |V..P,,| -[bd9 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e300 principal evaluation succeeds for identity 0 -[bda 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e300 gate 1513088419353740600 evaluation succeeds -[bdb 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[bdc 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[bdd 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[bde 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[bdf 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[be0 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[be1 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203891a0) start: > stop: > from 172.18.0.7:36876 -[be2 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 0 -[be3 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203891a0) for 172.18.0.7:36876 -[be4 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:36876 for (0xc4203891a0) -[be5 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36876 -[be6 12-12 14:20:19.35 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36876 -[be7 12-12 14:20:19.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36876: rpc error: code = Canceled desc = context canceled -[be8 12-12 14:20:19.36 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[be9 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[bea 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36878 -[beb 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36878 -[bec 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[bed 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[bee 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[bef 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[bf0 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[bf1 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116498 gate 1513088419463252900 evaluation starts -[bf2 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116498 signed by 0 principal evaluation starts (used [false]) -[bf3 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116498 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514d2f74336748756832415462336a7752374378356454414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d6c6f58445449334d5449784d4441344e4441784d6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a30444151634451674145664347573166646278304f352f49704d2f664d32616d6a337a4954413759622b6437534930766f58386b316d724756702b4e61610a746850445a364e334a355277766d352b73344e75564f73443075666e6e5a4c2f43364e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167774a41764d58464855595067392f4d624172456d586443754e77717a685068460a393473787246444d74556377436759494b6f5a497a6a30454177494452774177524149675774395779664c2b4f697378594563556a34356752614b494c6a4c720a344f34794a6d39503051394a4d756f43494745357064314c396c474f307a7478536f58584d786b2f6b666149696879466c4b392b6c4e4932344333410a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[bf4 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[bf5 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[bf6 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116498 principal matched by identity 0 -[bf7 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 90 a9 3f f1 c0 93 9a 80 6a 3c 2f b7 02 57 bf 8e |..?.....j DEBU Verify: sig = 00000000 30 45 02 21 00 b4 7e 79 8a 05 c3 8c 12 bc 22 c2 |0E.!..~y......".| -00000010 0f 0c f3 70 a3 9e 4c c1 be cd 97 59 33 a5 1d 83 |...p..L....Y3...| -00000020 5d 94 2d 21 c5 02 20 35 00 fb 49 1d ac 58 e3 86 |].-!.. 5..I..X..| -00000030 6f 06 c5 89 58 68 da 88 de 69 24 cb fd d3 8a 13 |o...Xh...i$.....| -00000040 74 e9 0a 57 9c a7 4f |t..W..O| -[bf9 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116498 principal evaluation succeeds for identity 0 -[bfa 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116498 gate 1513088419463252900 evaluation succeeds -[bfb 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[bfc 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[bfd 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[bfe 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[bff 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[c00 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[c01 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420306420) start: > stop: > from 172.18.0.7:36878 -[c02 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 1 -[c03 12-12 14:20:19.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420306420) for 172.18.0.7:36878 -[c04 12-12 14:20:19.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:36878 for (0xc420306420) -[c05 12-12 14:20:19.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36878 -[c06 12-12 14:20:19.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36878 -[c07 12-12 14:20:19.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36878: rpc error: code = Canceled desc = context canceled -[c08 12-12 14:20:19.47 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[c09 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -[c0a 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[c0b 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[c0c 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[c0d 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[c0e 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...750654CA74591A952A5C5BEA8625E474 -[c0f 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: B9421EDDD892785B1AECE5C9F97CAAB0EA66AA6331170A3069421C58601BF146 -[c10 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[c11 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[c12 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[c13 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[c14 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[c15 12-12 14:20:19.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...750654CA74591A952A5C5BEA8625E474 -[c16 12-12 14:20:19.51 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 62AC15A08A5581499A428F653EDB3C633582675A0D6823FA379768C9374CC940 -[c17 12-12 14:20:19.51 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] commitBlock.Append.Append.writeBlock -> DEBU Wrote block 6 -[c18 12-12 14:20:19.51 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 6 -[c19 12-12 14:20:19.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420112980) for 172.18.0.4:60104 -[c1a 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 6 -[c1b 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 6 -[c1c 12-12 14:20:19.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3ce0) for 172.18.0.5:33552 -[c1d 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[c1e 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36880 -[c1f 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36880 -[c20 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[c21 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[c22 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[c23 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[c24 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[c25 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201163d8 gate 1513088419652985000 evaluation starts -[c26 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163d8 signed by 0 principal evaluation starts (used [false]) -[c27 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514d2f74336748756832415462336a7752374378356454414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d6c6f58445449334d5449784d4441344e4441784d6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a30444151634451674145664347573166646278304f352f49704d2f664d32616d6a337a4954413759622b6437534930766f58386b316d724756702b4e61610a746850445a364e334a355277766d352b73344e75564f73443075666e6e5a4c2f43364e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167774a41764d58464855595067392f4d624172456d586443754e77717a685068460a393473787246444d74556377436759494b6f5a497a6a30454177494452774177524149675774395779664c2b4f697378594563556a34356752614b494c6a4c720a344f34794a6d39503051394a4d756f43494745357064314c396c474f307a7478536f58584d786b2f6b666149696879466c4b392b6c4e4932344333410a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[c28 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[c29 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[c2a 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163d8 principal matched by identity 0 -[c2b 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d4 37 4f 0a 16 6f be 1a 7e 7c 85 fb 2e 68 24 8e |.7O..o..~|...h$.| -00000010 76 7d ab a8 73 4a ad 61 82 2d 7b aa 29 1e 67 b8 |v}..sJ.a.-{.).g.| -[c2c 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8b bf 7b 5e 75 9d 21 cc 00 8f 18 |0E.!...{^u.!....| -00000010 e9 c5 6c 7f 94 59 ba 7c eb 5f 1a c4 1b 61 55 9a |..l..Y.|._...aU.| -00000020 40 8f c7 79 d3 02 20 57 62 49 60 5b 92 6f 9f 8e |@..y.. WbI`[.o..| -00000030 54 c5 f7 b2 d0 2d a5 6a a3 2a c9 cb df 6e 2c 6f |T....-.j.*...n,o| -00000040 27 b3 86 0c 28 85 35 |'...(.5| -[c2d 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163d8 principal evaluation succeeds for identity 0 -[c2e 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201163d8 gate 1513088419652985000 evaluation succeeds -[c2f 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[c30 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[c31 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[c32 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[c33 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[c34 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[c35 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4202dea20) start: > stop: > from 172.18.0.7:36880 -[c36 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 2 -[c37 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4202dea20) for 172.18.0.7:36880 -[c38 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:36880 for (0xc4202dea20) -[c39 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36880 -[c3a 12-12 14:20:19.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36880 -[c3b 12-12 14:20:19.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36880: rpc error: code = Canceled desc = context canceled -[c3c 12-12 14:20:19.66 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[c3d 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[c3e 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36882 -[c3f 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36882 -[c40 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[c41 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[c42 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[c43 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[c44 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[c45 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201165a0 gate 1513088419728895000 evaluation starts -[c46 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201165a0 signed by 0 principal evaluation starts (used [false]) -[c47 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201165a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514d2f74336748756832415462336a7752374378356454414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d6c6f58445449334d5449784d4441344e4441784d6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a30444151634451674145664347573166646278304f352f49704d2f664d32616d6a337a4954413759622b6437534930766f58386b316d724756702b4e61610a746850445a364e334a355277766d352b73344e75564f73443075666e6e5a4c2f43364e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167774a41764d58464855595067392f4d624172456d586443754e77717a685068460a393473787246444d74556377436759494b6f5a497a6a30454177494452774177524149675774395779664c2b4f697378594563556a34356752614b494c6a4c720a344f34794a6d39503051394a4d756f43494745357064314c396c474f307a7478536f58584d786b2f6b666149696879466c4b392b6c4e4932344333410a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[c48 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[c49 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[c4a 12-12 14:20:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201165a0 principal matched by identity 0 -[c4b 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 6b ef 17 d2 d1 ea 87 37 52 a8 ab 21 99 6d a9 f3 |k......7R..!.m..| -00000010 10 e0 08 36 32 b7 f8 5a 00 a1 02 92 54 c7 4a cd |...62..Z....T.J.| -[c4c 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 75 94 5e f6 a2 17 5e bf 16 2b d8 a7 |0D. u.^...^..+..| -00000010 3a c2 83 db ac 5a 16 6c c5 5e 43 41 9d 00 86 11 |:....Z.l.^CA....| -00000020 dc cc db 94 02 20 1f 67 8b 84 e1 52 77 40 9b 8f |..... .g...Rw@..| -00000030 0b dd 89 90 d0 32 6f da 1a f5 09 b7 f3 79 e8 39 |.....2o......y.9| -00000040 1d 51 3e 98 a6 2f |.Q>../| -[c4d 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201165a0 principal evaluation succeeds for identity 0 -[c4e 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201165a0 gate 1513088419728895000 evaluation succeeds -[c4f 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[c50 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[c51 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[c52 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[c53 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[c54 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[c55 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4202dfb60) start: > stop: > from 172.18.0.7:36882 -[c56 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 3 -[c57 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4202dfb60) for 172.18.0.7:36882 -[c58 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:36882 for (0xc4202dfb60) -[c59 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36882 -[c5a 12-12 14:20:19.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36882 -[c5b 12-12 14:20:19.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36882: rpc error: code = Canceled desc = context canceled -[c5c 12-12 14:20:19.74 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[c5d 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[c5e 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36884 -[c5f 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36884 -[c60 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[c61 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[c62 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[c63 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[c64 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[c65 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116640 gate 1513088419848114000 evaluation starts -[c66 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116640 signed by 0 principal evaluation starts (used [false]) -[c67 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116640 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514d2f74336748756832415462336a7752374378356454414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d6c6f58445449334d5449784d4441344e4441784d6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a30444151634451674145664347573166646278304f352f49704d2f664d32616d6a337a4954413759622b6437534930766f58386b316d724756702b4e61610a746850445a364e334a355277766d352b73344e75564f73443075666e6e5a4c2f43364e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167774a41764d58464855595067392f4d624172456d586443754e77717a685068460a393473787246444d74556377436759494b6f5a497a6a30454177494452774177524149675774395779664c2b4f697378594563556a34356752614b494c6a4c720a344f34794a6d39503051394a4d756f43494745357064314c396c474f307a7478536f58584d786b2f6b666149696879466c4b392b6c4e4932344333410a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[c68 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[c69 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[c6a 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116640 principal matched by identity 0 -[c6b 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 a2 8c dc 01 a6 e2 b3 05 08 1f fe fa c0 7b a5 b6 |.............{..| -00000010 89 b8 d1 fc a0 04 00 f0 a7 cf d9 e7 10 e6 79 7a |..............yz| -[c6c 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 31 2c d5 d3 d3 5c 1a f4 e0 da cb ab |0D. 1,...\......| -00000010 db c7 a3 e9 00 56 a5 0d 91 97 5c 6b 80 a2 f5 2c |.....V....\k...,| -00000020 f5 75 16 0f 02 20 12 18 66 c6 3a 56 29 69 e4 7d |.u... ..f.:V)i.}| -00000030 25 8d 7c 48 f3 0d b5 62 80 a2 15 51 d3 00 74 cc |%.|H...b...Q..t.| -00000040 a3 01 d7 c8 22 56 |...."V| -[c6d 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116640 principal evaluation succeeds for identity 0 -[c6e 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116640 gate 1513088419848114000 evaluation succeeds -[c6f 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[c70 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[c71 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[c72 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[c73 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[c74 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[c75 12-12 14:20:19.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203880c0) start: > stop: > from 172.18.0.7:36884 -[c76 12-12 14:20:19.85 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 4 -[c77 12-12 14:20:19.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203880c0) for 172.18.0.7:36884 -[c78 12-12 14:20:19.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:36884 for (0xc4203880c0) -[c79 12-12 14:20:19.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36884 -[c7a 12-12 14:20:19.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36884 -[c7b 12-12 14:20:19.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36884: rpc error: code = Canceled desc = context canceled -[c7c 12-12 14:20:19.85 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[c7d 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[c7e 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36886 -[c7f 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36886 -[c80 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[c81 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[c82 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[c83 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[c84 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[c85 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201163d8 gate 1513088419985317600 evaluation starts -[c86 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163d8 signed by 0 principal evaluation starts (used [false]) -[c87 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514d2f74336748756832415462336a7752374378356454414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d6c6f58445449334d5449784d4441344e4441784d6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a30444151634451674145664347573166646278304f352f49704d2f664d32616d6a337a4954413759622b6437534930766f58386b316d724756702b4e61610a746850445a364e334a355277766d352b73344e75564f73443075666e6e5a4c2f43364e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167774a41764d58464855595067392f4d624172456d586443754e77717a685068460a393473787246444d74556377436759494b6f5a497a6a30454177494452774177524149675774395779664c2b4f697378594563556a34356752614b494c6a4c720a344f34794a6d39503051394a4d756f43494745357064314c396c474f307a7478536f58584d786b2f6b666149696879466c4b392b6c4e4932344333410a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[c88 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[c89 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[c8a 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201163d8 principal matched by identity 0 -[c8b 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 30 ec 1c a2 4b fa b6 8c cc 6f d6 c7 b6 34 a6 36 |0...K....o...4.6| -00000010 b8 85 1e 92 31 69 7c 20 b0 dc 2f b3 d1 26 f2 b3 |....1i| ../..&..| -[c8c 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5b 58 85 f2 07 55 dc 2f 41 0e df 91 |0D. [X...U./A...| -00000010 e7 9f ec e5 4f c2 09 0d 29 43 84 0d e9 60 ab 8d |....O...)C...`..| -00000020 cd 40 8d 47 02 20 3d f8 f2 62 43 6f 93 6d e3 37 |.@.G. =..bCo.m.7| -00000030 2c 87 f4 77 9a df c7 2e 8f 3c 3f ee 9b a3 75 0d |,..w..... DEBU 0xc4201163d8 principal evaluation succeeds for identity 0 -[c8e 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201163d8 gate 1513088419985317600 evaluation succeeds -[c8f 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[c90 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[c91 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[c92 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[c93 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[c94 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[c95 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203898c0) start: > stop: > from 172.18.0.7:36886 -[c96 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 5 -[c97 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203898c0) for 172.18.0.7:36886 -[c98 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:36886 for (0xc4203898c0) -[c99 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36886 -[c9a 12-12 14:20:19.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36886 -[c9b 12-12 14:20:19.99 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36886: rpc error: code = Canceled desc = context canceled -[c9c 12-12 14:20:19.99 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[c9d 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[c9e 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36888 -[c9f 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36888 -[ca0 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[ca1 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[ca2 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[ca3 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[ca4 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[ca5 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e248 gate 1513088420083219800 evaluation starts -[ca6 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 signed by 0 principal evaluation starts (used [false]) -[ca7 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514d2f74336748756832415462336a7752374378356454414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d6c6f58445449334d5449784d4441344e4441784d6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a30444151634451674145664347573166646278304f352f49704d2f664d32616d6a337a4954413759622b6437534930766f58386b316d724756702b4e61610a746850445a364e334a355277766d352b73344e75564f73443075666e6e5a4c2f43364e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167774a41764d58464855595067392f4d624172456d586443754e77717a685068460a393473787246444d74556377436759494b6f5a497a6a30454177494452774177524149675774395779664c2b4f697378594563556a34356752614b494c6a4c720a344f34794a6d39503051394a4d756f43494745357064314c396c474f307a7478536f58584d786b2f6b666149696879466c4b392b6c4e4932344333410a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[ca8 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[ca9 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[caa 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 principal matched by identity 0 -[cab 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 4f 14 93 ab 6e d9 f2 e6 e2 27 1d 2f 5b 47 13 8b |O...n....'./[G..| -00000010 1e 43 9b 6d 29 13 0a 71 c9 76 89 ec 79 82 94 2e |.C.m)..q.v..y...| -[cac 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d9 6a 82 64 11 c8 21 2e ef dc 95 |0E.!..j.d..!....| -00000010 c1 30 41 11 98 a4 18 4b c7 9a 5e c9 89 af 08 8d |.0A....K..^.....| -00000020 d6 97 3f 31 7d 02 20 26 fc 38 4f 2c 21 aa 0c e0 |..?1}. &.8O,!...| -00000030 bd 84 e5 82 69 91 f2 37 bc 55 d4 be 1e 06 cd 1c |....i..7.U......| -00000040 2e 6c 11 0a f0 7b 75 |.l...{u| -[cad 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 principal evaluation succeeds for identity 0 -[cae 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e248 gate 1513088420083219800 evaluation succeeds -[caf 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[cb0 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[cb1 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[cb2 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[cb3 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[cb4 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[cb5 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203072c0) start: > stop: > from 172.18.0.7:36888 -[cb6 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 6 -[cb7 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203072c0) for 172.18.0.7:36888 -[cb8 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:36888 for (0xc4203072c0) -[cb9 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36888 -[cba 12-12 14:20:20.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36888 -[cbb 12-12 14:20:20.09 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36888: rpc error: code = Canceled desc = context canceled -[cbc 12-12 14:20:20.09 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[cbd 12-12 14:20:20.21 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[cbe 12-12 14:20:20.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36890 -[cbf 12-12 14:20:20.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36890 -[cc0 12-12 14:20:20.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[cc1 12-12 14:20:20.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[cc2 12-12 14:20:20.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[cc3 12-12 14:20:20.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[cc4 12-12 14:20:20.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[cc5 12-12 14:20:20.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[cc6 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQM/t3gHuh2ATb3jwR7Cx5dTAKBggqhkjOPQQDAjBpMQsw +[8db 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c168 gate 1513309797768796500 evaluation starts +[8dc 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c168 signed by 0 principal evaluation starts (used [false]) +[8dd 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c168 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[8de 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c168 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[8df 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c168 principal evaluation fails +[8e0 12-15 03:49:57.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c168 gate 1513309797768796500 evaluation fails +[8e1 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +[8e2 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[8e3 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[8e4 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c178 gate 1513309797770578600 evaluation starts +[8e5 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c178 signed by 0 principal evaluation starts (used [false]) +[8e6 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c178 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[8e7 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c178 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[8e8 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c178 principal evaluation fails +[8e9 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c178 gate 1513309797770578600 evaluation fails +[8ea 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[8eb 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[8ec 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org1MSP.Readers Org2MSP.Readers ] +[8ed 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +[8ee 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[8ef 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[8f0 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[8f1 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[8f2 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c180 gate 1513309797772198600 evaluation starts +[8f3 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c180 signed by 0 principal evaluation starts (used [false]) +[8f4 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c180 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[8f5 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[8f6 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[8f7 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c180 principal matched by identity 0 +[8f8 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d0 77 53 91 3a 74 01 19 fb 9a b6 c1 30 15 16 84 |.wS.:t......0...| +00000010 db 85 22 b4 af 85 33 11 76 2c a6 ba fb 41 53 05 |.."...3.v,...AS.| +[8f9 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 1c fc 20 9b 94 09 19 6c 39 7a e3 98 |0D. .. ....l9z..| +00000010 b3 24 d4 9a dc b1 7a 3b b9 5a 8b 01 cd 5a 33 b4 |.$....z;.Z...Z3.| +00000020 70 ca e0 5f 02 20 6c 59 25 a7 80 60 b7 3d c0 28 |p.._. lY%..`.=.(| +00000030 a4 90 15 90 19 9a 7b f7 ed 63 b3 6c 6d 47 4f bc |......{..c.lmGO.| +00000040 e8 f9 db 0e 1e 91 |......| +[8fa 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c180 principal evaluation succeeds for identity 0 +[8fb 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c180 gate 1513309797772198600 evaluation succeeds +[8fc 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[8fd 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[8fe 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[8ff 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[900 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[901 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[902 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c96080) start: > stop: > from 172.21.0.8:57210 +[903 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[904 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +[905 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[60293], Going to peek [8] bytes +[906 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12124], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[907 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12124] read from file [0] +[908 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c96080) for 172.21.0.8:57210 +[909 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.21.0.8:57210 for (0xc420c96080) +[90b 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[90c 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[90a 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.21.0.8:57210 +[90e 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57210 +[90d 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[90f 12-15 03:49:57.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[910 12-15 03:49:57.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57210: rpc error: code = Canceled desc = context canceled +[911 12-15 03:49:57.78 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[912 12-15 03:49:57.88 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[913 12-15 03:49:57.88 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57212 +[914 12-15 03:49:57.88 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57212 +[915 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[916 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[917 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[918 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[919 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[91a 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c1c8 gate 1513309797891459700 evaluation starts +[91b 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c1c8 signed by 0 principal evaluation starts (used [false]) +[91c 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c1c8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[91d 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c1c8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[91e 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c1c8 principal evaluation fails +[91f 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c1c8 gate 1513309797891459700 evaluation fails +[920 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +[921 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[922 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[923 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c1d0 gate 1513309797894029300 evaluation starts +[924 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c1d0 signed by 0 principal evaluation starts (used [false]) +[925 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c1d0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[926 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c1d0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[927 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c1d0 principal evaluation fails +[928 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c1d0 gate 1513309797894029300 evaluation fails +[929 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[92a 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[92b 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org1MSP.Readers Org2MSP.Readers ] +[92c 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +[92d 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[92e 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[92f 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[930 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[931 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c1d8 gate 1513309797896338500 evaluation starts +[932 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c1d8 signed by 0 principal evaluation starts (used [false]) +[933 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c1d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[934 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[935 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[936 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c1d8 principal matched by identity 0 +[937 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 f2 ff cb 3c 7e 89 0e 5a e4 b9 f6 3e d3 57 07 b4 |...<~..Z...>.W..| +00000010 d3 ec 1b 67 f2 62 08 9b 2a 51 e8 1c 56 c2 9b e2 |...g.b..*Q..V...| +[938 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 e7 c3 f4 2e d2 18 1c bc 92 e8 fe |0E.!............| +00000010 b0 e5 64 b1 ba cc da 6f a9 d9 4b 37 52 1a 8e e2 |..d....o..K7R...| +00000020 d1 95 16 e8 da 02 20 16 3a ee 38 54 19 7e af c4 |...... .:.8T.~..| +00000030 6c 64 e3 74 9d eb 65 8e a0 99 9d 8b b3 ea 09 c3 |ld.t..e.........| +00000040 2d c7 e9 89 aa e4 68 |-.....h| +[939 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c1d8 principal evaluation succeeds for identity 0 +[93a 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c1d8 gate 1513309797896338500 evaluation succeeds +[93b 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[93c 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[93d 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[93e 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[93f 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[940 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[941 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c96ee0) start: > stop: > from 172.21.0.8:57212 +[942 12-15 03:49:57.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[943 12-15 03:49:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12126] +[944 12-15 03:49:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[48167], Going to peek [8] bytes +[945 12-15 03:49:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13958], placementInfo={fileNum=[0], startOffset=[12126], bytesOffset=[12128]} +[946 12-15 03:49:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13958] read from file [0] +[947 12-15 03:49:57.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c96ee0) for 172.21.0.8:57212 +[948 12-15 03:49:57.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.21.0.8:57212 for (0xc420c96ee0) +[94a 12-15 03:49:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[94b 12-15 03:49:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[94c 12-15 03:49:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[94d 12-15 03:49:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[949 12-15 03:49:57.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.21.0.8:57212 +[94e 12-15 03:49:57.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57212 +[94f 12-15 03:49:57.91 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57212: rpc error: code = Canceled desc = context canceled +[950 12-15 03:49:57.91 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[951 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[952 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57214 +[953 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57214 +[954 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[955 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[956 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[957 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[958 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[959 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c220 gate 1513309798054672000 evaluation starts +[95a 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c220 signed by 0 principal evaluation starts (used [false]) +[95b 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c220 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[95c 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c220 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[95d 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c220 principal evaluation fails +[95e 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c220 gate 1513309798054672000 evaluation fails +[95f 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +[960 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[961 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[962 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c228 gate 1513309798056485400 evaluation starts +[963 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c228 signed by 0 principal evaluation starts (used [false]) +[964 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c228 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[965 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c228 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[966 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c228 principal evaluation fails +[967 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c228 gate 1513309798056485400 evaluation fails +[968 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[969 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[96a 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org1MSP.Readers Org2MSP.Readers ] +[96b 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +[96c 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[96d 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[96e 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[96f 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[970 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c230 gate 1513309798058716900 evaluation starts +[971 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c230 signed by 0 principal evaluation starts (used [false]) +[972 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c230 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[973 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[974 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[975 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c230 principal matched by identity 0 +[976 12-15 03:49:58.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 a0 76 e9 34 f7 41 7d 93 d1 db 3c ea 82 2e 44 d0 |.v.4.A}...<...D.| +00000010 7b 3f eb 3c 83 38 d5 af 0b 66 15 6a c1 c2 c0 84 |{?.<.8...f.j....| +[977 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8f ce 02 06 e9 a6 69 f3 7d e6 47 |0E.!.......i.}.G| +00000010 31 db 3e 4e 03 cd e1 c8 b7 46 49 53 29 c9 aa 49 |1.>N.....FIS)..I| +00000020 2a f8 4c 4f 1a 02 20 13 79 cd e1 7d f5 e9 03 a7 |*.LO.. .y..}....| +00000030 b8 95 13 d7 05 ff d4 aa c9 d7 a6 4c e7 ae 96 38 |...........L...8| +00000040 58 06 17 8e 97 b7 39 |X.....9| +[978 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42026c230 principal evaluation succeeds for identity 0 +[979 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42026c230 gate 1513309798058716900 evaluation succeeds +[97a 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[97b 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[97c 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[97d 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[97e 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[97f 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[980 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c97c20) start: > stop: > from 172.21.0.8:57214 +[981 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[982 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[26086] +[983 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34207], Going to peek [8] bytes +[984 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14017], placementInfo={fileNum=[0], startOffset=[26086], bytesOffset=[26088]} +[985 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14017] read from file [0] +[986 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c97c20) for 172.21.0.8:57214 +[987 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.21.0.8:57214 for (0xc420c97c20) +[989 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[98a 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[98b 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[98c 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[988 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.21.0.8:57214 +[98d 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57214 +[98e 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57214: rpc error: code = Canceled desc = context canceled +[98f 12-15 03:49:58.06 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[990 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[991 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57216 +[992 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57216 +[993 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[994 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[995 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[996 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[997 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[998 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e6a0 gate 1513309798186917500 evaluation starts +[999 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6a0 signed by 0 principal evaluation starts (used [false]) +[99a 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[99b 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6a0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[99c 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6a0 principal evaluation fails +[99d 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e6a0 gate 1513309798186917500 evaluation fails +[99e 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +[99f 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[9a0 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[9a1 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e6b8 gate 1513309798188642100 evaluation starts +[9a2 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6b8 signed by 0 principal evaluation starts (used [false]) +[9a3 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[9a4 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6b8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[9a5 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6b8 principal evaluation fails +[9a6 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e6b8 gate 1513309798188642100 evaluation fails +[9a7 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[9a8 12-15 03:49:58.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[9a9 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org1MSP.Readers ] +[9aa 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +[9ab 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[9ac 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[9ad 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[9ae 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[9af 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e6c8 gate 1513309798191301200 evaluation starts +[9b0 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6c8 signed by 0 principal evaluation starts (used [false]) +[9b1 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6c8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[9b2 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[9b3 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[9b4 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6c8 principal matched by identity 0 +[9b5 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 20 46 c7 aa 92 b2 58 71 49 66 56 68 62 67 c0 7a | F....XqIfVhbg.z| +00000010 1c 9d f1 f9 d4 f5 c5 70 2b 0b 34 89 9f f4 49 4b |.......p+.4...IK| +[9b6 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c4 a7 44 44 8f f1 a0 bb 89 4b 1c |0E.!...DD.....K.| +00000010 1c 19 88 fd 5d 81 b4 62 82 fc 25 13 47 c1 58 cd |....]..b..%.G.X.| +00000020 d8 da e2 cb 29 02 20 0f 3f 93 4b 15 5f 6f 46 41 |....). .?.K._oFA| +00000030 f6 74 21 eb 78 53 1b 5e 6b 7b 3c b6 81 fb 43 05 |.t!.xS.^k{<...C.| +00000040 c4 35 ab 41 79 63 79 |.5.Aycy| +[9b7 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6c8 principal evaluation succeeds for identity 0 +[9b8 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e6c8 gate 1513309798191301200 evaluation succeeds +[9b9 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[9ba 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[9bb 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[9bc 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[9bd 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[9be 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[9bf 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420357820) start: > stop: > from 172.21.0.8:57216 +[9c0 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[9c1 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[40105] +[9c2 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[20188], Going to peek [8] bytes +[9c3 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5316], placementInfo={fileNum=[0], startOffset=[40105], bytesOffset=[40107]} +[9c4 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5316] read from file [0] +[9c5 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420357820) for 172.21.0.8:57216 +[9c6 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.21.0.8:57216 for (0xc420357820) +[9c8 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[9c9 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[9c7 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.21.0.8:57216 +[9cb 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[9cc 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[9ca 12-15 03:49:58.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57216 +[9cd 12-15 03:49:58.20 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57216: rpc error: code = Canceled desc = context canceled +[9ce 12-15 03:49:58.20 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[9cf 12-15 03:49:58.30 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[9d0 12-15 03:49:58.30 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57218 +[9d1 12-15 03:49:58.30 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57218 +[9d2 12-15 03:49:58.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[9d3 12-15 03:49:58.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[9d4 12-15 03:49:58.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[9d5 12-15 03:49:58.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[9d6 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[9d7 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e008 gate 1513309798311144600 evaluation starts +[9d8 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 signed by 0 principal evaluation starts (used [false]) +[9d9 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[9da 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[9db 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 principal evaluation fails +[9dc 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e008 gate 1513309798311144600 evaluation fails +[9dd 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +[9de 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[9df 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[9e0 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e030 gate 1513309798312570800 evaluation starts +[9e1 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e030 signed by 0 principal evaluation starts (used [false]) +[9e2 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e030 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[9e3 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e030 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[9e4 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e030 principal evaluation fails +[9e5 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e030 gate 1513309798312570800 evaluation fails +[9e6 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[9e7 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[9e8 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org1MSP.Readers Org2MSP.Readers ] +[9e9 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +[9ea 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[9eb 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[9ec 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[9ed 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[9ee 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e038 gate 1513309798314535500 evaluation starts +[9ef 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 signed by 0 principal evaluation starts (used [false]) +[9f0 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[9f1 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[9f2 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[9f3 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 principal matched by identity 0 +[9f4 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 aa 6f f0 e6 9d 21 f0 ac 79 5a 30 54 24 7f 61 6d |.o...!..yZ0T$.am| +00000010 0c 1a 19 f7 a4 c4 bd df ed 9b ba 7c f3 c9 1b 57 |...........|...W| +[9f5 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 77 7d 40 6e a7 be f2 3f 2a b1 b7 fe |0D. w}@n...?*...| +00000010 1e 99 75 88 01 1a 72 66 aa 60 47 2e 20 ec 49 bf |..u...rf.`G. .I.| +00000020 56 d7 d4 3c 02 20 67 62 b0 e5 a2 ad 4a ab 20 d9 |V..<. gb....J. .| +00000030 14 81 ab a5 3a 87 77 10 7f d0 12 9e 80 43 95 a4 |....:.w......C..| +00000040 bf 43 36 00 cc 18 |.C6...| +[9f6 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 principal evaluation succeeds for identity 0 +[9f7 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e038 gate 1513309798314535500 evaluation succeeds +[9f8 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[9f9 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[9fa 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[9fb 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[9fc 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[9fd 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[9fe 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420356ae0) start: > stop: > from 172.21.0.8:57218 +[9ff 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[a00 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[45423] +[a01 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14870], Going to peek [8] bytes +[a02 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5317], placementInfo={fileNum=[0], startOffset=[45423], bytesOffset=[45425]} +[a03 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5317] read from file [0] +[a04 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420356ae0) for 172.21.0.8:57218 +[a05 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.21.0.8:57218 for (0xc420356ae0) +[a06 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.21.0.8:57218 +[a08 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[a09 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[a07 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57218 +[a0a 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[a0b 12-15 03:49:58.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[a0c 12-15 03:49:58.32 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57218: rpc error: code = Canceled desc = context canceled +[a0d 12-15 03:49:58.32 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[a0e 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[a0f 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57220 +[a10 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57220 +[a11 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[a12 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[a13 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[a14 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[a15 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[a16 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e568 gate 1513309798419316000 evaluation starts +[a17 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e568 signed by 0 principal evaluation starts (used [false]) +[a18 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e568 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[a19 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e568 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[a1a 12-15 03:49:58.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e568 principal evaluation fails +[a1b 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e568 gate 1513309798419316000 evaluation fails +[a1c 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +[a1d 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[a1e 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[a1f 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e580 gate 1513309798420696300 evaluation starts +[a20 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e580 signed by 0 principal evaluation starts (used [false]) +[a21 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e580 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[a22 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e580 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[a23 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e580 principal evaluation fails +[a24 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e580 gate 1513309798420696300 evaluation fails +[a25 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[a26 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[a27 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org1MSP.Readers Org2MSP.Readers ] +[a28 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +[a29 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[a2a 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[a2b 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[a2c 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[a2d 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e588 gate 1513309798422492600 evaluation starts +[a2e 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e588 signed by 0 principal evaluation starts (used [false]) +[a2f 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e588 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[a30 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[a31 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[a32 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e588 principal matched by identity 0 +[a33 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 86 9c 08 ad 02 78 a2 b7 ae 74 4e 84 38 e4 b8 cd |.....x...tN.8...| +00000010 21 a5 fd 14 83 34 7a c2 05 bc 59 b9 1f ff e1 6e |!....4z...Y....n| +[a34 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 0c 58 7b 7f cf 10 3b 9e ef 51 d2 f4 |0D. .X{...;..Q..| +00000010 5a ce 48 a8 72 e7 73 2a 74 ae 54 cf a4 4e 3c 76 |Z.H.r.s*t.T..N DEBU 0xc42000e588 principal evaluation succeeds for identity 0 +[a36 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e588 gate 1513309798422492600 evaluation succeeds +[a37 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[a38 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[a39 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[a3a 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[a3b 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[a3c 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[a3d 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203578a0) start: > stop: > from 172.21.0.8:57220 +[a3e 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[a3f 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[50742] +[a40 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9551], Going to peek [8] bytes +[a41 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4774], placementInfo={fileNum=[0], startOffset=[50742], bytesOffset=[50744]} +[a42 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4774] read from file [0] +[a43 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203578a0) for 172.21.0.8:57220 +[a44 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.21.0.8:57220 for (0xc4203578a0) +[a45 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.21.0.8:57220 +[a47 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57220 +[a46 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[a48 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[a49 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[a4a 12-15 03:49:58.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[a4b 12-15 03:49:58.43 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57220: rpc error: code = Canceled desc = context canceled +[a4c 12-15 03:49:58.43 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[a4d 12-15 03:49:58.64 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[a4e 12-15 03:49:58.64 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57222 +[a4f 12-15 03:49:58.64 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57222 +[a50 12-15 03:49:58.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[a51 12-15 03:49:58.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[a52 12-15 03:49:58.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[a53 12-15 03:49:58.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[a54 12-15 03:49:58.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[a55 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e620 gate 1513309798660192000 evaluation starts +[a56 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e620 signed by 0 principal evaluation starts (used [false]) +[a57 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e620 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[a58 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e620 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[a59 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e620 principal evaluation fails +[a5a 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e620 gate 1513309798660192000 evaluation fails +[a5b 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +[a5c 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[a5d 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[a5e 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e650 gate 1513309798661667600 evaluation starts +[a5f 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e650 signed by 0 principal evaluation starts (used [false]) +[a60 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e650 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[a61 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e650 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[a62 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e650 principal evaluation fails +[a63 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e650 gate 1513309798661667600 evaluation fails +[a64 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[a65 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[a66 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org1MSP.Readers Org2MSP.Readers ] +[a67 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +[a68 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[a69 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[a6a 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[a6b 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[a6c 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e668 gate 1513309798663407600 evaluation starts +[a6d 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e668 signed by 0 principal evaluation starts (used [false]) +[a6e 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e668 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[a6f 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[a70 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[a71 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e668 principal matched by identity 0 +[a72 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 62 2e e7 16 fd ea 7c 75 95 0f 8c 6f a8 e5 99 7f |b.....|u...o....| +00000010 f6 38 5e a6 4c a5 e4 3d 4f 6f a7 c1 d9 3f df c4 |.8^.L..=Oo...?..| +[a73 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f2 29 14 53 63 41 d3 62 dd b7 87 |0E.!..).ScA.b...| +00000010 dd 6a 97 33 84 a2 2b 37 bd f7 22 56 01 82 da ab |.j.3..+7.."V....| +00000020 14 e9 e5 b1 ad 02 20 00 83 64 01 2f 2c 2d bf 9b |...... ..d./,-..| +00000030 43 d8 3f 54 dd ff be 85 b2 ba a7 45 4f 0e 3e f7 |C.?T.......EO.>.| +00000040 49 28 a9 48 54 4f 68 |I(.HTOh| +[a74 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e668 principal evaluation succeeds for identity 0 +[a75 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e668 gate 1513309798663407600 evaluation succeeds +[a76 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[a77 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[a78 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[a79 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[a7a 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[a7b 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[a7c 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420380d80) start: > stop: > from 172.21.0.8:57222 +[a7d 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[a7e 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[55518] +[a7f 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4775], Going to peek [8] bytes +[a80 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4773], placementInfo={fileNum=[0], startOffset=[55518], bytesOffset=[55520]} +[a81 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4773] read from file [0] +[a82 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420380d80) for 172.21.0.8:57222 +[a83 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.21.0.8:57222 for (0xc420380d80) +[a84 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.21.0.8:57222 +[a85 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57222 +[a86 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[a87 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[a88 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[a89 12-15 03:49:58.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[a8a 12-15 03:49:58.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57222: rpc error: code = Canceled desc = context canceled +[a8b 12-15 03:49:58.67 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[a8c 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[a8d 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57224 +[a8e 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57224 +[a8f 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[a90 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[a91 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[a92 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[a93 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[a94 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[a95 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWPoTpPe+wxQn4YC1nzKZUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxMjA4NDAxMloXDTI3MTIxMDA4NDAxMlowVjELMAkGA1UE +bGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowVjELMAkGA1UE BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEfCGW1fdbx0O5/IpM/fM2amj3zITA7Yb+d7SI0voX8k1mrGVp+Naa -thPDZ6N3J5Rwvm5+s4NuVOsD0ufnnZL/C6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgwJAvMXFHUYPg9/MbArEmXdCuNwqzhPhF -94sxrFDMtUcwCgYIKoZIzj0EAwIDRwAwRAIgWt9WyfL+OisxYEcUj45gRaKILjLr -4O4yJm9P0Q9JMuoCIGE5pd1L9lGO0ztxSoXXMxk/kfaIihyFlK9+lNI24C3A +zj0DAQcDQgAETxGYQtwWU+juH1WPm6a8rJeFOQSAmQfZoUG5wWg6sxCZ10nX9FlD +ESZ2zTd60r5sThXJlAnZhHmi0gS5B+9SRKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/HKDxGK4KXlb7A6hdSp5GFYFxHZcXYm1 +Ynmq0kxDdjUwCgYIKoZIzj0EAwIDRwAwRAIgfajakEUNxg+vdVUOmiRG9+XOqrOa +sqo+mQbemWdxLicCICg1iMlmRBctXmJeL9v4FWCba1ftgk7xxXzwRfYe/kc8 -----END CERTIFICATE----- -[cc7 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116550 gate 1513088420220651800 evaluation starts -[cc8 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116550 signed by 0 principal evaluation starts (used [false]) -[cc9 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116550 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514d2f74336748756832415462336a7752374378356454414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d6c6f58445449334d5449784d4441344e4441784d6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a30444151634451674145664347573166646278304f352f49704d2f664d32616d6a337a4954413759622b6437534930766f58386b316d724756702b4e61610a746850445a364e334a355277766d352b73344e75564f73443075666e6e5a4c2f43364e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167774a41764d58464855595067392f4d624172456d586443754e77717a685068460a393473787246444d74556377436759494b6f5a497a6a30454177494452774177524149675774395779664c2b4f697378594563556a34356752614b494c6a4c720a344f34794a6d39503051394a4d756f43494745357064314c396c474f307a7478536f58584d786b2f6b666149696879466c4b392b6c4e4932344333410a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[cca 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[ccb 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[ccc 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116550 principal matched by identity 0 -[ccd 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 8f 3b cf 12 db 75 1f f6 59 e4 4d ba ee 4e 69 1d |.;...u..Y.M..Ni.| -00000010 99 71 6a 01 9e 5b 39 20 89 8d 01 ae 5c e2 1b 04 |.qj..[9 ....\...| -[cce 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8d 00 79 4c 78 c5 42 9b 7d 00 32 |0E.!...yLx.B.}.2| -00000010 20 9a 70 5d 61 e6 9d 5f f7 0a a8 90 52 a3 3d e1 | .p]a.._....R.=.| -00000020 d0 4e 85 4c 19 02 20 18 64 db f3 cc 36 53 d1 00 |.N.L.. .d...6S..| -00000030 36 0e 86 24 d6 43 ac c2 2f 5d 93 1b ac dd 48 6f |6..$.C../]....Ho| -00000040 a8 40 65 a2 e1 7b ea |.@e..{.| -[ccf 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116550 principal evaluation succeeds for identity 0 -[cd0 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116550 gate 1513088420220651800 evaluation succeeds -[cd1 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[cd2 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[cd3 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[cd4 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[cd5 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[cd6 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[cd7 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4202ac4a0) start: > stop: > from 172.18.0.7:36890 -[cd8 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 0 -[cd9 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4202ac4a0) for 172.18.0.7:36890 -[cda 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:36890 for (0xc4202ac4a0) -[cdb 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36890 -[cdc 12-12 14:20:20.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36890 -[cdd 12-12 14:20:20.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36890: rpc error: code = Canceled desc = context canceled -[cde 12-12 14:20:20.23 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[cdf 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[ce0 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36892 -[ce1 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36892 -[ce2 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[ce3 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[ce4 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[ce5 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[ce6 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[ce7 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116600 gate 1513088420326986700 evaluation starts -[ce8 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116600 signed by 0 principal evaluation starts (used [false]) -[ce9 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116600 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514d2f74336748756832415462336a7752374378356454414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d6c6f58445449334d5449784d4441344e4441784d6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a30444151634451674145664347573166646278304f352f49704d2f664d32616d6a337a4954413759622b6437534930766f58386b316d724756702b4e61610a746850445a364e334a355277766d352b73344e75564f73443075666e6e5a4c2f43364e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167774a41764d58464855595067392f4d624172456d586443754e77717a685068460a393473787246444d74556377436759494b6f5a497a6a30454177494452774177524149675774395779664c2b4f697378594563556a34356752614b494c6a4c720a344f34794a6d39503051394a4d756f43494745357064314c396c474f307a7478536f58584d786b2f6b666149696879466c4b392b6c4e4932344333410a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[cea 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[ceb 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[cec 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116600 principal matched by identity 0 -[ced 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 98 91 26 b7 21 62 20 0c 1c c0 45 bd c4 f0 e9 62 |..&.!b ...E....b| -00000010 d1 bc 3f b3 53 87 c3 be 60 1d e4 9a 28 2e 6a 94 |..?.S...`...(.j.| -[cee 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 74 57 fc b1 ed 30 68 56 28 06 77 b5 |0D. tW...0hV(.w.| -00000010 a9 7c 21 6a 84 71 0b 7a f7 dd ce a8 15 33 89 fa |.|!j.q.z.....3..| -00000020 45 10 07 f5 02 20 66 a8 96 77 23 2a df d2 9d 86 |E.... f..w#*....| -00000030 24 2a 3e 5a 09 d6 63 19 3a 7d 00 77 f7 d2 4f 44 |$*>Z..c.:}.w..OD| -00000040 8d f2 57 05 5b bf |..W.[.| -[cef 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420116600 principal evaluation succeeds for identity 0 -[cf0 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420116600 gate 1513088420326986700 evaluation succeeds -[cf1 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[cf2 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[cf3 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[cf4 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[cf5 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[cf6 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[cf7 12-12 14:20:20.32 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4202ad500) start: > stop: > from 172.18.0.7:36892 -[cf8 12-12 14:20:20.33 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 1 -[cf9 12-12 14:20:20.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4202ad500) for 172.18.0.7:36892 -[cfa 12-12 14:20:20.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:36892 for (0xc4202ad500) -[cfb 12-12 14:20:20.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36892 -[cfc 12-12 14:20:20.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36892 -[cfd 12-12 14:20:20.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36892: rpc error: code = Canceled desc = context canceled -[cfe 12-12 14:20:20.35 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[cff 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[d00 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:36894 -[d01 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36894 -[d02 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[d03 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[d04 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[d05 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[d06 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[d07 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201162a8 gate 1513088420427045700 evaluation starts -[d08 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201162a8 signed by 0 principal evaluation starts (used [false]) -[d09 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201162a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514d2f74336748756832415462336a7752374378356454414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784d6a41344e4441784d6c6f58445449334d5449784d4441344e4441784d6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a30444151634451674145664347573166646278304f352f49704d2f664d32616d6a337a4954413759622b6437534930766f58386b316d724756702b4e61610a746850445a364e334a355277766d352b73344e75564f73443075666e6e5a4c2f43364e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167774a41764d58464855595067392f4d624172456d586443754e77717a685068460a393473787246444d74556377436759494b6f5a497a6a30454177494452774177524149675774395779664c2b4f697378594563556a34356752614b494c6a4c720a344f34794a6d39503051394a4d756f43494745357064314c396c474f307a7478536f58584d786b2f6b666149696879466c4b392b6c4e4932344333410a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[d0a 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[d0b 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[d0c 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201162a8 principal matched by identity 0 -[d0d 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 69 66 fd fd 46 6e c8 fd 3a 7d d1 01 d2 51 b7 51 |if..Fn..:}...Q.Q| -00000010 43 9f 51 e4 33 ef c5 c9 29 71 9e f5 d8 90 57 1d |C.Q.3...)q....W.| -[d0e 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c3 fe cf f5 ec 06 4a 49 d2 32 f0 |0E.!.......JI.2.| -00000010 40 19 4a 4a 15 df c9 a1 69 f0 c6 f8 8d 36 bf e9 |@.JJ....i....6..| -00000020 72 3d ca c6 d2 02 20 12 e1 5a 31 2e a4 dd 48 5b |r=.... ..Z1...H[| -00000030 6d f2 89 74 77 f4 d5 53 46 0d 2a b3 ab d6 c2 7d |m..tw..SF.*....}| -00000040 4a 4b cc 52 2f 82 b2 |JK.R/..| -[d0f 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201162a8 principal evaluation succeeds for identity 0 -[d10 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201162a8 gate 1513088420427045700 evaluation succeeds -[d11 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[d12 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[d13 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[d14 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[d15 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[d16 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[d17 12-12 14:20:20.42 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420389220) start: > stop: > from 172.18.0.7:36894 -[d18 12-12 14:20:20.43 UTC] [github.com/hyperledger/fabric/common/ledger/blockledger/json] Next.readBlock -> DEBU Read block 2 -[d19 12-12 14:20:20.43 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420389220) for 172.18.0.7:36894 -[d1a 12-12 14:20:20.43 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:36894 for (0xc420389220) -[d1b 12-12 14:20:20.43 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:36894 -[d1c 12-12 14:20:20.43 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:36894 -[d1d 12-12 14:20:20.43 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:36894: rpc error: code = Canceled desc = context canceled -[d1e 12-12 14:20:20.43 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[a96 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e6d8 gate 1513309798847538500 evaluation starts +[a97 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6d8 signed by 0 principal evaluation starts (used [false]) +[a98 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[a99 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[a9a 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[a9b 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6d8 principal matched by identity 0 +[a9c 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 fd 9a 07 39 42 9a 06 26 f3 cb 25 91 d7 1c e5 58 |...9B..&..%....X| +00000010 1b 99 3e 39 8d 64 ae 69 a7 43 9a 6f e1 ff 07 e8 |..>9.d.i.C.o....| +[a9d 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 4f fb 4e c9 7a 1f a4 35 08 d8 ec 0e |0D. O.N.z..5....| +00000010 13 ca a5 bc 33 85 0a c1 e3 a1 c3 f5 4f 40 3a 82 |....3.......O@:.| +00000020 f3 b3 8d 4e 02 20 6c d6 ce f7 7e 13 fe f1 70 0f |...N. l...~...p.| +00000030 19 3a 50 70 e3 26 bd b4 5a c0 db 00 1f 30 3a 63 |.:Pp.&..Z....0:c| +00000040 bb 03 1d bf 67 45 |....gE| +[a9e 12-15 03:49:58.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6d8 principal evaluation succeeds for identity 0 +[a9f 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e6d8 gate 1513309798847538500 evaluation succeeds +[aa0 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[aa1 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[aa2 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[aa3 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[aa4 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[aa5 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[aa6 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420346800) start: > stop: > from 172.21.0.8:57224 +[aa7 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +[aa8 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +[aa9 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24023], Going to peek [8] bytes +[aaa 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9156], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[aab 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9156] read from file [0] +[aac 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420346800) for 172.21.0.8:57224 +[aad 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.21.0.8:57224 for (0xc420346800) +[aae 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.21.0.8:57224 +[aaf 12-15 03:49:58.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57224 +[ab0 12-15 03:49:58.87 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57224: rpc error: code = Canceled desc = context canceled +[ab1 12-15 03:49:58.87 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[ab2 12-15 03:49:59.02 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[ab3 12-15 03:49:59.02 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.21.0.8:57226 +[ab4 12-15 03:49:59.02 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57226 +[ab5 12-15 03:49:59.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[ab6 12-15 03:49:59.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[ab7 12-15 03:49:59.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[ab8 12-15 03:49:59.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[ab9 12-15 03:49:59.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[aba 12-15 03:49:59.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e748 gate 1513309799028784800 evaluation starts +[abb 12-15 03:49:59.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e748 signed by 0 principal evaluation starts (used [false]) +[abc 12-15 03:49:59.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e748 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434354434341624367417749424167495157506f547050652b7778516e345943316e7a4b5a5554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449784e54417a4d7a55314d566f58445449334d5449784d7a417a4d7a55314d566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741455478475951747757552b6a75483157506d366138724a65464f5153416d51665a6f554735775767367378435a31306e5839466c440a45535a327a546436307235735468584a6c416e5a68486d6930675335422b3953524b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41672f484b4478474b344b586c6237413668645370354746594678485a6358596d310a596e6d71306b7844646a5577436759494b6f5a497a6a304541774944527741775241496766616a616b45554e78672b766456554f6d695247392b584f71724f610a73716f2b6d5162656d5764784c69634349436731694d6c6d52426374586d4a654c3976344657436261316674676b377878587a77526659652f6b63380a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[abd 12-15 03:49:59.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[abe 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[abf 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e748 principal matched by identity 0 +[ac0 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 86 1c 56 f9 a6 6b c0 2d b3 e4 6e c4 f4 b2 0b 74 |..V..k.-..n....t| +00000010 f6 db 5c 04 1e 13 35 3d 42 f0 64 e3 9e 12 d0 40 |..\...5=B.d....@| +[ac1 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 66 10 c9 60 d0 6b 8d 4e b2 fd f0 e0 |0D. f..`.k.N....| +00000010 6a 5f 54 5b b9 9b 9c d7 51 14 61 78 7e c6 86 0f |j_T[....Q.ax~...| +00000020 b5 76 f7 be 02 20 62 79 ff 83 0c 78 f7 03 f4 3f |.v... by...x...?| +00000030 cd 26 5c 1e 9f 5b 8f e0 50 72 4d ac ae c7 d2 80 |.&\..[..PrM.....| +00000040 1a 8f 33 57 ab 9c |..3W..| +[ac2 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e748 principal evaluation succeeds for identity 0 +[ac3 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e748 gate 1513309799028784800 evaluation succeeds +[ac4 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[ac5 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[ac6 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[ac7 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[ac8 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[ac9 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[aca 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420347160) start: > stop: > from 172.21.0.8:57226 +[acb 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +[acc 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9158] +[acd 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14865], Going to peek [8] bytes +[ace 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14863], placementInfo={fileNum=[0], startOffset=[9158], bytesOffset=[9160]} +[acf 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14863] read from file [0] +[ad0 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420347160) for 172.21.0.8:57226 +[ad1 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.21.0.8:57226 for (0xc420347160) +[ad2 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.21.0.8:57226 +[ad3 12-15 03:49:59.03 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.21.0.8:57226 +[ad4 12-15 03:49:59.04 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.21.0.8:57226: rpc error: code = Canceled desc = context canceled +[ad5 12-15 03:49:59.04 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream diff --git a/hyperledger_fabric/latest/solo/logs/dev_peer0.log b/hyperledger_fabric/latest/solo/logs/dev_peer0.log index b1d2196d..968e0188 100644 --- a/hyperledger_fabric/latest/solo/logs/dev_peer0.log +++ b/hyperledger_fabric/latest/solo/logs/dev_peer0.log @@ -1,4 +1,4 @@ -[001 12-12 14:19:35.76 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +[001 12-15 03:49:08.80 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: Version: 1.1.0 Go version: go1.9.2 OS/Arch: linux/amd64 @@ -9,125 +9,125 @@ Base Docker Label: org.hyperledger.fabric Docker Namespace: hyperledger -[002 12-12 14:19:35.76 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt -[003 12-12 14:19:35.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -[004 12-12 14:19:35.76 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 12-12 14:19:35.76 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 12-12 14:19:35.76 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 12-12 14:19:35.77 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -[008 12-12 14:19:35.77 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -[009 12-12 14:19:35.77 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -[00a 12-12 14:19:35.77 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] -[00b 12-12 14:19:35.77 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist -[00c 12-12 14:19:35.77 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists -[00d 12-12 14:19:35.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -[00e 12-12 14:19:35.78 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -[00f 12-12 14:19:35.78 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -[010 12-12 14:19:35.78 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -[011 12-12 14:19:35.78 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 -[012 12-12 14:19:35.78 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/] -[013 12-12 14:19:35.78 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 -[014 12-12 14:19:35.78 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 -[015 12-12 14:19:35.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized -[016 12-12 14:19:35.79 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 -[017 12-12 14:19:35.79 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 -[018 12-12 14:19:35.79 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized -[019 12-12 14:19:35.79 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 -[01a 12-12 14:19:35.79 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer0.org1.example.com:7051 -[01b 12-12 14:19:35.79 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 -[01c 12-12 14:19:35.79 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer0.org1.example.com:7051 -[01d 12-12 14:19:35.80 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -[01e 12-12 14:19:35.81 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK -[01f 12-12 14:19:35.81 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE -[020 12-12 14:19:35.81 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION -[021 12-12 14:19:35.81 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER -[022 12-12 14:19:35.81 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK -[023 12-12 14:19:35.81 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com -[024 12-12 14:19:35.81 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -[025 12-12 14:19:35.81 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer0.org1.example.com:7052 -[026 12-12 14:19:35.82 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.NewServerCertKeyPair.newCertKeyPair -> DEBU Classified peer0.org1.example.com as a hostname, adding it as a DNS SAN -[027 12-12 14:19:35.82 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s -[028 12-12 14:19:35.82 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 -[029 12-12 14:19:35.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -[02a 12-12 14:19:35.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s -[02b 12-12 14:19:35.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 -[02c 12-12 14:19:35.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 -[02d 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: -[02e 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found real value for chaincode.systemPlugins setting to -[02f 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey -> DEBU map[chaincode.systemPlugins:] -[030 12-12 14:19:35.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 -[031 12-12 14:19:35.83 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 -[032 12-12 14:19:35.83 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 -[033 12-12 14:19:35.83 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 -[034 12-12 14:19:35.83 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 -[035 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc,true) disabled -[036 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterACLProvider.Do.func1.newACLMgmt.newDefaultACLProvider.initialize.GetLocalMSP -> DEBU Returning existing local MSP -[037 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -[038 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers -[039 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultDecorator]] -[03a 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.decorators setting to []interface {} [map[name:DefaultDecorator]] -[03b 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultAuth]] -[03c 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.authFilters setting to []interface {} [map[name:DefaultAuth]] -[03d 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[authFilters:[map[name:DefaultAuth]] decorators:[map[name:DefaultDecorator]]]] -[03e 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -[03f 12-12 14:19:35.83 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[040 12-12 14:19:35.84 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] -[041 12-12 14:19:35.85 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 -[042 12-12 14:19:35.85 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[043 12-12 14:19:35.85 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQfxCgdHnKWSB1ck7NCIf+4jAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEttPjC3up1Q77jKnXYIA7Wu2YrLoAKqPa -Cj9pdoCw3vR9Imf/c8dgnaRHBvU+dgxN5en1+n4tkq0DFamZ843WpqNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS -q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAKrUoMIb -2WwA9949iLHY+idNaQnD9S2wuUoml0JPNu/NAiBQlxXukEi49c9p1+nROwn0IuOM -3NSyqtTUGH26cyVUgw== +[002 12-15 03:49:08.80 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt +[003 12-15 03:49:08.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +[004 12-15 03:49:08.80 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 12-15 03:49:08.80 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 12-15 03:49:08.94 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 12-15 03:49:10.41 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +[008 12-15 03:49:10.41 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +[009 12-15 03:49:10.41 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +[00a 12-15 03:49:10.68 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] +[00b 12-15 03:49:10.68 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist +[00c 12-15 03:49:10.68 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists +[00d 12-15 03:49:10.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +[00e 12-15 03:49:10.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +[00f 12-15 03:49:10.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +[010 12-15 03:49:10.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +[011 12-15 03:49:10.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 +[012 12-15 03:49:10.73 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/] +[013 12-15 03:49:10.73 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 +[014 12-15 03:49:10.73 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 +[015 12-15 03:49:10.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized +[016 12-15 03:49:10.75 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 +[017 12-15 03:49:10.75 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 +[018 12-15 03:49:10.75 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized +[019 12-15 03:49:10.75 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto-detected peer address: 172.21.0.6:7051 +[01a 12-15 03:49:10.76 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer0.org1.example.com:7051 +[01b 12-15 03:49:10.78 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.21.0.6:7051 +[01c 12-15 03:49:10.78 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer0.org1.example.com:7051 +[01d 12-15 03:49:10.82 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +[01e 12-15 03:49:10.84 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK +[01f 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +[020 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION +[021 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER +[022 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK +[023 12-15 03:49:10.86 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +[024 12-15 03:49:10.87 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com +[025 12-15 03:49:10.87 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer0.org1.example.com:7052 +[026 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.NewServerCertKeyPair.newCertKeyPair -> DEBU Classified peer0.org1.example.com as a hostname, adding it as a DNS SAN +[027 12-15 03:49:10.90 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s +[028 12-15 03:49:10.91 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 +[029 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) +[02a 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s +[02b 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info +[02c 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning +[02d 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: +[02e 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found real value for chaincode.systemPlugins setting to +[02f 12-15 03:49:10.91 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey -> DEBU map[chaincode.systemPlugins:] +[030 12-15 03:49:10.91 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 +[031 12-15 03:49:10.91 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 +[032 12-15 03:49:10.91 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 +[033 12-15 03:49:10.92 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 +[034 12-15 03:49:10.92 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 +[035 12-15 03:49:10.92 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc,true) disabled +[036 12-15 03:49:10.92 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterACLProvider.Do.func1.newACLMgmt.newDefaultACLProvider.initialize.GetLocalMSP -> DEBU Returning existing local MSP +[037 12-15 03:49:10.92 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +[038 12-15 03:49:10.92 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers +[039 12-15 03:49:10.92 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultDecorator]] +[03a 12-15 03:49:10.92 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.decorators setting to []interface {} [map[name:DefaultDecorator]] +[03b 12-15 03:49:10.92 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultAuth]] +[03c 12-15 03:49:10.92 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.authFilters setting to []interface {} [map[name:DefaultAuth]] +[03d 12-15 03:49:10.92 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[decorators:[map[name:DefaultDecorator]] authFilters:[map[name:DefaultAuth]]]] +[03e 12-15 03:49:10.92 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +[03f 12-15 03:49:10.93 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[040 12-15 03:49:10.93 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] +[041 12-15 03:49:10.95 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 +[042 12-15 03:49:10.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[043 12-15 03:49:10.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAIlXD+JMST62kcDisx8EdZ4wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOmm7o/jS6n0W46EDsOZNTE89JEAsUy3 +JQpocRi7jQOPlSYtnLpN9B7pYFXldzUEYQQ6ULfRD/XfuOFxjy3jdCmjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl +ddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0gAMEUCIQCaq7Zt +YoGZKFTwKxKIh0iFWj+K1p/LsaPjOd2X4ALGSAIgVHS1jGmxQaam88SeKViUck5+ +IDNK9dYOsiKBpmoLVDw= -----END CERTIFICATE----- -[044 12-12 14:19:35.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -[045 12-12 14:19:35.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -[046 12-12 14:19:35.85 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -[047 12-12 14:19:35.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -[048 12-12 14:19:35.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -[049 12-12 14:19:35.86 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -[04a 12-12 14:19:35.87 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 [] [244 159 227 45 159 119 125 251 84 216 113 219 24 76 98 245 18 229 29 41 76 157 120 121 127 21 160 61 22 239 57 198] peer0.org1.example.com:7051 } incTime is 1513088375862741500 -[04b 12-12 14:19:35.87 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 [] [244 159 227 45 159 119 125 251 84 216 113 219 24 76 98 245 18 229 29 41 76 157 120 121 127 21 160 61 22 239 57 198] peer0.org1.example.com:7051 } -[04c 12-12 14:19:35.87 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -[04d 12-12 14:19:35.87 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -[04e 12-12 14:19:35.87 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -[04f 12-12 14:19:35.87 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 -[050 12-12 14:19:35.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[051 12-12 14:19:35.87 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 -[052 12-12 14:19:35.87 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 -[053 12-12 14:19:35.87 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 -[054 12-12 14:19:35.87 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.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[055 12-12 14:19:35.87 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: 1801AA01C7060A20F49FE32D9F777DFB...455254494649434154452D2D2D2D2D0A -[056 12-12 14:19:35.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -[057 12-12 14:19:35.87 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: F9BDD86F65FC7824B52061BB06FE029778C3C6C5F2A03D30C985EB721015B219 -[058 12-12 14:19:35.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started -[059 12-12 14:19:35.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -[05a 12-12 14:19:35.87 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[05b 12-12 14:19:35.87 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[05c 12-12 14:19:35.87 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF4060A3F0A1B70656572302E6F...455254494649434154452D2D2D2D2D0A -[05d 12-12 14:19:35.87 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 2B3F59F038F585E7307FC1C764ACF4335A0898998DA39C4CF354F99EF1F0F05F -[05e 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[05f 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[060 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 -[061 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 -[062 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -[063 12-12 14:19:35.88 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.1.0,txid=32ca9a92-ed67-4cc3-8d99-8b0cc456904d,syscc=true,proposal=0x0,canname=cscc:1.1.0 -[064 12-12 14:19:35.88 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.1.0 is being launched -[065 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -[066 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[067 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=cscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -[068 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -[069 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: cscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) -[06a 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[06b 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +[044 12-15 03:49:10.95 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +[045 12-15 03:49:10.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +[046 12-15 03:49:10.97 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +[047 12-15 03:49:10.97 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +[048 12-15 03:49:10.97 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +[049 12-15 03:49:10.97 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +[04b 12-15 03:49:10.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[04c 12-15 03:49:10.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +[04a 12-15 03:49:10.97 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 [] [108 142 114 127 49 107 214 19 118 159 121 0 198 13 82 175 168 90 16 57 126 36 187 230 170 194 139 196 134 10 142 97] peer0.org1.example.com:7051 } incTime is 1513309750977768100 +[04d 12-15 03:49:10.99 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 [] [108 142 114 127 49 107 214 19 118 159 121 0 198 13 82 175 168 90 16 57 126 36 187 230 170 194 139 196 134 10 142 97] peer0.org1.example.com:7051 } +[04e 12-15 03:49:10.99 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +[04f 12-15 03:49:10.99 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +[050 12-15 03:49:10.99 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +[051 12-15 03:49:11.00 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 +[052 12-15 03:49:11.00 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 +[053 12-15 03:49:11.00 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 +[054 12-15 03:49:11.01 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 +[055 12-15 03:49:11.01 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.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[056 12-15 03:49:11.01 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: 1801AA01C7060A206C8E727F316BD613...455254494649434154452D2D2D2D2D0A +[057 12-15 03:49:11.01 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: 30C1096293DA1830AE09932C8B63C099BB5BBE01B4F9EB70176C57FEC97B5828 +[058 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started +[059 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +[05a 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[05b 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[05c 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF4060A3F0A1B70656572302E6F...455254494649434154452D2D2D2D2D0A +[05d 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 1981E2411805525F098358FE021F14BDB0D4CB5FDB4AACF88826C002BEA5AD32 +[05e 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[05f 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[060 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 +[061 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 +[062 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself +[063 12-15 03:49:11.01 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.1.0,txid=d5c66b03-7d86-44f2-a12d-98cac9839d50,syscc=true,proposal=0x0,canname=cscc:1.1.0 +[064 12-15 03:49:11.01 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.1.0 is being launched +[065 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +[066 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[067 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=cscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +[068 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +[069 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: cscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) +[06a 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[06b 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=cscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key @@ -136,72 +136,72 @@ q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAKrUoMIb 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} -[06c 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock -[06d 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock -[06e 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.1.0 -[070 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 -[071 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[072 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 -[073 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[074 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 -[075 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[06f 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) -[076 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[077 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[078 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[079 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.1.0 -[07a 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.1.0" , sending back REGISTERED -[07b 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[07c 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[07d 12-12 14:19:35.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 cscc:1.1.0 launch seq completed -[07e 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[07f 12-12 14:19:35.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 -[080 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[081 12-12 14:19:35.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... -[082 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32ca9a92]Move state message READY -[083 12-12 14:19:35.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [32ca9a92]Fabric side Handling ChaincodeMessage of type: READY in state established -[084 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [32ca9a92]Entered state ready -[085 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:32ca9a92-ed67-4cc3-8d99-8b0cc456904d, channelID: -[086 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32ca9a92]sending state message READY -[087 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32ca9a92]Received message READY from shim -[088 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [32ca9a92]Handling ChaincodeMessage of type: READY(state:established) -[089 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[08a 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[08b 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[08c 12-12 14:19:35.89 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.1.0 -[08d 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [32ca9a92]Inside sendExecuteMessage. Message INIT -[08e 12-12 14:19:35.89 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... -[08f 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [32ca9a92]sendExecuteMsg trigger event INIT -[090 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32ca9a92]Move state message INIT -[091 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [32ca9a92]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[092 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[093 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32ca9a92]sending state message INIT -[094 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32ca9a92]Received message INIT from shim -[095 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [32ca9a92]Handling ChaincodeMessage of type: INIT(state:ready) -[096 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[097 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [32ca9a92]Received INIT, initializing chaincode -[098 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -[099 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -[09a 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32ca9a92]Init get response status: 200 -[09b 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32ca9a92]Init succeeded. Sending COMPLETED -[09c 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32ca9a92]Move state message COMPLETED -[09d 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [32ca9a92]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[09e 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32ca9a92]send state message COMPLETED -[09f 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32ca9a92]Received message COMPLETED from shim -[0a0 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [32ca9a92]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[0a1 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [32ca9a92-ed67-4cc3-8d99-8b0cc456904d]HandleMessage- COMPLETED. Notify -[0a2 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:32ca9a92-ed67-4cc3-8d99-8b0cc456904d, channelID: -[0a3 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[0a4 12-12 14:19:35.89 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 -[0a5 12-12 14:19:35.89 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.1.0,txid=86bda0b3-0d5a-42dc-8eee-fbd83ae6d193,syscc=true,proposal=0x0,canname=lscc:1.1.0 -[0a6 12-12 14:19:35.89 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.1.0 is being launched -[0a7 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -[0a8 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[0a9 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=lscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -[0aa 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -[0ab 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: lscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) -[0ac 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[0ad 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +[06c 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock +[06d 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock +[06e 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.1.0 +[06f 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) +[071 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 +[072 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[073 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 +[074 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[070 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 +[075 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[076 12-15 03:49:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[077 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[078 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[079 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.1.0 +[07a 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.1.0" , sending back REGISTERED +[07b 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[07c 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[07d 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[07e 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[07f 12-15 03:49:11.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 cscc:1.1.0 launch seq completed +[080 12-15 03:49:11.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 +[081 12-15 03:49:11.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... +[082 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d5c66b03]Move state message READY +[083 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d5c66b03]Fabric side Handling ChaincodeMessage of type: READY in state established +[084 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [d5c66b03]Entered state ready +[085 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:d5c66b03-7d86-44f2-a12d-98cac9839d50, channelID: +[086 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d5c66b03]sending state message READY +[088 12-15 03:49:11.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 +[089 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[08a 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[08b 12-15 03:49:11.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: cscc:1.1.0 +[08c 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d5c66b03]Inside sendExecuteMessage. Message INIT +[08d 12-15 03:49:11.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... +[08e 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d5c66b03]sendExecuteMsg trigger event INIT +[08f 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d5c66b03]Move state message INIT +[090 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d5c66b03]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[091 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[092 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d5c66b03]sending state message INIT +[087 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d5c66b03]Received message READY from shim +[093 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d5c66b03]Handling ChaincodeMessage of type: READY(state:established) +[094 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d5c66b03]Received message INIT from shim +[095 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d5c66b03]Handling ChaincodeMessage of type: INIT(state:ready) +[096 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[097 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d5c66b03]Received INIT, initializing chaincode +[098 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +[099 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +[09a 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d5c66b03]Init get response status: 200 +[09b 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d5c66b03]Init succeeded. Sending COMPLETED +[09c 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d5c66b03]Move state message COMPLETED +[09d 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d5c66b03]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[09e 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d5c66b03]send state message COMPLETED +[09f 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d5c66b03]Received message COMPLETED from shim +[0a0 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d5c66b03]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[0a1 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d5c66b03-7d86-44f2-a12d-98cac9839d50]HandleMessage- COMPLETED. Notify +[0a2 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d5c66b03-7d86-44f2-a12d-98cac9839d50, channelID: +[0a3 12-15 03:49:11.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[0a4 12-15 03:49:11.02 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 +[0a5 12-15 03:49:11.02 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.1.0,txid=0d7f9aa4-93a9-45e9-9b7d-edd023701fe7,syscc=true,proposal=0x0,canname=lscc:1.1.0 +[0a6 12-15 03:49:11.02 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.1.0 is being launched +[0a7 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +[0a8 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[0a9 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=lscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +[0aa 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key] +[0ab 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: lscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) +[0ac 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[0ad 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=lscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key @@ -210,71 +210,71 @@ q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAKrUoMIb 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} -[0ae 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock -[0af 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock -[0b0 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.1.0 -[0b1 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) -[0b3 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 -[0b2 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 -[0b5 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[0b4 12-12 14:19:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[0b6 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.1.0 -[0b7 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[0b8 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[0b9 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[0ba 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[0bb 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.1.0 -[0bc 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.1.0" , sending back REGISTERED -[0bd 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[0be 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[0bf 12-12 14:19:35.90 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.1.0 launch seq completed -[0c0 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[0c1 12-12 14:19:35.90 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 -[0c2 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[0c3 12-12 14:19:35.90 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... -[0c4 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [86bda0b3]Move state message READY -[0c5 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [86bda0b3]Fabric side Handling ChaincodeMessage of type: READY in state established -[0c6 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [86bda0b3]Entered state ready -[0c7 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:86bda0b3-0d5a-42dc-8eee-fbd83ae6d193, channelID: -[0c8 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [86bda0b3]sending state message READY -[0ca 12-12 14:19:35.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 -[0cb 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[0cc 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[0cd 12-12 14:19:35.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: lscc:1.1.0 -[0c9 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [86bda0b3]Received message READY from shim -[0cf 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [86bda0b3]Handling ChaincodeMessage of type: READY(state:established) -[0ce 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [86bda0b3]Inside sendExecuteMessage. Message INIT -[0d0 12-12 14:19:35.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... -[0d1 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [86bda0b3]sendExecuteMsg trigger event INIT -[0d2 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [86bda0b3]Move state message INIT -[0d3 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [86bda0b3]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[0d4 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[0d5 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [86bda0b3]sending state message INIT -[0d6 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [86bda0b3]Received message INIT from shim -[0d7 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [86bda0b3]Handling ChaincodeMessage of type: INIT(state:ready) -[0d8 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[0d9 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [86bda0b3]Received INIT, initializing chaincode -[0da 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -[0db 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [86bda0b3]Init get response status: 200 -[0dc 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [86bda0b3]Init succeeded. Sending COMPLETED -[0dd 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [86bda0b3]Move state message COMPLETED -[0de 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [86bda0b3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[0df 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [86bda0b3]send state message COMPLETED -[0e0 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [86bda0b3]Received message COMPLETED from shim -[0e1 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [86bda0b3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[0e2 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [86bda0b3-0d5a-42dc-8eee-fbd83ae6d193]HandleMessage- COMPLETED. Notify -[0e3 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:86bda0b3-0d5a-42dc-8eee-fbd83ae6d193, channelID: -[0e4 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[0e5 12-12 14:19:35.90 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 -[0e6 12-12 14:19:35.90 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.1.0,txid=1a07d635-85d0-4038-bb67-e68f71195e54,syscc=true,proposal=0x0,canname=escc:1.1.0 -[0e7 12-12 14:19:35.90 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.1.0 is being launched -[0e8 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -[0e9 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[0ea 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=escc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -[0eb 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -[0ec 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: escc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) -[0ed 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[0ee 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +[0ae 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock +[0af 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock +[0b0 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.1.0 +[0b1 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) +[0b2 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 +[0b3 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[0b4 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.1.0 +[0b5 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[0b6 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 +[0b7 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[0b8 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[0b9 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[0ba 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[0bb 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.1.0 +[0bc 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.1.0" , sending back REGISTERED +[0bd 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[0be 12-15 03:49:11.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[0bf 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[0c0 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[0c1 12-15 03:49:11.04 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.1.0 launch seq completed +[0c2 12-15 03:49:11.04 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 +[0c3 12-15 03:49:11.04 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... +[0c4 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0d7f9aa4]Move state message READY +[0c5 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0d7f9aa4]Fabric side Handling ChaincodeMessage of type: READY in state established +[0c6 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [0d7f9aa4]Entered state ready +[0c7 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:0d7f9aa4-93a9-45e9-9b7d-edd023701fe7, channelID: +[0c9 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +[0ca 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[0cb 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[0cc 12-15 03:49:11.04 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.1.0 +[0cd 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0d7f9aa4]Inside sendExecuteMessage. Message INIT +[0ce 12-15 03:49:11.04 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... +[0cf 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0d7f9aa4]sendExecuteMsg trigger event INIT +[0c8 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0d7f9aa4]sending state message READY +[0d1 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d7f9aa4]Received message READY from shim +[0d2 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0d7f9aa4]Handling ChaincodeMessage of type: READY(state:established) +[0d0 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0d7f9aa4]Move state message INIT +[0d3 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0d7f9aa4]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[0d4 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[0d5 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0d7f9aa4]sending state message INIT +[0d6 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d7f9aa4]Received message INIT from shim +[0d7 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0d7f9aa4]Handling ChaincodeMessage of type: INIT(state:ready) +[0d8 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[0d9 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [0d7f9aa4]Received INIT, initializing chaincode +[0da 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +[0db 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d7f9aa4]Init get response status: 200 +[0dc 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d7f9aa4]Init succeeded. Sending COMPLETED +[0dd 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d7f9aa4]Move state message COMPLETED +[0de 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0d7f9aa4]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[0df 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d7f9aa4]send state message COMPLETED +[0e0 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0d7f9aa4]Received message COMPLETED from shim +[0e1 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0d7f9aa4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[0e2 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0d7f9aa4-93a9-45e9-9b7d-edd023701fe7]HandleMessage- COMPLETED. Notify +[0e3 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0d7f9aa4-93a9-45e9-9b7d-edd023701fe7, channelID: +[0e4 12-15 03:49:11.04 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[0e5 12-15 03:49:11.05 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 +[0e6 12-15 03:49:11.05 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.1.0,txid=18945a58-71ca-4aad-9489-a5216c668854,syscc=true,proposal=0x0,canname=escc:1.1.0 +[0e7 12-15 03:49:11.05 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.1.0 is being launched +[0e8 12-15 03:49:11.05 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +[0e9 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[0ea 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=escc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +[0eb 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +[0ec 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: escc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) +[0ed 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[0ee 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=escc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key @@ -283,71 +283,71 @@ q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAKrUoMIb 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} -[0ef 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock -[0f0 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock -[0f1 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.1.0 -[0f2 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) -[0f3 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 -[0f5 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[0f4 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 -[0f6 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[0f7 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 -[0f8 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[0f9 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[0fa 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[0fb 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[0fc 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.1.0 -[0fd 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.1.0" , sending back REGISTERED -[0fe 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[0ff 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[100 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[101 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[102 12-12 14:19:35.90 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.1.0 launch seq completed -[103 12-12 14:19:35.90 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 -[104 12-12 14:19:35.90 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... -[105 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1a07d635]Move state message READY -[106 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1a07d635]Fabric side Handling ChaincodeMessage of type: READY in state established -[107 12-12 14:19:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [1a07d635]Entered state ready -[108 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:1a07d635-85d0-4038-bb67-e68f71195e54, channelID: -[10a 12-12 14:19:35.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 -[10b 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[10c 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[10d 12-12 14:19:35.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: escc:1.1.0 -[10e 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1a07d635]Inside sendExecuteMessage. Message INIT -[10f 12-12 14:19:35.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... -[110 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1a07d635]sendExecuteMsg trigger event INIT -[109 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1a07d635]sending state message READY -[112 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a07d635]Received message READY from shim -[113 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1a07d635]Handling ChaincodeMessage of type: READY(state:established) -[111 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1a07d635]Move state message INIT -[114 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1a07d635]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[115 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[116 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1a07d635]sending state message INIT -[117 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a07d635]Received message INIT from shim -[118 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1a07d635]Handling ChaincodeMessage of type: INIT(state:ready) -[119 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[11a 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [1a07d635]Received INIT, initializing chaincode -[11b 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -[11c 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a07d635]Init get response status: 200 -[11d 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a07d635]Init succeeded. Sending COMPLETED -[11e 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a07d635]Move state message COMPLETED -[11f 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1a07d635]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[120 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a07d635]send state message COMPLETED -[121 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1a07d635]Received message COMPLETED from shim -[122 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1a07d635]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[123 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1a07d635-85d0-4038-bb67-e68f71195e54]HandleMessage- COMPLETED. Notify -[124 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1a07d635-85d0-4038-bb67-e68f71195e54, channelID: -[125 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[126 12-12 14:19:35.91 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 -[127 12-12 14:19:35.91 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.1.0,txid=9260c88c-9a79-4695-bb87-1b7070cd63bb,syscc=true,proposal=0x0,canname=vscc:1.1.0 -[128 12-12 14:19:35.91 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.1.0 is being launched -[129 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -[12a 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[12b 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -[12c 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -[12d 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) -[12e 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[12f 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +[0ef 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock +[0f0 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock +[0f1 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.1.0 +[0f2 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) +[0f3 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 +[0f4 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[0f5 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 +[0f6 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[0f7 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 +[0f8 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[0f9 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[0fa 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[0fb 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[0fc 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.1.0 +[0fd 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.1.0" , sending back REGISTERED +[0fe 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[0ff 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[100 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[101 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[102 12-15 03:49:11.06 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.1.0 launch seq completed +[103 12-15 03:49:11.06 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 +[104 12-15 03:49:11.06 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... +[105 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [18945a58]Move state message READY +[106 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [18945a58]Fabric side Handling ChaincodeMessage of type: READY in state established +[107 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [18945a58]Entered state ready +[108 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:18945a58-71ca-4aad-9489-a5216c668854, channelID: +[109 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [18945a58]sending state message READY +[10a 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18945a58]Received message READY from shim +[10b 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [18945a58]Handling ChaincodeMessage of type: READY(state:established) +[10c 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +[10d 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[10e 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[10f 12-15 03:49:11.06 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.1.0 +[110 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [18945a58]Inside sendExecuteMessage. Message INIT +[111 12-15 03:49:11.06 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... +[112 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [18945a58]sendExecuteMsg trigger event INIT +[113 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [18945a58]Move state message INIT +[114 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [18945a58]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[115 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[116 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [18945a58]sending state message INIT +[117 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18945a58]Received message INIT from shim +[118 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [18945a58]Handling ChaincodeMessage of type: INIT(state:ready) +[119 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[11a 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [18945a58]Received INIT, initializing chaincode +[11b 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +[11c 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18945a58]Init get response status: 200 +[11d 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18945a58]Init succeeded. Sending COMPLETED +[11e 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18945a58]Move state message COMPLETED +[11f 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [18945a58]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[120 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18945a58]send state message COMPLETED +[121 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [18945a58]Received message COMPLETED from shim +[122 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [18945a58]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[123 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [18945a58-71ca-4aad-9489-a5216c668854]HandleMessage- COMPLETED. Notify +[124 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:18945a58-71ca-4aad-9489-a5216c668854, channelID: +[125 12-15 03:49:11.06 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[126 12-15 03:49:11.06 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 +[127 12-15 03:49:11.06 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.1.0,txid=5880f3a8-10ca-42c1-90cf-89b963cd8b16,syscc=true,proposal=0x0,canname=vscc:1.1.0 +[128 12-15 03:49:11.06 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.1.0 is being launched +[129 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +[12a 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[12b 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +[12c 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +[12d 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) +[12e 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[12f 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key @@ -356,70 +356,70 @@ q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAKrUoMIb 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} -[130 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock -[131 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock -[132 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.1.0 -[133 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) -[135 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 -[136 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[137 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 -[138 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[134 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 -[139 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[13a 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[13b 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[13c 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[13d 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.1.0 -[13e 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.1.0" , sending back REGISTERED -[13f 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[140 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[141 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[143 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[142 12-12 14:19:35.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.1.0 launch seq completed -[144 12-12 14:19:35.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 -[145 12-12 14:19:35.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... -[146 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9260c88c]Move state message READY -[147 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9260c88c]Fabric side Handling ChaincodeMessage of type: READY in state established -[148 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [9260c88c]Entered state ready -[149 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:9260c88c-9a79-4695-bb87-1b7070cd63bb, channelID: -[14a 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9260c88c]sending state message READY -[14b 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9260c88c]Received message READY from shim -[14c 12-12 14:19:35.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 -[14e 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[14f 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[14d 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9260c88c]Handling ChaincodeMessage of type: READY(state:established) -[150 12-12 14:19:35.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.1.0 -[151 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9260c88c]Inside sendExecuteMessage. Message INIT -[152 12-12 14:19:35.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... -[153 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9260c88c]sendExecuteMsg trigger event INIT -[154 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9260c88c]Move state message INIT -[155 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9260c88c]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[156 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[157 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9260c88c]sending state message INIT -[158 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9260c88c]Received message INIT from shim -[159 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9260c88c]Handling ChaincodeMessage of type: INIT(state:ready) -[15a 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[15b 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [9260c88c]Received INIT, initializing chaincode -[15c 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9260c88c]Init get response status: 200 -[15d 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9260c88c]Init succeeded. Sending COMPLETED -[15e 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9260c88c]Move state message COMPLETED -[15f 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9260c88c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[160 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9260c88c]send state message COMPLETED -[161 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9260c88c]Received message COMPLETED from shim -[162 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9260c88c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[163 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9260c88c-9a79-4695-bb87-1b7070cd63bb]HandleMessage- COMPLETED. Notify -[164 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9260c88c-9a79-4695-bb87-1b7070cd63bb, channelID: -[165 12-12 14:19:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[166 12-12 14:19:35.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 -[167 12-12 14:19:35.92 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.1.0,txid=2800e44b-479a-4037-a809-2b93dbf305b6,syscc=true,proposal=0x0,canname=qscc:1.1.0 -[168 12-12 14:19:35.92 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.1.0 is being launched -[169 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -[16a 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[16b 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=qscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -[16c 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -[16d 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: qscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) -[16e 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[16f 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +[130 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock +[131 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock +[132 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.1.0 +[133 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) +[134 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 +[135 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[136 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 +[137 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[138 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 +[139 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[13a 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[13b 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[13c 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[13d 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.1.0 +[13e 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.1.0" , sending back REGISTERED +[13f 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[140 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[141 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[142 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[143 12-15 03:49:11.07 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.1.0 launch seq completed +[144 12-15 03:49:11.07 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 +[145 12-15 03:49:11.07 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... +[146 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5880f3a8]Move state message READY +[147 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5880f3a8]Fabric side Handling ChaincodeMessage of type: READY in state established +[148 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [5880f3a8]Entered state ready +[149 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:5880f3a8-10ca-42c1-90cf-89b963cd8b16, channelID: +[14a 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5880f3a8]sending state message READY +[14b 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5880f3a8]Received message READY from shim +[14c 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5880f3a8]Handling ChaincodeMessage of type: READY(state:established) +[14d 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +[14e 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[14f 12-15 03:49:11.07 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[150 12-15 03:49:11.07 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.1.0 +[151 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5880f3a8]Inside sendExecuteMessage. Message INIT +[152 12-15 03:49:11.08 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... +[153 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5880f3a8]sendExecuteMsg trigger event INIT +[154 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5880f3a8]Move state message INIT +[155 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5880f3a8]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[156 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[157 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5880f3a8]sending state message INIT +[158 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5880f3a8]Received message INIT from shim +[159 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5880f3a8]Handling ChaincodeMessage of type: INIT(state:ready) +[15a 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[15b 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [5880f3a8]Received INIT, initializing chaincode +[15c 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5880f3a8]Init get response status: 200 +[15d 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5880f3a8]Init succeeded. Sending COMPLETED +[15e 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5880f3a8]Move state message COMPLETED +[15f 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5880f3a8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[160 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5880f3a8]send state message COMPLETED +[161 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5880f3a8]Received message COMPLETED from shim +[162 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5880f3a8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[163 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5880f3a8-10ca-42c1-90cf-89b963cd8b16]HandleMessage- COMPLETED. Notify +[164 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:5880f3a8-10ca-42c1-90cf-89b963cd8b16, channelID: +[165 12-15 03:49:11.08 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[166 12-15 03:49:11.08 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 +[167 12-15 03:49:11.08 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.1.0,txid=90796812-ff7a-4493-96b3-93977d1e67d0,syscc=true,proposal=0x0,canname=qscc:1.1.0 +[168 12-15 03:49:11.09 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.1.0 is being launched +[169 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +[16a 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[16b 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=qscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +[16c 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +[16d 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: qscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) +[16e 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[16f 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=qscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key @@ -428,1135 +428,1214 @@ q+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAKrUoMIb 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} -[170 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock -[171 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock -[172 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.1.0 -[173 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) -[174 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 -[175 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[176 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 -[177 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[178 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 -[179 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[17a 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[17b 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[17c 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[17d 12-12 14:19:35.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.1.0 -[17e 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.1.0" , sending back REGISTERED -[17f 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[180 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[181 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[182 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[183 12-12 14:19:35.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.1.0 launch seq completed -[184 12-12 14:19:35.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 -[185 12-12 14:19:35.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... -[186 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2800e44b]Move state message READY -[187 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2800e44b]Fabric side Handling ChaincodeMessage of type: READY in state established -[188 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [2800e44b]Entered state ready -[189 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:2800e44b-479a-4037-a809-2b93dbf305b6, channelID: -[18a 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2800e44b]sending state message READY -[18b 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2800e44b]Received message READY from shim -[18c 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2800e44b]Handling ChaincodeMessage of type: READY(state:established) -[18d 12-12 14:19:35.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 -[18e 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[18f 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[190 12-12 14:19:35.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.1.0 -[191 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [2800e44b]Inside sendExecuteMessage. Message INIT -[192 12-12 14:19:35.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... -[193 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [2800e44b]sendExecuteMsg trigger event INIT -[194 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2800e44b]Move state message INIT -[195 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2800e44b]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[196 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[197 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2800e44b]sending state message INIT -[198 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2800e44b]Received message INIT from shim -[199 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2800e44b]Handling ChaincodeMessage of type: INIT(state:ready) -[19a 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[19b 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [2800e44b]Received INIT, initializing chaincode -[19c 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -[19d 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2800e44b]Init get response status: 200 -[19e 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2800e44b]Init succeeded. Sending COMPLETED -[19f 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2800e44b]Move state message COMPLETED -[1a0 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2800e44b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[1a1 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2800e44b]send state message COMPLETED -[1a2 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2800e44b]Received message COMPLETED from shim -[1a3 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2800e44b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[1a4 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2800e44b-479a-4037-a809-2b93dbf305b6]HandleMessage- COMPLETED. Notify -[1a5 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:2800e44b-479a-4037-a809-2b93dbf305b6, channelID: -[1a6 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[1a7 12-12 14:19:35.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 -[1a8 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled -[1a9 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes -[1aa 12-12 14:19:35.92 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] -[1ab 12-12 14:19:35.92 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] -[1ac 12-12 14:19:35.92 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' -[1ad 12-12 14:19:35.92 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' -[1ae 12-12 14:19:35.92 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' -[1af 12-12 14:19:35.92 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' -[1b0 12-12 14:19:35.92 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' -[1b1 12-12 14:19:35.92 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' -[1b2 12-12 14:19:35.92 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' -[1b3 12-12 14:19:35.92 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' -[1b4 12-12 14:19:35.92 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' -[1b5 12-12 14:19:35.92 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' -[1b6 12-12 14:19:35.92 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' -[1b7 12-12 14:19:35.92 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' -[1b8 12-12 14:19:35.92 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' -[1b9 12-12 14:19:35.92 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' -[1ba 12-12 14:19:35.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' -[1bb 12-12 14:19:35.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' -[1bc 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36666 -[1bd 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4218e3860 -[1be 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[1bf 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[1c0 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -[1c1 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[1c2 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[1c3 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42033d630, header 0xc4218e38f0 -[1c4 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -[1c5 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 2496ccf07183b996b1da359017200bd8c2b36638a18be3f0541d3b94f10108a5 -[1c6 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 2496ccf07183b996b1da359017200bd8c2b36638a18be3f0541d3b94f10108a5 channel id: -[1c7 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 2496ccf07183b996b1da359017200bd8c2b36638a18be3f0541d3b94f10108a5 channel id: version: 1.1.0 -[1c8 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=2496ccf07183b996b1da359017200bd8c2b36638a18be3f0541d3b94f10108a5,syscc=true,proposal=0xc42033d630,canname=cscc:1.1.0 -[1c9 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -[1ca 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[1cb 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -[1cc 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2496ccf0]Inside sendExecuteMessage. Message TRANSACTION -[1cd 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[1ce 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[1cf 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2496ccf0]sendExecuteMsg trigger event TRANSACTION -[1d0 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2496ccf0]Move state message TRANSACTION -[1d1 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2496ccf0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[1d2 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[1d3 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2496ccf0]sending state message TRANSACTION -[1d4 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2496ccf0]Received message TRANSACTION from shim -[1d5 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2496ccf0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[1d6 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2496ccf0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[1d7 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -[1d8 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -[1d9 12-12 14:19:40.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -[1da 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] -[1db 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] does not exist -[1dc 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] exists -[1dd 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -[1de 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -[1df 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -[1e0 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -[1e1 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -[1e2 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -[1e3 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc421a442a0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -[1e4 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -[1e5 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: -[1e6 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() -[1e7 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. -[1e8 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [0] -[1e9 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[1ea 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [0] -[1eb 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[1ec 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -[1ed 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -[1ee 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -[1ef 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -[1f0 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -[1f1 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -[1f2 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:1 channel_group: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -[1f3 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[1f4 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[1f5 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[1f6 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[1f7 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[1f8 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[1f9 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[1fa 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[1fb 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[1fc 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[1fd 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[1fe 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[1ff 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[200 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[201 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[202 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[203 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[204 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[205 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[206 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[207 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[208 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[209 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -[20a 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[20b 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[20c 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[20d 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[20e 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[20f 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[210 12-12 14:19:40.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[211 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[212 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[213 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[214 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[215 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[216 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[217 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[218 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[219 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[21a 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[21b 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[21c 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[21d 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[21e 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[21f 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[220 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[221 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[222 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[223 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[224 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[225 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[226 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[227 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[228 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[229 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[22a 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[22b 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[22c 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[22d 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[22e 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[22f 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[230 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[231 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[232 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[233 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[234 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[235 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[236 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[237 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[238 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[239 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -[23a 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -[23b 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [0] Transaction index [0] TxId [] marked as valid by state validator -[23c 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[23d 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[23e 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[23f 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage -[240 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [0] -[241 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x75, 0x95, 0x22, 0x8d, 0x73, 0xc0, 0xf2, 0x8, 0x3f, 0x0, 0x84, 0x26, 0x3f, 0xe, 0x6, 0x25, 0xc, 0xfa, 0x4, 0x7a, 0x46, 0xa1, 0x94, 0xba, 0xa3, 0xa8, 0x4a, 0x7b, 0xc5, 0xb3, 0x54, 0xed} txOffsets= -txId= locPointer=offset=38, bytesLength=12077 +[170 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock +[171 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock +[172 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.1.0 +[173 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) +[174 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 +[175 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[176 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 +[177 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[178 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 +[179 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[17a 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[17b 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[17c 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[17d 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.1.0 +[17e 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.1.0" , sending back REGISTERED +[17f 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[180 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[181 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[182 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[183 12-15 03:49:11.09 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.1.0 launch seq completed +[184 12-15 03:49:11.09 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 +[185 12-15 03:49:11.09 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... +[186 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90796812]Move state message READY +[187 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [90796812]Fabric side Handling ChaincodeMessage of type: READY in state established +[188 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [90796812]Entered state ready +[189 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:90796812-ff7a-4493-96b3-93977d1e67d0, channelID: +[18a 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90796812]sending state message READY +[18b 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90796812]Received message READY from shim +[18c 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90796812]Handling ChaincodeMessage of type: READY(state:established) +[18d 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +[18e 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[18f 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[190 12-15 03:49:11.09 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.1.0 +[191 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [90796812]Inside sendExecuteMessage. Message INIT +[192 12-15 03:49:11.09 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... +[193 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [90796812]sendExecuteMsg trigger event INIT +[194 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90796812]Move state message INIT +[195 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [90796812]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[196 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[197 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90796812]sending state message INIT +[198 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90796812]Received message INIT from shim +[199 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90796812]Handling ChaincodeMessage of type: INIT(state:ready) +[19a 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[19b 12-15 03:49:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [90796812]Received INIT, initializing chaincode +[19c 12-15 03:49:11.10 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +[19d 12-15 03:49:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90796812]Init get response status: 200 +[19e 12-15 03:49:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90796812]Init succeeded. Sending COMPLETED +[19f 12-15 03:49:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90796812]Move state message COMPLETED +[1a0 12-15 03:49:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90796812]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[1a1 12-15 03:49:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90796812]send state message COMPLETED +[1a2 12-15 03:49:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90796812]Received message COMPLETED from shim +[1a3 12-15 03:49:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [90796812]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[1a4 12-15 03:49:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [90796812-ff7a-4493-96b3-93977d1e67d0]HandleMessage- COMPLETED. Notify +[1a5 12-15 03:49:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:90796812-ff7a-4493-96b3-93977d1e67d0, channelID: +[1a6 12-15 03:49:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[1a7 12-15 03:49:11.11 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 +[1a8 12-15 03:49:11.11 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled +[1a9 12-15 03:49:11.11 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes +[1aa 12-15 03:49:11.11 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] +[1ab 12-15 03:49:11.11 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] +[1ac 12-15 03:49:11.11 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' +[1ad 12-15 03:49:11.11 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' +[1ae 12-15 03:49:11.11 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' +[1af 12-15 03:49:11.11 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' +[1b0 12-15 03:49:11.11 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' +[1b1 12-15 03:49:11.11 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' +[1b2 12-15 03:49:11.11 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' +[1b3 12-15 03:49:11.11 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' +[1b4 12-15 03:49:11.11 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' +[1b5 12-15 03:49:11.11 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' +[1b6 12-15 03:49:11.11 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' +[1b7 12-15 03:49:11.11 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' +[1b8 12-15 03:49:11.11 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' +[1b9 12-15 03:49:11.11 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' +[1ba 12-15 03:49:11.11 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' +[1bb 12-15 03:49:11.11 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' +[1bc 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40850 +[1bd 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421b0dbf0 +[1be 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +[1bf 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[1c0 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +[1c1 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[1c2 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[1c3 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42196de00, header 0xc421b0dc80 +[1c4 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +[1c5 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 874d2d0c9dd653d155fd2f2ea7a7a8366daeccc8c1792d9d3fad791a213aac66 +[1c6 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 874d2d0c9dd653d155fd2f2ea7a7a8366daeccc8c1792d9d3fad791a213aac66 channel id: +[1c7 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 874d2d0c9dd653d155fd2f2ea7a7a8366daeccc8c1792d9d3fad791a213aac66 channel id: version: 1.1.0 +[1c8 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=874d2d0c9dd653d155fd2f2ea7a7a8366daeccc8c1792d9d3fad791a213aac66,syscc=true,proposal=0xc42196de00,canname=cscc:1.1.0 +[1c9 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 +[1ca 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[1cb 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +[1cc 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [874d2d0c]Inside sendExecuteMessage. Message TRANSACTION +[1cd 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1ce 12-15 03:49:14.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[1cf 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [874d2d0c]sendExecuteMsg trigger event TRANSACTION +[1d0 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [874d2d0c]Move state message TRANSACTION +[1d1 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [874d2d0c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[1d2 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[1d3 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [874d2d0c]sending state message TRANSACTION +[1d4 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [874d2d0c]Received message TRANSACTION from shim +[1d5 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [874d2d0c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1d6 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [874d2d0c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1d7 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +[1d8 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +[1d9 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +[1da 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] +[1db 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] does not exist +[1dc 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] exists +[1dd 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +[1de 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +[1df 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +[1e0 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +[1e1 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +[1e2 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +[1e3 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc421c479a0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +[1e4 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +[1e5 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: +[1e6 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() +[1e7 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. +[1e8 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [0] +[1e9 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[1ea 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [0] +[1eb 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +[1ec 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +[1ed 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +[1ee 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +[1ef 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +[1f0 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +[1f1 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +[1f2 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:1 channel_group: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +[1f3 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[1f4 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[1f5 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[1f6 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[1f7 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[1f8 12-15 03:49:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[1f9 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[1fa 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[1fb 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[1fc 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[1fd 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[1fe 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[1ff 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[200 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[201 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[202 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[203 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[204 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[205 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[206 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[207 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[208 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[209 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +[20a 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[20b 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[20c 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[20d 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[20e 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[20f 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +[210 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[211 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[212 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[213 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[214 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[215 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[216 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[217 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[218 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[219 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[21a 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[21b 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[21c 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[21d 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[21e 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[21f 12-15 03:49:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[220 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[221 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[222 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[223 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[224 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[225 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[226 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[227 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[228 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[229 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[22a 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[22b 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[22c 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[22d 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[22e 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[22f 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[230 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[231 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[232 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[233 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[234 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[235 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[236 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[237 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[238 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[239 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +[23a 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +[23b 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [0] Transaction index [0] TxId [] marked as valid by state validator +[23c 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +[23d 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +[23e 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +[23f 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage +[240 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [0] +[241 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xa1, 0x60, 0xe0, 0x48, 0x49, 0xa2, 0x7b, 0xd, 0x4, 0xe8, 0xa0, 0x11, 0xe6, 0xf7, 0x68, 0xce, 0x66, 0xf4, 0xbe, 0xa6, 0xb, 0xc5, 0x74, 0xd1, 0xf8, 0xc1, 0xc6, 0x60, 0xbf, 0x2c, 0xe0, 0x38} txOffsets= +txId= locPointer=offset=38, bytesLength=12083 ] -[242 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12077] for tx ID: [] to index -[243 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12077] for tx number:[0] ID: [] to blockNumTranNum index -[244 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12121], isChainEmpty=[false], lastBlockNumber=[0] -[245 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 0 -[246 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 0 -[247 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [0] with 1 transaction(s) -[248 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database -[249 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[24a 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -[24b 12-12 14:19:40.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -[24c 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[24d 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to history database -[24e 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -[24f 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -[250 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -[251 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -[252 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [d01b4e94-6e29-46bb-a8b5-35e994987625] -[253 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.retrievePersistedConf.GetState.getState.GetState.GetState -> DEBU GetState(). ns=, key=resourcesconfigtx.CHANNEL_CONFIG_KEY -[254 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [d01b4e94-6e29-46bb-a8b5-35e994987625] -[255 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[256 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[257 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[258 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[259 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[25a 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[25b 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[25c 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[25d 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[25e 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[25f 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[260 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[261 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[262 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[263 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[264 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[265 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[266 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[267 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[268 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[269 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[26a 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[26b 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[26c 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[26d 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[26e 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[26f 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[270 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[271 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -[272 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[273 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[274 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[275 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[276 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[277 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[278 12-12 14:19:40.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[279 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[27a 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[27b 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[27c 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[27d 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[27e 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[27f 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[280 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[281 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[282 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[283 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[284 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[285 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[286 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[287 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[288 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[289 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[28a 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[28b 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[28c 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[28d 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[28e 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[28f 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[290 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[291 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[292 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[293 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[294 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[295 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[296 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[297 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[298 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[299 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[29a 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[29b 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[29c 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[29d 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[29e 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[29f 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[2a0 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -[2a1 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[2a2 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[2a3 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[2a4 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[2a5 12-12 14:19:40.32 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[2a6 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] -[2a7 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/transientStore/] does not exist -[2a8 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/transientStore/] exists -[2a9 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -[2aa 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func3 -> DEBU Deploying system CC, for chain -[2ab 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[2ac 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [88dd4b18-2b95-4be5-af72-e9a704c8ac61] -[2ad 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.1.0,txid=88dd4b18-2b95-4be5-af72-e9a704c8ac61,syscc=true,proposal=0x0,canname=cscc:1.1.0 -[2ae 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -[2af 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[2b0 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -[2b1 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [88dd4b18]Inside sendExecuteMessage. Message INIT -[2b2 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[2b3 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [88dd4b18]sendExecuteMsg trigger event INIT -[2b4 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [88dd4b18]Move state message INIT -[2b5 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [88dd4b18]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[2b6 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[2b7 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [88dd4b18]sending state message INIT -[2b8 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [88dd4b18]Received message INIT from shim -[2b9 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [88dd4b18]Handling ChaincodeMessage of type: INIT(state:ready) -[2ba 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[2bb 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [88dd4b18]Received INIT, initializing chaincode -[2bc 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -[2bd 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [88dd4b18]Init get response status: 200 -[2be 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [88dd4b18]Init succeeded. Sending COMPLETED -[2bf 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [88dd4b18]Move state message COMPLETED -[2c0 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [88dd4b18]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[2c1 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [88dd4b18]send state message COMPLETED -[2c2 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [88dd4b18]Received message COMPLETED from shim -[2c3 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [88dd4b18]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[2c4 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [88dd4b18-2b95-4be5-af72-e9a704c8ac61]HandleMessage- COMPLETED. Notify -[2c5 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:88dd4b18-2b95-4be5-af72-e9a704c8ac61, channelID:businesschannel -[2c6 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[2c7 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -[2c8 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [88dd4b18-2b95-4be5-af72-e9a704c8ac61] -[2c9 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[2ca 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [245e2479-953f-41f9-bf31-191dadd7164e] -[2cb 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=245e2479-953f-41f9-bf31-191dadd7164e,syscc=true,proposal=0x0,canname=lscc:1.1.0 -[2cc 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[2cd 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[2ce 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[2cf 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [245e2479]Inside sendExecuteMessage. Message INIT -[2d0 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[2d1 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [245e2479]sendExecuteMsg trigger event INIT -[2d2 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [245e2479]Move state message INIT -[2d3 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [245e2479]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[2d4 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[2d5 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [245e2479]sending state message INIT -[2d6 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [245e2479]Received message INIT from shim -[2d7 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [245e2479]Handling ChaincodeMessage of type: INIT(state:ready) -[2d8 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[2d9 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [245e2479]Received INIT, initializing chaincode -[2da 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [245e2479]Init get response status: 200 -[2db 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [245e2479]Init succeeded. Sending COMPLETED -[2dc 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [245e2479]Move state message COMPLETED -[2dd 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [245e2479]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[2de 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [245e2479]send state message COMPLETED -[2df 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [245e2479]Received message COMPLETED from shim -[2e0 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [245e2479]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[2e1 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [245e2479-953f-41f9-bf31-191dadd7164e]HandleMessage- COMPLETED. Notify -[2e2 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:245e2479-953f-41f9-bf31-191dadd7164e, channelID:businesschannel -[2e3 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[2e4 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -[2e5 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [245e2479-953f-41f9-bf31-191dadd7164e] -[2e6 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[2e7 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b860a85d-e013-4d5f-a516-c56d9b5affd7] -[2e8 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=b860a85d-e013-4d5f-a516-c56d9b5affd7,syscc=true,proposal=0x0,canname=escc:1.1.0 -[2e9 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[2ea 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[2eb 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[2ec 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b860a85d]Inside sendExecuteMessage. Message INIT -[2ed 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[2ee 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b860a85d]sendExecuteMsg trigger event INIT -[2ef 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b860a85d]Move state message INIT -[2f0 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b860a85d]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[2f1 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[2f2 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b860a85d]sending state message INIT -[2f3 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b860a85d]Received message INIT from shim -[2f4 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b860a85d]Handling ChaincodeMessage of type: INIT(state:ready) -[2f5 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[2f6 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b860a85d]Received INIT, initializing chaincode -[2f7 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -[2f8 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b860a85d]Init get response status: 200 -[2f9 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b860a85d]Init succeeded. Sending COMPLETED -[2fa 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b860a85d]Move state message COMPLETED -[2fb 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b860a85d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[2fc 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b860a85d]send state message COMPLETED -[2fd 12-12 14:19:40.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b860a85d]Received message COMPLETED from shim -[2fe 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b860a85d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[2ff 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b860a85d-e013-4d5f-a516-c56d9b5affd7]HandleMessage- COMPLETED. Notify -[300 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b860a85d-e013-4d5f-a516-c56d9b5affd7, channelID:businesschannel -[301 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[302 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -[303 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [b860a85d-e013-4d5f-a516-c56d9b5affd7] -[304 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[305 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b2e99fa8-0326-4090-a9e5-f2e52bca410e] -[306 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=b2e99fa8-0326-4090-a9e5-f2e52bca410e,syscc=true,proposal=0x0,canname=vscc:1.1.0 -[307 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -[308 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[309 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -[30a 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b2e99fa8]Inside sendExecuteMessage. Message INIT -[30b 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[30c 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b2e99fa8]sendExecuteMsg trigger event INIT -[30d 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b2e99fa8]Move state message INIT -[30e 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b2e99fa8]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[30f 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[310 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b2e99fa8]sending state message INIT -[311 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2e99fa8]Received message INIT from shim -[312 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b2e99fa8]Handling ChaincodeMessage of type: INIT(state:ready) -[313 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[314 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b2e99fa8]Received INIT, initializing chaincode -[315 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2e99fa8]Init get response status: 200 -[316 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2e99fa8]Init succeeded. Sending COMPLETED -[317 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2e99fa8]Move state message COMPLETED -[318 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b2e99fa8]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[319 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2e99fa8]send state message COMPLETED -[31a 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b2e99fa8]Received message COMPLETED from shim -[31b 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b2e99fa8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[31c 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b2e99fa8-0326-4090-a9e5-f2e52bca410e]HandleMessage- COMPLETED. Notify -[31d 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b2e99fa8-0326-4090-a9e5-f2e52bca410e, channelID:businesschannel -[31e 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[31f 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -[320 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [b2e99fa8-0326-4090-a9e5-f2e52bca410e] -[321 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[322 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [63c2b686-5cc4-4995-bbfd-10c0449e13bb] -[323 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=63c2b686-5cc4-4995-bbfd-10c0449e13bb,syscc=true,proposal=0x0,canname=qscc:1.1.0 -[324 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 -[325 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[326 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -[327 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [63c2b686]Inside sendExecuteMessage. Message INIT -[328 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[329 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [63c2b686]sendExecuteMsg trigger event INIT -[32a 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [63c2b686]Move state message INIT -[32b 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [63c2b686]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[32c 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[32d 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [63c2b686]sending state message INIT -[32e 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [63c2b686]Received message INIT from shim -[32f 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [63c2b686]Handling ChaincodeMessage of type: INIT(state:ready) -[330 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[331 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [63c2b686]Received INIT, initializing chaincode -[332 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -[333 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [63c2b686]Init get response status: 200 -[334 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [63c2b686]Init succeeded. Sending COMPLETED -[335 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [63c2b686]Move state message COMPLETED -[336 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [63c2b686]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[337 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [63c2b686]send state message COMPLETED -[338 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [63c2b686]Received message COMPLETED from shim -[339 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [63c2b686]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[33a 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [63c2b686-5cc4-4995-bbfd-10c0449e13bb]HandleMessage- COMPLETED. Notify -[33b 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:63c2b686-5cc4-4995-bbfd-10c0449e13bb, channelID:businesschannel -[33c 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[33d 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -[33e 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [63c2b686-5cc4-4995-bbfd-10c0449e13bb] -[33f 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled -[340 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry -[341 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit -[342 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry -[343 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 -[344 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully -[345 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit -[346 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2496ccf0]Transaction completed. Sending COMPLETED -[347 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2496ccf0]Move state message COMPLETED -[348 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2496ccf0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[349 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2496ccf0]send state message COMPLETED -[34a 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2496ccf0]Received message COMPLETED from shim -[34b 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2496ccf0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[34c 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2496ccf07183b996b1da359017200bd8c2b36638a18be3f0541d3b94f10108a5]HandleMessage- COMPLETED. Notify -[34d 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:2496ccf07183b996b1da359017200bd8c2b36638a18be3f0541d3b94f10108a5, channelID: -[34e 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[34f 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[350 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[351 12-12 14:19:40.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36666) -[352 12-12 14:19:46.33 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 -[353 12-12 14:19:46.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -[354 12-12 14:19:46.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... -[355 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -[356 12-12 14:19:46.37 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel -[357 12-12 14:19:46.38 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -[358 12-12 14:19:46.39 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] -[359 12-12 14:19:46.39 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] -[35a 12-12 14:19:46.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[35b 12-12 14:19:46.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[35c 12-12 14:19:46.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc420208180 env 0xc422523230 txn 0 -[35d 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422523230 -[35e 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\375\312\277\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN\ntV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE\n+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q\nXZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd\n-----END CERTIFICATE-----\n\022\030\365b,\257\227\022\240f\314\316\352\017\301\245\365\335)\344\217\0214\022\362\336" -[35f 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[360 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[361 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP d0f63d3eb6e4bcf73d7a1a7143e3dc9880a9a26b8aeb2aa8d323b803c43c142a} -[362 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[363 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[364 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42184c000, header channel_header:"\010\001\032\006\010\375\312\277\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN\ntV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE\n+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q\nXZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd\n-----END CERTIFICATE-----\n\022\030\365b,\257\227\022\240f\314\316\352\017\301\245\365\335)\344\217\0214\022\362\336" -[365 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -[366 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] -[367 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] -[368 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[369 12-12 14:19:46.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[36a 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[36b 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[36c 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[36d 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[36e 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[36f 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[370 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[371 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[372 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[373 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[374 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[375 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[376 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[377 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -[378 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -[379 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -[37a 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[37b 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[37c 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[37d 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[37e 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[37f 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[380 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[381 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[382 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[383 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[384 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[385 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[386 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[387 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[388 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[389 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[38a 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[38b 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[38c 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[38d 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[38e 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[38f 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[390 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[391 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[392 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[393 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[394 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[395 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[396 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[397 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[398 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[399 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[39a 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[39b 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[39c 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[39d 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[39e 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[39f 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[3a0 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[3a1 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[3a2 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3a3 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[3a4 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[3a5 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[3a6 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[3a7 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[3a8 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3a9 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[3aa 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[3ab 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[3ac 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[3ad 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[3ae 12-12 14:19:46.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[3af 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[3b0 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[3b1 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[3b2 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[3b3 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[3b4 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[3b5 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[3b6 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[3b7 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[3b8 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[3b9 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[3ba 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[3bb 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[3bc 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[3bd 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[3be 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[3bf 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[3c0 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[3c1 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[3c2 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[3c3 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[3c4 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[3c5 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[3c6 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[3c7 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[3c8 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[3c9 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[3ca 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[3cb 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[3cc 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[3cd 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[3ce 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[3cf 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[3d0 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[3d1 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[3d2 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[3d3 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[3d4 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[3d5 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[3d6 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[3d7 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[3d8 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[3d9 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -[3da 12-12 14:19:46.42 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[3db 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[3dc 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[3dd 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[3de 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[3df 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -[3e0 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc420208180 env 0xc422523230 txn 0 -[3e1 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -[3e2 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[3e3 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -[3e4 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] -[3e5 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[3e6 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] -[3e7 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[3e8 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -[3e9 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -[3ea 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -[3eb 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -[3ec 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -[3ed 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -[3ee 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:2 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -[3ef 12-12 14:19:46.44 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[3f0 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[3f1 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[3f2 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[3f3 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[3f4 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[3f5 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[3f6 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[3f7 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[3f8 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[3f9 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[3fa 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3fb 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[3fc 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[3fd 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[3fe 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[3ff 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[400 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[401 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[402 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[403 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[404 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[405 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[406 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[407 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[408 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[409 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[40a 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[40b 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[40c 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[40d 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[40e 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[40f 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[410 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[411 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[412 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[413 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[414 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[415 12-12 14:19:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[416 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[417 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[418 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[419 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[41a 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[41b 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[41c 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[41d 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[41e 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[41f 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[420 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[421 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[422 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[423 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[424 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[425 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[426 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[427 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[428 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[429 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[42a 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[42b 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[42c 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[42d 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[42e 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[42f 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[430 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[431 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[432 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[433 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[434 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[435 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[436 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -[437 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -[438 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [] marked as valid by state validator -[439 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[43a 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[43b 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[43c 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage -[43d 12-12 14:19:46.46 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [1] -[43e 12-12 14:19:46.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xaa, 0x33, 0x62, 0xe7, 0x6e, 0x3e, 0x2a, 0x1d, 0x13, 0xf, 0x7d, 0x40, 0x89, 0x46, 0x8f, 0xc6, 0x81, 0xca, 0x6b, 0x47, 0xa0, 0xe5, 0x13, 0x29, 0xc3, 0x28, 0x2d, 0x98, 0x7c, 0x46, 0xf1, 0x84} txOffsets= -txId= locPointer=offset=70, bytesLength=12093 +[242 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12083] for tx ID: [] to index +[243 12-15 03:49:14.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12083] for tx number:[0] ID: [] to blockNumTranNum index +[244 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12127], isChainEmpty=[false], lastBlockNumber=[0] +[245 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 0 +[246 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 0 +[247 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [0] with 1 transaction(s) +[248 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database +[249 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database +[24a 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +[24b 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +[24c 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database +[24d 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to history database +[24e 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions +[24f 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +[250 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +[251 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +[252 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [3eb027bb-9983-43c0-b3ee-2a386a0bfa64] +[253 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.retrievePersistedConf.GetState.getState.GetState.GetState -> DEBU GetState(). ns=, key=resourcesconfigtx.CHANNEL_CONFIG_KEY +[254 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [3eb027bb-9983-43c0-b3ee-2a386a0bfa64] +[255 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[256 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[257 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[258 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[259 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[25a 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[25b 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[25c 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[25d 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[25e 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[25f 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[260 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[261 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[262 12-15 03:49:14.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[263 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[264 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[265 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[266 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[267 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[268 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[269 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[26a 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[26b 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +[26c 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[26d 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[26e 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[26f 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[270 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[271 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +[272 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[273 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[274 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[275 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[276 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[277 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[278 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[279 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[27a 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[27b 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[27c 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[27d 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[27e 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[27f 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[280 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[281 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[282 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[283 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[284 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[285 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[286 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[287 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[288 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[289 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[28a 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[28b 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[28c 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[28d 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[28e 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[28f 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[290 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[291 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[292 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[293 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[294 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[295 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[296 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[297 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[298 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[299 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[29a 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[29b 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[29c 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[29d 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[29e 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[29f 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[2a0 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +[2a1 12-15 03:49:14.85 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +[2a2 12-15 03:49:14.86 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +[2a3 12-15 03:49:14.86 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +[2a4 12-15 03:49:14.86 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +[2a5 12-15 03:49:14.86 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +[2a6 12-15 03:49:14.86 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] +[2a7 12-15 03:49:14.86 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/transientStore/] does not exist +[2a8 12-15 03:49:14.86 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/transientStore/] exists +[2a9 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +[2aa 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func3 -> DEBU Deploying system CC, for chain +[2ab 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[2ac 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b303923f-ba26-45c6-a36e-7bcedf6ab856] +[2ad 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.1.0,txid=b303923f-ba26-45c6-a36e-7bcedf6ab856,syscc=true,proposal=0x0,canname=cscc:1.1.0 +[2ae 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 +[2af 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[2b0 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +[2b1 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b303923f]Inside sendExecuteMessage. Message INIT +[2b2 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[2b3 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b303923f]sendExecuteMsg trigger event INIT +[2b4 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b303923f]Move state message INIT +[2b5 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b303923f]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[2b6 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[2b7 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b303923f]sending state message INIT +[2b8 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b303923f]Received message INIT from shim +[2b9 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b303923f]Handling ChaincodeMessage of type: INIT(state:ready) +[2ba 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[2bb 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b303923f]Received INIT, initializing chaincode +[2bc 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +[2bd 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b303923f]Init get response status: 200 +[2be 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b303923f]Init succeeded. Sending COMPLETED +[2bf 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b303923f]Move state message COMPLETED +[2c0 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b303923f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[2c1 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b303923f]send state message COMPLETED +[2c2 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b303923f]Received message COMPLETED from shim +[2c3 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b303923f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[2c4 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b303923f-ba26-45c6-a36e-7bcedf6ab856]HandleMessage- COMPLETED. Notify +[2c5 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b303923f-ba26-45c6-a36e-7bcedf6ab856, channelID:businesschannel +[2c6 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[2c7 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +[2c8 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [b303923f-ba26-45c6-a36e-7bcedf6ab856] +[2c9 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[2ca 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [696607a2-b2de-40b8-872a-7879c2d18d50] +[2cb 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=696607a2-b2de-40b8-872a-7879c2d18d50,syscc=true,proposal=0x0,canname=lscc:1.1.0 +[2cc 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +[2cd 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[2ce 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +[2cf 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [696607a2]Inside sendExecuteMessage. Message INIT +[2d0 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[2d1 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [696607a2]sendExecuteMsg trigger event INIT +[2d2 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [696607a2]Move state message INIT +[2d3 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [696607a2]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[2d4 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[2d5 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [696607a2]sending state message INIT +[2d6 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [696607a2]Received message INIT from shim +[2d7 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [696607a2]Handling ChaincodeMessage of type: INIT(state:ready) +[2d8 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[2d9 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [696607a2]Received INIT, initializing chaincode +[2da 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [696607a2]Init get response status: 200 +[2db 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [696607a2]Init succeeded. Sending COMPLETED +[2dc 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [696607a2]Move state message COMPLETED +[2dd 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [696607a2]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[2de 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [696607a2]send state message COMPLETED +[2df 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [696607a2]Received message COMPLETED from shim +[2e0 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [696607a2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[2e1 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [696607a2-b2de-40b8-872a-7879c2d18d50]HandleMessage- COMPLETED. Notify +[2e2 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:696607a2-b2de-40b8-872a-7879c2d18d50, channelID:businesschannel +[2e3 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[2e4 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +[2e5 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [696607a2-b2de-40b8-872a-7879c2d18d50] +[2e6 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[2e7 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [d2086533-3b8b-4419-89d3-ec741b2fcbf6] +[2e8 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=d2086533-3b8b-4419-89d3-ec741b2fcbf6,syscc=true,proposal=0x0,canname=escc:1.1.0 +[2e9 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[2ea 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[2eb 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[2ec 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d2086533]Inside sendExecuteMessage. Message INIT +[2ed 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[2ee 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d2086533]sendExecuteMsg trigger event INIT +[2ef 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2086533]Move state message INIT +[2f0 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d2086533]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[2f1 12-15 03:49:14.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[2f2 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2086533]sending state message INIT +[2f3 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2086533]Received message INIT from shim +[2f4 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d2086533]Handling ChaincodeMessage of type: INIT(state:ready) +[2f5 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[2f6 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d2086533]Received INIT, initializing chaincode +[2f7 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +[2f8 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2086533]Init get response status: 200 +[2f9 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2086533]Init succeeded. Sending COMPLETED +[2fa 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2086533]Move state message COMPLETED +[2fb 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d2086533]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[2fc 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2086533]send state message COMPLETED +[2fd 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2086533]Received message COMPLETED from shim +[2fe 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d2086533]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[2ff 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d2086533-3b8b-4419-89d3-ec741b2fcbf6]HandleMessage- COMPLETED. Notify +[300 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d2086533-3b8b-4419-89d3-ec741b2fcbf6, channelID:businesschannel +[301 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[302 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +[303 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [d2086533-3b8b-4419-89d3-ec741b2fcbf6] +[304 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[305 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [bc50b7e3-4a11-4067-bd90-ad2e42f51bbf] +[306 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=bc50b7e3-4a11-4067-bd90-ad2e42f51bbf,syscc=true,proposal=0x0,canname=vscc:1.1.0 +[307 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +[308 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[309 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +[30a 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bc50b7e3]Inside sendExecuteMessage. Message INIT +[30b 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[30c 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bc50b7e3]sendExecuteMsg trigger event INIT +[30d 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bc50b7e3]Move state message INIT +[30e 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bc50b7e3]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[30f 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[310 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bc50b7e3]sending state message INIT +[311 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bc50b7e3]Received message INIT from shim +[312 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bc50b7e3]Handling ChaincodeMessage of type: INIT(state:ready) +[313 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[314 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [bc50b7e3]Received INIT, initializing chaincode +[315 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bc50b7e3]Init get response status: 200 +[316 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bc50b7e3]Init succeeded. Sending COMPLETED +[317 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bc50b7e3]Move state message COMPLETED +[318 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bc50b7e3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[319 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bc50b7e3]send state message COMPLETED +[31a 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bc50b7e3]Received message COMPLETED from shim +[31b 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bc50b7e3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[31c 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bc50b7e3-4a11-4067-bd90-ad2e42f51bbf]HandleMessage- COMPLETED. Notify +[31d 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:bc50b7e3-4a11-4067-bd90-ad2e42f51bbf, channelID:businesschannel +[31e 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[31f 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed +[320 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [bc50b7e3-4a11-4067-bd90-ad2e42f51bbf] +[321 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[322 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [25b6d2a5-11e8-4c48-813d-6695004e1fd1] +[323 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=25b6d2a5-11e8-4c48-813d-6695004e1fd1,syscc=true,proposal=0x0,canname=qscc:1.1.0 +[324 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[325 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[326 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[327 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [25b6d2a5]Inside sendExecuteMessage. Message INIT +[328 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[329 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [25b6d2a5]sendExecuteMsg trigger event INIT +[32a 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25b6d2a5]Move state message INIT +[32b 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [25b6d2a5]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[32c 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[32d 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25b6d2a5]sending state message INIT +[32e 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25b6d2a5]Received message INIT from shim +[32f 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [25b6d2a5]Handling ChaincodeMessage of type: INIT(state:ready) +[330 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[331 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [25b6d2a5]Received INIT, initializing chaincode +[332 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +[333 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25b6d2a5]Init get response status: 200 +[334 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25b6d2a5]Init succeeded. Sending COMPLETED +[335 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25b6d2a5]Move state message COMPLETED +[336 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [25b6d2a5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[337 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25b6d2a5]send state message COMPLETED +[338 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25b6d2a5]Received message COMPLETED from shim +[339 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [25b6d2a5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[33a 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [25b6d2a5-11e8-4c48-813d-6695004e1fd1]HandleMessage- COMPLETED. Notify +[33b 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:25b6d2a5-11e8-4c48-813d-6695004e1fd1, channelID:businesschannel +[33c 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[33d 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +[33e 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [25b6d2a5-11e8-4c48-813d-6695004e1fd1] +[33f 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled +[340 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry +[341 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit +[342 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry +[343 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 +[344 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully +[345 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit +[346 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [874d2d0c]Transaction completed. Sending COMPLETED +[347 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [874d2d0c]Move state message COMPLETED +[348 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [874d2d0c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[349 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [874d2d0c]send state message COMPLETED +[34a 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [874d2d0c]Received message COMPLETED from shim +[34b 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [874d2d0c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[34c 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [874d2d0c9dd653d155fd2f2ea7a7a8366daeccc8c1792d9d3fad791a213aac66]HandleMessage- COMPLETED. Notify +[34d 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:874d2d0c9dd653d155fd2f2ea7a7a8366daeccc8c1792d9d3fad791a213aac66, channelID: +[34e 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[34f 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[350 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[351 12-15 03:49:14.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40850) +[352 12-15 03:49:20.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40866 +[353 12-15 03:49:20.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421b85a70 +[354 12-15 03:49:20.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[355 12-15 03:49:20.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[356 12-15 03:49:20.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +[357 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[358 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[359 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421acedc0, header 0xc421b85aa0 +[35a 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[35b 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 696883b7674923d02c542bf38cff995e9050ddc520ff8ad4ff126ee279c5e6f7 +[35c 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 696883b7674923d02c542bf38cff995e9050ddc520ff8ad4ff126ee279c5e6f7 channel id: +[35d 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled +[35e 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 696883b7674923d02c542bf38cff995e9050ddc520ff8ad4ff126ee279c5e6f7 channel id: version: 1.1.0 +[35f 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=696883b7674923d02c542bf38cff995e9050ddc520ff8ad4ff126ee279c5e6f7,syscc=true,proposal=0xc421acedc0,canname=lscc:1.1.0 +[360 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +[361 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[362 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +[363 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [696883b7]Inside sendExecuteMessage. Message TRANSACTION +[364 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[365 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[366 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [696883b7]sendExecuteMsg trigger event TRANSACTION +[367 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [696883b7]Move state message TRANSACTION +[368 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [696883b7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[369 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[36a 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [696883b7]sending state message TRANSACTION +[36b 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [696883b7]Received message TRANSACTION from shim +[36c 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [696883b7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[36d 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [696883b7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[36e 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [696883b7]Transaction completed. Sending COMPLETED +[36f 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [696883b7]Move state message COMPLETED +[370 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [696883b7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[371 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [696883b7]send state message COMPLETED +[372 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [696883b7]Received message COMPLETED from shim +[373 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [696883b7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[374 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [696883b7674923d02c542bf38cff995e9050ddc520ff8ad4ff126ee279c5e6f7]HandleMessage- COMPLETED. Notify +[375 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:696883b7674923d02c542bf38cff995e9050ddc520ff8ad4ff126ee279c5e6f7, channelID: +[376 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[377 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[378 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[379 12-15 03:49:20.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40866) +[37a 12-15 03:49:20.87 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 +[37b 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +[37c 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... +[37d 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +[37e 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel +[37f 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +[380 12-15 03:49:20.88 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] +[381 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] +[382 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +[383 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +[384 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4223d5bc0 env 0xc421bdb6b0 txn 0 +[385 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421bdb6b0 +[386 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\273\214\315\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv\nzQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd\nibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv\nzjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg=\n-----END CERTIFICATE-----\n\022\030?\372r\023W\347Z\241l\242\243y,Z\325}$\376\357\347\335\214*\340" +[387 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +[388 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[389 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 1e3da41845b92a1416cf3e4c523fc99cac9313f32163b269265dab0667463892} +[38a 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[38b 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[38c 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42249c000, header channel_header:"\010\001\032\006\010\273\214\315\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv\nzQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd\nibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv\nzjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg=\n-----END CERTIFICATE-----\n\022\030?\372r\023W\347Z\241l\242\243y,Z\325}$\376\357\347\335\214*\340" +[38d 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +[38e 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[38f 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[390 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[391 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[392 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[393 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[394 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[395 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[396 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[397 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[398 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[399 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[39a 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[39b 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[39c 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[39d 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP +[39e 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins +[39f 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers +[3a0 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3a1 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3a2 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3a3 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3a4 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3a5 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3a6 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[3a7 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3a8 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3a9 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3aa 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[3ab 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[3ac 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[3ad 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3ae 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3af 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3b0 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3b1 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3b2 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3b3 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[3b4 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[3b5 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[3b6 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[3b7 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[3b8 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[3b9 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[3ba 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[3bb 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[3bc 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[3bd 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[3be 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[3bf 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[3c0 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[3c1 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3c2 12-15 03:49:20.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[3c3 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[3c4 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[3c5 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[3c6 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[3c7 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[3c8 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3c9 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +[3ca 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[3cb 12-15 03:49:20.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[3cc 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[3cd 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[3ce 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3cf 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[3d0 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] +[3d1 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[3d2 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] +[3d3 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[3d4 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[3d5 12-15 03:49:20.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[3d6 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[3d7 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[3d8 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[3d9 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[3da 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[3db 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[3dc 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[3dd 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[3de 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[3df 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[3e0 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[3e1 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[3e2 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[3e3 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[3e4 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[3e5 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[3e6 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[3e7 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[3e8 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[3e9 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[3ea 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[3eb 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[3ec 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[3ed 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[3ee 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[3ef 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[3f0 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[3f1 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[3f2 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[3f3 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[3f4 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[3f5 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[3f6 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[3f7 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[3f8 12-15 03:49:20.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[3f9 12-15 03:49:20.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[3fa 12-15 03:49:20.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[3fb 12-15 03:49:20.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[3fc 12-15 03:49:20.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[3fd 12-15 03:49:20.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[3fe 12-15 03:49:20.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[3ff 12-15 03:49:20.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[400 12-15 03:49:20.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[401 12-15 03:49:20.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +[402 12-15 03:49:20.93 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +[403 12-15 03:49:20.93 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +[404 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +[405 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +[406 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +[407 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +[408 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4223d5bc0 env 0xc421bdb6b0 txn 0 +[409 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +[40a 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +[40b 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +[40c 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] +[40d 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[40e 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] +[40f 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +[410 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +[411 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +[412 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +[413 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +[414 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +[415 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +[416 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:2 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +[417 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[418 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[419 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[41a 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[41b 12-15 03:49:20.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[41c 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[41d 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[41e 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[41f 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[420 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[421 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[422 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[423 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[424 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[425 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[426 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[427 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[428 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[429 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[42a 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[42b 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[42c 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[42d 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[42e 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[42f 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[430 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[431 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[432 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[433 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +[434 12-15 03:49:20.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[435 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[436 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[437 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[438 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[439 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[43a 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[43b 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[43c 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[43d 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[43e 12-15 03:49:20.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[43f 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[440 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[441 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[442 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[443 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[444 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[445 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[446 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[447 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[448 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[449 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[44a 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[44b 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[44c 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[44d 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[44e 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[44f 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[450 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[451 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[452 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[453 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[454 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[455 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[456 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[457 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[458 12-15 03:49:20.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[459 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[45a 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[45b 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[45c 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[45d 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[45e 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +[45f 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +[460 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [] marked as valid by state validator +[461 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +[462 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +[463 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +[464 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage +[465 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [1] +[466 12-15 03:49:20.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xaa, 0x80, 0xff, 0xc, 0x39, 0xaa, 0xa8, 0x8f, 0x5f, 0xc0, 0x97, 0xdb, 0x69, 0x4b, 0xab, 0xe6, 0x6c, 0xaa, 0x32, 0xc5, 0x62, 0x29, 0x98, 0xb, 0xb6, 0x72, 0x4f, 0xe1, 0x1e, 0xe7, 0xb5, 0x8f} txOffsets= +txId= locPointer=offset=70, bytesLength=12097 ] -[43f 12-12 14:19:46.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12093] for tx ID: [] to index -[440 12-12 14:19:46.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12093] for tx number:[0] ID: [] to blockNumTranNum index -[441 12-12 14:19:46.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26079], isChainEmpty=[false], lastBlockNumber=[1] -[442 12-12 14:19:46.47 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 1 -[443 12-12 14:19:46.47 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 1 -[444 12-12 14:19:46.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) -[445 12-12 14:19:46.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database -[446 12-12 14:19:46.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[447 12-12 14:19:46.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -[448 12-12 14:19:46.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -[449 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[44a 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database -[44b 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -[44c 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -[44d 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -[44e 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[44f 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[450 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[451 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[452 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[453 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[454 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[455 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[456 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[457 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[458 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[459 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[45a 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421fe3960 env 0xc421d3c5a0 txn 0 -[45b 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421d3c5a0 -[45c 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\377\312\277\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN\ntV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE\n+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q\nXZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd\n-----END CERTIFICATE-----\n\022\030\n\232\226\276I3\002W\261\367\372\221\321X\323Z\020\273\320\213\000\330A\353" -[45d 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[45e 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[45f 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP d0f63d3eb6e4bcf73d7a1a7143e3dc9880a9a26b8aeb2aa8d323b803c43c142a} -[460 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[461 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[462 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421e0d000, header channel_header:"\010\001\032\006\010\377\312\277\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbKgAwIBAgIQZQB2fz3voTWX83O6uNY+yjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxMjA4NDAxMVoXDTI3MTIxMDA4NDAxMVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARsQlMnjx6wzLQ3EVI5zCWxXEHRHA0FgJoaHXccPZYZMtgCSKhN\ntV4mBO1v+xUe9+17U9O/Fp7iKTalhb/egnqwo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDAkC8xcUdRg+D38xsCsSZd0K43CrOE\n+EX3izGsUMy1RzAKBggqhkjOPQQDAgNIADBFAiEAgnIMN7hrZSp4UaVR8u+eto/q\nXZNMGjkvdaAPHo1avg8CIG6EJC65nojhKluOSHHAYkjr5cGdmaYERIWfDsy5TFgd\n-----END CERTIFICATE-----\n\022\030\n\232\226\276I3\002W\261\367\372\221\321X\323Z\020\273\320\213\000\330A\353" -[463 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -[464 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[465 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[466 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[467 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[468 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[469 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[46a 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[46b 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[46c 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[46d 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[46e 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[46f 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -[470 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[471 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[472 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[473 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -[474 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins -[475 12-12 14:19:46.48 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers -[476 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[477 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[478 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[479 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[47a 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[47b 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[47c 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[47d 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[47e 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[47f 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[480 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[481 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[482 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[483 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[484 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[485 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[486 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[487 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[488 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[489 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[48a 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[48b 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[48c 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[48d 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[48e 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[48f 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[490 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[491 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[492 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[493 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[494 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[495 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[496 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[497 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[498 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[499 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[49a 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[49b 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[49c 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[49d 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[49e 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[49f 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[4a0 12-12 14:19:46.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[4a1 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[4a2 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[4a3 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[4a4 12-12 14:19:46.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[4a5 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[4a6 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[4a7 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[4a8 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[4a9 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[4aa 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[4ab 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[4ac 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[4ad 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[4ae 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[4af 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[4b0 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[4b1 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[4b2 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[4b3 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[4b4 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[4b5 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[4b6 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[4b7 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[4b8 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[4b9 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[4ba 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -[4bb 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[4bc 12-12 14:19:46.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[4bd 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[4be 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[4bf 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[4c0 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[4c1 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[4c2 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[4c3 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[4c4 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[4c5 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[4c6 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[4c7 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[4c8 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[4c9 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[4ca 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[4cb 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[4cc 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[4cd 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[4ce 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[4cf 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[4d0 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[4d1 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[4d2 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[4d3 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[4d4 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[4d5 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[4d6 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -[4d7 12-12 14:19:46.52 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[4d8 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[4d9 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[4da 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[4db 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[4dc 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -[4dd 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421fe3960 env 0xc421d3c5a0 txn 0 -[4de 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -[4df 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[4e0 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -[4e1 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] -[4e2 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[4e3 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] -[4e4 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[4e5 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -[4e6 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -[4e7 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -[4e8 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -[4e9 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -[4ea 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -[4eb 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -[4ec 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[4ed 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[4ee 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[4ef 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[4f0 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[4f1 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[4f2 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[4f3 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[4f4 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[4f5 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[4f6 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[4f7 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[4f8 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[4f9 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[4fa 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[4fb 12-12 14:19:46.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[4fc 12-12 14:19:46.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[4fd 12-12 14:19:46.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[4fe 12-12 14:19:46.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[4ff 12-12 14:19:46.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[500 12-12 14:19:46.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[501 12-12 14:19:46.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[502 12-12 14:19:46.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[503 12-12 14:19:46.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[504 12-12 14:19:46.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[505 12-12 14:19:46.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[506 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[507 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[508 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[509 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[50a 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[50b 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[50c 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[50d 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[50e 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[50f 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[510 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[511 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[512 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[513 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[514 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[515 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[516 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[517 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[518 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[519 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[51a 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[51b 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[51c 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[51d 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -[51e 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[51f 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[520 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[521 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[522 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[523 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[524 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[525 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[526 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[527 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[528 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[529 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[52a 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[52b 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[52c 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[52d 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[52e 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[52f 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[530 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[531 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[532 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[533 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[534 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -[535 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -[536 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator -[537 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[538 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[539 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[53a 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage -[53b 12-12 14:19:46.55 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [2] -[53c 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xa9, 0x25, 0x7e, 0xa0, 0x6a, 0x7a, 0x2b, 0xa5, 0xd0, 0x2, 0x6, 0xdd, 0xd6, 0x21, 0x90, 0x41, 0x28, 0x97, 0x6b, 0x7a, 0xfa, 0x28, 0x3b, 0x30, 0x5, 0x8b, 0x31, 0x53, 0xa1, 0xe1, 0x0, 0x3c} txOffsets= -txId= locPointer=offset=70, bytesLength=12143 +[467 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12197, bytesLength=12097] for tx ID: [] to index +[468 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12197, bytesLength=12097] for tx number:[0] ID: [] to blockNumTranNum index +[469 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26088], isChainEmpty=[false], lastBlockNumber=[1] +[46a 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 1 +[46b 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 1 +[46c 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) +[46d 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database +[46e 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +[46f 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +[470 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +[471 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +[472 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database +[473 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +[474 12-15 03:49:20.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +[475 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +[476 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +[477 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +[478 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[479 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[47a 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[47b 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[47c 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[47d 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[47e 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[47f 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[480 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +[481 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +[482 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421cf2a60 env 0xc421cebbc0 txn 0 +[483 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421cebbc0 +[484 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\275\214\315\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv\nzQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd\nibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv\nzjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg=\n-----END CERTIFICATE-----\n\022\030\364\221\264\365\214C\0376\201\201|Q\366?\331A\023\303\367WM\263\340;" +[485 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +[486 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[487 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 1e3da41845b92a1416cf3e4c523fc99cac9313f32163b269265dab0667463892} +[488 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[489 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[48a 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4218c8000, header channel_header:"\010\001\032\006\010\275\214\315\321\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQKwy6vAl4pFCGhFrmJmZ0UTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIxNTAzMzU1MVoXDTI3MTIxMzAzMzU1MVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAASKSCk+2t1naYxgApYaO00a9p7kG1mmJ10/htNCJISPvTuUQ1cv\nzQO+iN96mLuMni4utkAdfakYtYWicAh06W6co00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD8coPEYrgpeVvsDqF1KnkYVgXEdlxd\nibViearSTEN2NTAKBggqhkjOPQQDAgNHADBEAiAyOYFGYBVb98TjmnDQh/VTNRGv\nzjfCdAisoYCUw95rQwIgDF84ua6gnzP3kDOU04UQVKk0uSADitJ25Kz1pVhiKQg=\n-----END CERTIFICATE-----\n\022\030\364\221\264\365\214C\0376\201\201|Q\366?\331A\023\303\367WM\263\340;" +[48b 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +[48c 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[48d 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[48e 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[48f 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[490 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[491 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[492 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[493 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[494 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[495 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[496 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[497 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +[498 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[499 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[49a 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[49b 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP +[49c 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins +[49d 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +[49e 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[49f 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[4a0 12-15 03:49:21.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[4a1 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[4a2 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[4a3 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[4a4 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[4a5 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[4a6 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[4a7 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[4a8 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[4a9 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[4aa 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[4ab 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[4ac 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[4ad 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[4ae 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[4af 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[4b0 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[4b1 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[4b2 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[4b3 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[4b4 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[4b5 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[4b6 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[4b7 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[4b8 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[4b9 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[4ba 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[4bb 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[4bc 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[4bd 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[4be 12-15 03:49:21.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[4bf 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[4c0 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[4c1 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[4c2 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[4c3 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[4c4 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[4c5 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[4c6 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[4c7 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[4c8 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[4c9 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[4ca 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[4cb 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[4cc 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[4cd 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[4ce 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[4cf 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[4d0 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[4d1 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[4d2 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[4d3 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[4d4 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[4d5 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[4d6 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[4d7 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[4d8 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[4d9 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[4da 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[4db 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[4dc 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[4dd 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[4de 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[4df 12-15 03:49:21.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[4e0 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[4e1 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[4e2 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[4e3 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[4e4 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[4e5 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[4e6 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[4e7 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[4e8 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +[4e9 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[4ea 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[4eb 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[4ec 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[4ed 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[4ee 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[4ef 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[4f0 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[4f1 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[4f2 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[4f3 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[4f4 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[4f5 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[4f6 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[4f7 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[4f8 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[4f9 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[4fa 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[4fb 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[4fc 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[4fd 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[4fe 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +[4ff 12-15 03:49:21.03 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +[500 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +[501 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +[502 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +[503 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +[504 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +[505 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +[507 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +[506 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421cf2a60 env 0xc421cebbc0 txn 0 +[508 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +[509 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] +[50a 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[50b 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] +[50c 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +[50d 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +[50e 12-15 03:49:21.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +[50f 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +[510 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +[511 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +[512 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +[513 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +[514 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[515 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[516 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[517 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[518 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[519 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[51a 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[51b 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[51c 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[51d 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[51e 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[51f 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[520 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[521 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[522 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[523 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[524 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[525 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[526 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[527 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[528 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[529 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[52a 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[52b 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[52c 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[52d 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[52e 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[52f 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[530 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[531 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[532 12-15 03:49:21.05 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[533 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[534 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[535 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[536 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[537 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[538 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[539 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[53a 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[53b 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[53c 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +[53d 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[53e 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[53f 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[540 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[541 12-15 03:49:21.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[542 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[543 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[544 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[545 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[546 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[547 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[548 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[549 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[54a 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[54b 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[54c 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[54d 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[54e 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[54f 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[550 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[551 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[552 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[553 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[554 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[555 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[556 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[557 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[558 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[559 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[55a 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[55b 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[55c 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +[55d 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +[55e 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator +[55f 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +[560 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +[561 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +[562 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage +[563 12-15 03:49:21.07 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [2] +[564 12-15 03:49:21.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x68, 0x6d, 0x91, 0xee, 0x2d, 0x0, 0xda, 0x9, 0x25, 0x18, 0x90, 0xe9, 0xa9, 0xb6, 0x90, 0xc8, 0x66, 0x89, 0xfe, 0xd7, 0x8a, 0xf7, 0x59, 0xb9, 0x69, 0xf9, 0xd8, 0xb0, 0x15, 0x8, 0x78, 0x54} txOffsets= +txId= locPointer=offset=70, bytesLength=12155 ] -[53d 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26149, bytesLength=12143] for tx ID: [] to index -[53e 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26149, bytesLength=12143] for tx number:[0] ID: [] to blockNumTranNum index -[53f 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40087], isChainEmpty=[false], lastBlockNumber=[2] -[540 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 2 -[541 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 2 -[542 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [2] with 1 transaction(s) -[543 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to state database -[544 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[545 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -[546 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -[547 12-12 14:19:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[548 12-12 14:19:46.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to history database -[549 12-12 14:19:46.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -[54a 12-12 14:19:46.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -[54b 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -[54c 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[54d 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[54e 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[54f 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[550 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[551 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[552 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[553 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[554 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[555 12-12 14:19:46.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[556 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36682 -[557 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422e96360 -[558 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[559 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[55a 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -[55b 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[55c 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[55d 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422dff810, header 0xc422e963c0 -[55e 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[55f 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 4c52e93f5219baf92f0161e14b9d33cc3e044d9232c45ded74a44082e60063e3 -[560 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 4c52e93f5219baf92f0161e14b9d33cc3e044d9232c45ded74a44082e60063e3 channel id: -[561 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled -[562 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 4c52e93f5219baf92f0161e14b9d33cc3e044d9232c45ded74a44082e60063e3 channel id: version: 1.1.0 -[563 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=4c52e93f5219baf92f0161e14b9d33cc3e044d9232c45ded74a44082e60063e3,syscc=true,proposal=0xc422dff810,canname=lscc:1.1.0 -[564 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[565 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[566 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[567 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4c52e93f]Inside sendExecuteMessage. Message TRANSACTION -[568 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[569 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[56a 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4c52e93f]sendExecuteMsg trigger event TRANSACTION -[56b 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4c52e93f]Move state message TRANSACTION -[56c 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4c52e93f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[56d 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[56e 12-12 14:19:47.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4c52e93f]sending state message TRANSACTION -[56f 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4c52e93f]Received message TRANSACTION from shim -[570 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4c52e93f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[571 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4c52e93f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[572 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4c52e93f]Transaction completed. Sending COMPLETED -[573 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4c52e93f]Move state message COMPLETED -[574 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4c52e93f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[575 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4c52e93f]send state message COMPLETED -[576 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4c52e93f]Received message COMPLETED from shim -[577 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4c52e93f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[578 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4c52e93f5219baf92f0161e14b9d33cc3e044d9232c45ded74a44082e60063e3]HandleMessage- COMPLETED. Notify -[579 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:4c52e93f5219baf92f0161e14b9d33cc3e044d9232c45ded74a44082e60063e3, channelID: -[57a 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[57b 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[57c 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[57d 12-12 14:19:47.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36682) -[57e 12-12 14:19:48.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> WARN Failed reading messge from 172.18.0.5:58452, reason: Timed out waiting for connection message from 172.18.0.5:58452 -[57f 12-12 14:19:48.76 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.5:58452 -[580 12-12 14:19:49.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36730 -[581 12-12 14:19:49.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4230f5e90 -[582 12-12 14:19:49.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[583 12-12 14:19:49.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[584 12-12 14:19:49.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -[585 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[586 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[587 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4230f7220, header 0xc4230f5ec0 -[588 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[589 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d -[58a 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] -[58b 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[58c 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] -[58d 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d channel id: businesschannel -[58e 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled -[58f 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d channel id: businesschannel version: 1.1.0 -[590 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d,syscc=true,proposal=0xc4230f7220,canname=lscc:1.1.0 -[591 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[592 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[593 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[594 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d107e07c]Inside sendExecuteMessage. Message TRANSACTION -[595 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[596 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[597 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d107e07c]sendExecuteMsg trigger event TRANSACTION -[598 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Move state message TRANSACTION -[599 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[59a 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[59b 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]sending state message TRANSACTION -[59c 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d107e07c]Received message TRANSACTION from shim -[59d 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d107e07c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[59e 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d107e07c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[59f 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [d107e07c]Sending GET_STATE -[5a0 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Received message GET_STATE from shim -[5a1 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[5a2 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [d107e07c]Received GET_STATE, invoking get state from ledger -[5a3 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5a4 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d107e07c] getting state for chaincode lscc, key mycc, channel businesschannel -[5a5 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[5a6 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d107e07c]No state associated with key: +[565 12-15 03:49:21.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26158, bytesLength=12155] for tx ID: [] to index +[566 12-15 03:49:21.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26158, bytesLength=12155] for tx number:[0] ID: [] to blockNumTranNum index +[567 12-15 03:49:21.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40108], isChainEmpty=[false], lastBlockNumber=[2] +[568 12-15 03:49:21.08 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 2 +[569 12-15 03:49:21.08 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 2 +[56a 12-15 03:49:21.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [2] with 1 transaction(s) +[56b 12-15 03:49:21.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to state database +[56c 12-15 03:49:21.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +[56d 12-15 03:49:21.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +[56e 12-15 03:49:21.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +[56f 12-15 03:49:21.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +[570 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to history database +[571 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +[572 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +[573 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +[574 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +[575 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +[576 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[577 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[578 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[579 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[57a 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[57b 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[57c 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[57d 12-15 03:49:21.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[57e 12-15 03:49:21.12 UTC] [github.com/hyperledger/fabric/gossip/comm] -> WARN peer1.org1.example.com:7051, PKIid:[241 117 78 6 153 149 24 255 168 205 32 55 19 249 86 148 151 96 62 243 83 216 19 59 184 36 81 218 69 41 226 155] isn't responsive: rpc error: code = Unavailable desc = transport: write tcp 172.21.0.6:7051->172.21.0.3:34794: write: broken pipe +[57f 12-15 03:49:21.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Entering [[241 117 78 6 153 149 24 255 168 205 32 55 19 249 86 148 151 96 62 243 83 216 19 59 184 36 81 218 69 41 226 155]] +[580 12-15 03:49:21.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Closing connection to Endpoint: peer1.org1.example.com:7051, InternalEndpoint: peer1.org1.example.com:7051, PKI-ID: [241 117 78 6 153 149 24 255 168 205 32 55 19 249 86 148 151 96 62 243 83 216 19 59 184 36 81 218 69 41 226 155], Metadata: [] +[581 12-15 03:49:21.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Exiting +[582 12-15 03:49:22.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40914 +[583 12-15 03:49:22.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422b43a40 +[584 12-15 03:49:22.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[585 12-15 03:49:22.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[586 12-15 03:49:22.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +[587 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[588 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[589 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422a9b9f0, header 0xc422b43a70 +[58a 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +[58b 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce +[58c 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce] +[58d 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[58e 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce] +[58f 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce channel id: businesschannel +[590 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce channel id: businesschannel version: 1.1.0 +[591 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.1.0,txid=a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce,syscc=true,proposal=0xc422a9b9f0,canname=cscc:1.1.0 +[592 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 +[593 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[594 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +[595 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a7260e5f]Inside sendExecuteMessage. Message TRANSACTION +[596 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[597 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[598 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a7260e5f]sendExecuteMsg trigger event TRANSACTION +[599 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a7260e5f]Move state message TRANSACTION +[59a 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a7260e5f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[59b 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[59c 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a7260e5f]sending state message TRANSACTION +[59d 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a7260e5f]Received message TRANSACTION from shim +[59e 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a7260e5f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[59f 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a7260e5f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[5a0 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: GetConfigTree +[5a1 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a7260e5f]Transaction completed. Sending COMPLETED +[5a2 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a7260e5f]Move state message COMPLETED +[5a3 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a7260e5f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[5a4 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a7260e5f]send state message COMPLETED +[5a5 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a7260e5f]Received message COMPLETED from shim +[5a6 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a7260e5f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[5a7 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce]HandleMessage- COMPLETED. Notify +[5a8 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce, channelID:businesschannel +[5a9 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[5aa 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[5ab 12-15 03:49:22.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[5ac 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce] +[5ad 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[5ae 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce channel id: businesschannel chaincode id: name:"cscc" +[5af 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"cscc" is escc +[5b0 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce channel id: businesschannel version: 1.1.0 +[5b1 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce,syscc=true,proposal=0xc422a9b9f0,canname=escc:1.1.0 +[5b2 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[5b3 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[5b4 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[5b5 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a7260e5f]Inside sendExecuteMessage. Message TRANSACTION +[5b6 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[5b7 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[5b8 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a7260e5f]sendExecuteMsg trigger event TRANSACTION +[5b9 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a7260e5f]Move state message TRANSACTION +[5ba 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a7260e5f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[5bb 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5bc 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a7260e5f]sending state message TRANSACTION +[5bd 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a7260e5f]Received message TRANSACTION from shim +[5be 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a7260e5f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[5bf 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a7260e5f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[5c0 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[5c1 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[5c2 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a7260e5f]Transaction completed. Sending COMPLETED +[5c3 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a7260e5f]Move state message COMPLETED +[5c4 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a7260e5f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[5c5 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a7260e5f]send state message COMPLETED +[5c6 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a7260e5f]Received message COMPLETED from shim +[5c7 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a7260e5f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[5c8 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce]HandleMessage- COMPLETED. Notify +[5c9 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce, channelID:businesschannel +[5ca 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[5cb 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[5cc 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[5cd 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [a7260e5f31ac87fe2bd2e38ab70b165afdc75c605649fbf148aeaedcc60e8cce] +[5ce 12-15 03:49:22.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40914) +[5cf 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40914 +[5d0 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422bc0300 +[5d1 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[5d2 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[5d3 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +[5d4 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[5d5 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[5d6 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422bbe190, header 0xc422bc0330 +[5d7 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[5d8 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 +[5d9 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] +[5da 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[5db 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] +[5dc 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 channel id: businesschannel +[5dd 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled +[5de 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 channel id: businesschannel version: 1.1.0 +[5df 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60,syscc=true,proposal=0xc422bbe190,canname=lscc:1.1.0 +[5e0 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +[5e1 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[5e2 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +[5e3 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2364d4f5]Inside sendExecuteMessage. Message TRANSACTION +[5e4 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[5e5 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[5e6 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2364d4f5]sendExecuteMsg trigger event TRANSACTION +[5e7 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Move state message TRANSACTION +[5e8 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[5e9 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5ea 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]sending state message TRANSACTION +[5eb 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2364d4f5]Received message TRANSACTION from shim +[5ec 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2364d4f5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[5ed 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2364d4f5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[5ee 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [2364d4f5]Sending GET_STATE +[5ef 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Received message GET_STATE from shim +[5f0 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[5f1 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [2364d4f5]Received GET_STATE, invoking get state from ledger +[5f2 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5f3 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2364d4f5] getting state for chaincode lscc, key mycc, channel businesschannel +[5f4 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +[5f5 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2364d4f5]No state associated with key: mycc. Sending RESPONSE with an empty payload -[5a7 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d107e07c]handleGetState serial send RESPONSE -[5a8 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d107e07c]Received message RESPONSE from shim -[5a9 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d107e07c]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[5aa 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d107e07c]before send -[5ab 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d107e07c]after send -[5ac 12-12 14:19:49.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [d107e07c]Received RESPONSE, communicated (state:ready) -[5ad 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [d107e07c]GetState received payload RESPONSE -[5ae 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [d107e07c]Sending PUT_STATE -[5af 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Received message PUT_STATE from shim -[5b0 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[5b1 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5b2 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d107e07c]state is ready -[5b3 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d107e07c]Completed PUT_STATE. Sending RESPONSE -[5b4 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d107e07c]enterBusyState trigger event RESPONSE -[5b5 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Move state message RESPONSE -[5b6 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[5b7 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5b8 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]sending state message RESPONSE -[5b9 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d107e07c]Received message RESPONSE from shim -[5ba 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d107e07c]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[5bb 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d107e07c]before send -[5bc 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d107e07c]after send -[5bd 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [d107e07c]Received RESPONSE, communicated (state:ready) -[5be 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [d107e07c]Received RESPONSE. Successfully updated state -[5bf 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d107e07c]Transaction completed. Sending COMPLETED -[5c0 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d107e07c]Move state message COMPLETED -[5c1 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d107e07c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[5c2 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d107e07c]send state message COMPLETED -[5c3 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Received message COMPLETED from shim -[5c4 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[5c5 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d]HandleMessage- COMPLETED. Notify -[5c6 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d, channelID:businesschannel -[5c7 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[5c8 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d,syscc=false,proposal=0xc4230f7220,canname=mycc:1.0 -[5c9 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU launchAndWaitForRegister fetched 1818 bytes from file system -[5ca 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched -[5cb 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -[5cc 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[5cd 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=mycc:1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] -[5ce 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -[5cf 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer0.org1.example.com) -[5d0 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[5d1 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +[5f6 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [2364d4f5]handleGetState serial send RESPONSE +[5f7 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2364d4f5]Received message RESPONSE from shim +[5f8 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2364d4f5]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[5f9 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [2364d4f5]before send +[5fa 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [2364d4f5]after send +[5fb 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [2364d4f5]Received RESPONSE, communicated (state:ready) +[5fc 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [2364d4f5]GetState received payload RESPONSE +[5fd 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [2364d4f5]Sending PUT_STATE +[5fe 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Received message PUT_STATE from shim +[5ff 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[601 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2364d4f5]state is ready +[602 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2364d4f5]Completed PUT_STATE. Sending RESPONSE +[603 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [2364d4f5]enterBusyState trigger event RESPONSE +[600 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[604 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Move state message RESPONSE +[605 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[606 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[607 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]sending state message RESPONSE +[608 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2364d4f5]Received message RESPONSE from shim +[609 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2364d4f5]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[60a 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [2364d4f5]before send +[60b 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [2364d4f5]after send +[60c 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [2364d4f5]Received RESPONSE, communicated (state:ready) +[60d 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [2364d4f5]Received RESPONSE. Successfully updated state +[60e 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2364d4f5]Transaction completed. Sending COMPLETED +[60f 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2364d4f5]Move state message COMPLETED +[610 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2364d4f5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[611 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2364d4f5]send state message COMPLETED +[612 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Received message COMPLETED from shim +[613 12-15 03:49:22.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[614 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60]HandleMessage- COMPLETED. Notify +[615 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60, channelID:businesschannel +[616 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[617 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60,syscc=false,proposal=0xc422bbe190,canname=mycc:1.0 +[618 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU launchAndWaitForRegister fetched 1826 bytes from file system +[619 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched +[61a 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +[61b 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[61c 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=mycc:1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt 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}] +[61d 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +[61e 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer0.org1.example.com) +[61f 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[620 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=mycc:1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key @@ -1565,17 +1644,17 @@ txId= locPointer=offset=70, bytesLength=12143 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} -[5d2 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-mycc-1.0) lock -[5d3 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-mycc-1.0) lock -[5d4 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-mycc-1.0 -[5d5 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org1.example.com-mycc-1.0(No such container: dev-peer0.org1.example.com-mycc-1.0) -[5d6 12-12 14:19:49.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org1.example.com-mycc-1.0 (No such container: dev-peer0.org1.example.com-mycc-1.0) -[5d7 12-12 14:19:49.45 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org1.example.com-mycc-1.0 (No such container: dev-peer0.org1.example.com-mycc-1.0) -[5d8 12-12 14:19:49.45 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org1.example.com-mycc-1.0 -[5d9 12-12 14:19:49.45 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default -[5da 12-12 14:19:49.45 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 -[5db 12-12 14:19:49.45 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 -[5dc 12-12 14:19:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +[621 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-mycc-1.0) lock +[622 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-mycc-1.0) lock +[623 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-mycc-1.0 +[624 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org1.example.com-mycc-1.0(No such container: dev-peer0.org1.example.com-mycc-1.0) +[625 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org1.example.com-mycc-1.0 (No such container: dev-peer0.org1.example.com-mycc-1.0) +[626 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org1.example.com-mycc-1.0 (No such container: dev-peer0.org1.example.com-mycc-1.0) +[627 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org1.example.com-mycc-1.0 +[628 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default +[629 12-15 03:49:22.52 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 +[62a 12-15 03:49:22.53 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 +[62b 12-15 03:49:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU FROM hyperledger/fabric-baseos:x86_64-0.4.2 ADD binpackage.tar /usr/local/bin LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ @@ -1584,1402 +1663,1401 @@ LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ org.hyperledger.fabric.version="1.1.0" \ org.hyperledger.fabric.base.version="0.4.2" ENV CORE_CHAINCODE_BUILDLEVEL=1.1.0 -[5dd 12-12 14:19:49.46 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' -[5de 12-12 14:19:49.46 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: -[5df 12-12 14:19:49.46 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.1.0 -[5e0 12-12 14:19:51.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Entering -[5e1 12-12 14:19:51.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Entering -[5e3 12-12 14:19:51.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Exiting -[5e4 12-12 14:19:51.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try -> WARN Got error: rpc error: code = Canceled desc = context canceled ,at 1 attempt. Retrying in 1s -[5e5 12-12 14:19:51.36 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> WARN [businesschannel] Receive error: Client is closing -[5e6 12-12 14:19:51.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Entering -[5e7 12-12 14:19:51.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Exiting -[5e2 12-12 14:19:51.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Exiting -[5e8 12-12 14:19:51.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel -> DEBU This peer will stop pass blocks from orderer service to other peers -[5e9 12-12 14:19:56.29 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 -[5ea 12-12 14:19:56.29 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -[5eb 12-12 14:19:56.29 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 -[5ec 12-12 14:19:56.38 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 -[5ed 12-12 14:19:56.90 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org1.example.com-mycc-1.0 -[5ee 12-12 14:19:56.90 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-mycc-1.0) -[5ef 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.authenticate)-fm.authenticate -> DEBU Chaincode mycc:1.0 's authentication is authorized -[5f0 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[5f1 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[5f2 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[5f3 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[5f4 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 -[5f5 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED -[5f6 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[5f7 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed -[5f8 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready -> DEBU sending READY -[5f9 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[5fa 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[5fb 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Move state message READY -[5fc 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: READY in state established -[5fd 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [d107e07c]Entered state ready -[5fe 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d, channelID:businesschannel -[5ff 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]sending state message READY -[600 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU sending init completed -[601 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU LaunchChaincode complete -[602 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Entry -[603 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -[604 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [d107e07c]Inside sendExecuteMessage. Message INIT -[605 12-12 14:19:56.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[606 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[607 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [d107e07c]sendExecuteMsg trigger event INIT -[608 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Move state message INIT -[609 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[60a 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[60b 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]sending state message INIT -[60c 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Received message PUT_STATE from shim -[60d 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[60e 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[60f 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d107e07c]state is ready -[610 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d107e07c]Completed PUT_STATE. Sending RESPONSE -[611 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d107e07c]enterBusyState trigger event RESPONSE -[612 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Move state message RESPONSE -[613 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[614 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[615 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]sending state message RESPONSE -[616 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Received message PUT_STATE from shim -[617 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[619 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d107e07c]state is ready -[61a 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d107e07c]Completed PUT_STATE. Sending RESPONSE -[618 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[61b 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d107e07c]enterBusyState trigger event RESPONSE -[61c 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Move state message RESPONSE -[61d 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[61e 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[61f 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]sending state message RESPONSE -[620 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Received message COMPLETED from shim -[621 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[622 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d]HandleMessage- COMPLETED. Notify -[623 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d, channelID:businesschannel -[624 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Exit -[625 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[626 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[627 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] -[628 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[629 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d channel id: businesschannel chaincode id: name:"lscc" -[62a 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[62b 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d channel id: businesschannel version: 1.1.0 -[62c 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d,syscc=true,proposal=0xc4230f7220,canname=escc:1.1.0 -[62d 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[62e 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[62f 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[630 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d107e07c]Inside sendExecuteMessage. Message TRANSACTION -[631 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[632 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[633 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d107e07c]sendExecuteMsg trigger event TRANSACTION -[634 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Move state message TRANSACTION -[635 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[636 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[637 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]sending state message TRANSACTION -[638 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d107e07c]Received message TRANSACTION from shim -[639 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d107e07c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[63a 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d107e07c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[63b 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[63c 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[63d 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d107e07c]Transaction completed. Sending COMPLETED -[63e 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d107e07c]Move state message COMPLETED -[63f 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d107e07c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[640 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d107e07c]send state message COMPLETED -[641 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d107e07c]Received message COMPLETED from shim -[642 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[643 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d]HandleMessage- COMPLETED. Notify -[644 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d, channelID:businesschannel -[645 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[646 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[647 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[648 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] -[649 12-12 14:19:56.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36730) -[64a 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[64b 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[64c 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422aee500 env 0xc4203676b0 txn 0 -[64d 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4203676b0 -[64e 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\205\313\277\321\005\020\354\360\344\313\001\"\017businesschannel*@d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv\npydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS\nq+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c\ngHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf\nOwJpoynNCyKsWozuVw==\n-----END CERTIFICATE-----\n\022\0304\343~\010i\016\025q\305'%p7\350\210Xg\357(,\214\004]J" -[64f 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[650 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[651 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -[652 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[653 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[654 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422f64000, header channel_header:"\010\003\032\014\010\205\313\277\321\005\020\354\360\344\313\001\"\017businesschannel*@d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv\npydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS\nq+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c\ngHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf\nOwJpoynNCyKsWozuVw==\n-----END CERTIFICATE-----\n\022\0304\343~\010i\016\025q\305'%p7\350\210Xg\357(,\214\004]J" -[655 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[656 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[657 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[658 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -[659 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] -[65a 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -[65b 12-12 14:19:58.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4203676b0 envbytes 0xc4229f4880 -[65c 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc4229f4880 -[65d 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[65e 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] -[65f 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=06ccb699-ae6d-4276-9548-64c43f16f171,syscc=true,proposal=0x0,canname=vscc:1.1.0 -[660 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d chaindID businesschannel -[661 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -[662 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[663 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -[664 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [06ccb699]Inside sendExecuteMessage. Message TRANSACTION -[665 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[666 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [06ccb699]sendExecuteMsg trigger event TRANSACTION -[667 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [06ccb699]Move state message TRANSACTION -[668 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [06ccb699]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[669 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[66a 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [06ccb699]sending state message TRANSACTION -[66b 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [06ccb699]Received message TRANSACTION from shim -[66c 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [06ccb699]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[66d 12-12 14:19:59.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [06ccb699]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[66e 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[66f 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[670 12-12 14:19:59.01 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -[671 12-12 14:19:59.02 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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}} -[672 12-12 14:19:59.02 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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}} -[673 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -[674 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [3f2a3cc2-b936-4dc0-9aec-facf89aeb80f] -[675 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[676 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [3f2a3cc2-b936-4dc0-9aec-facf89aeb80f] -[677 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -[678 12-12 14:19:59.02 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)(0x990b90), deserializer:(*msp.mspManagerImpl)(0xc421bab900)} -[679 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -[67a 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [06ccb699]Transaction completed. Sending COMPLETED -[67b 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [06ccb699]Move state message COMPLETED -[67c 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [06ccb699]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[67d 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [06ccb699]send state message COMPLETED -[67e 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [06ccb699]Received message COMPLETED from shim -[67f 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [06ccb699]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[680 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [06ccb699-ae6d-4276-9548-64c43f16f171]HandleMessage- COMPLETED. Notify -[681 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:06ccb699-ae6d-4276-9548-64c43f16f171, channelID:businesschannel -[682 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[683 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] -[684 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc4229f4880 -[685 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4203676b0 envbytes 0xc4229f4880 -[686 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422aee500 env 0xc4203676b0 txn 0 -[687 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -[688 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[689 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] -[68a 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[68b 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [3] -[68c 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[68d 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -[68e 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc -[68f 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) -[690 12-12 14:19:59.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] marked as valid by state validator -[691 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[692 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[693 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[694 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage -[695 12-12 14:19:59.03 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [3] -[696 12-12 14:19:59.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x34, 0x2, 0x99, 0xb0, 0xd2, 0xb, 0x90, 0x75, 0x7, 0xf4, 0x2a, 0xad, 0x5e, 0xc7, 0xb9, 0xc7, 0x6c, 0xe1, 0x51, 0x1a, 0xa2, 0xad, 0x31, 0x80, 0x80, 0x54, 0x30, 0x62, 0x36, 0xf4, 0xaf, 0xeb} txOffsets= -txId=d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d locPointer=offset=70, bytesLength=3454 +[62c 12-15 03:49:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' +[62d 12-15 03:49:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: +[62e 12-15 03:49:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.1.0 +[62f 12-15 03:49:28.78 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 +[630 12-15 03:49:28.78 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +[631 12-15 03:49:28.78 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 +[632 12-15 03:49:28.87 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 +[633 12-15 03:49:30.04 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org1.example.com-mycc-1.0 +[634 12-15 03:49:30.04 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-mycc-1.0) +[635 12-15 03:49:30.12 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.authenticate)-fm.authenticate -> DEBU Chaincode mycc:1.0 's authentication is authorized +[636 12-15 03:49:30.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[637 12-15 03:49:30.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[638 12-15 03:49:30.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[639 12-15 03:49:30.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[63a 12-15 03:49:30.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 +[63b 12-15 03:49:30.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED +[63c 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[63d 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed +[63e 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready -> DEBU sending READY +[63f 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[640 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[641 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Move state message READY +[642 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: READY in state established +[643 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [2364d4f5]Entered state ready +[644 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60, channelID:businesschannel +[645 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]sending state message READY +[646 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU sending init completed +[647 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU LaunchChaincode complete +[648 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Entry +[649 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +[64a 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [2364d4f5]Inside sendExecuteMessage. Message INIT +[64b 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[64c 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[64d 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [2364d4f5]sendExecuteMsg trigger event INIT +[64e 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Move state message INIT +[64f 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[650 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[651 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]sending state message INIT +[652 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Received message PUT_STATE from shim +[653 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[654 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[655 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2364d4f5]state is ready +[656 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2364d4f5]Completed PUT_STATE. Sending RESPONSE +[657 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [2364d4f5]enterBusyState trigger event RESPONSE +[658 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Move state message RESPONSE +[659 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[65a 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[65b 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]sending state message RESPONSE +[65c 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Received message PUT_STATE from shim +[65d 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[65e 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[65f 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2364d4f5]state is ready +[660 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2364d4f5]Completed PUT_STATE. Sending RESPONSE +[661 12-15 03:49:30.13 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [2364d4f5]enterBusyState trigger event RESPONSE +[662 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Move state message RESPONSE +[663 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[664 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[665 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]sending state message RESPONSE +[666 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Received message COMPLETED from shim +[667 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[668 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60]HandleMessage- COMPLETED. Notify +[669 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60, channelID:businesschannel +[66a 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Exit +[66b 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[66c 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[66d 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] +[66e 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[66f 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 channel id: businesschannel chaincode id: name:"lscc" +[670 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[671 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 channel id: businesschannel version: 1.1.0 +[672 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60,syscc=true,proposal=0xc422bbe190,canname=escc:1.1.0 +[673 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[674 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[675 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[676 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2364d4f5]Inside sendExecuteMessage. Message TRANSACTION +[677 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[678 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[679 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2364d4f5]sendExecuteMsg trigger event TRANSACTION +[67a 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Move state message TRANSACTION +[67b 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[67c 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[67d 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]sending state message TRANSACTION +[67e 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2364d4f5]Received message TRANSACTION from shim +[67f 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2364d4f5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[680 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2364d4f5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[681 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[682 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[683 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2364d4f5]Transaction completed. Sending COMPLETED +[684 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2364d4f5]Move state message COMPLETED +[685 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2364d4f5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[686 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2364d4f5]send state message COMPLETED +[687 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2364d4f5]Received message COMPLETED from shim +[688 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[689 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60]HandleMessage- COMPLETED. Notify +[68a 12-15 03:49:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60, channelID:businesschannel +[68b 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[68c 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[68d 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[68e 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] +[68f 12-15 03:49:30.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40914) +[690 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] +[691 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] +[692 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +[693 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +[694 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421dd8440 env 0xc421b84900 txn 0 +[695 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421b84900 +[696 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\302\214\315\321\005\020\330\373\345\362\001\"\017businesschannel*@2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A\nkokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl\nddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx\nOfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc\nbqEi6/lY2kK0EtGRnA==\n-----END CERTIFICATE-----\n\022\030\360\322\223\024\006\367v)\004\2763}\343\325\211>u\207\006\206\303J\267&" +[697 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[698 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[699 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +[69a 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[69b 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[69c 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422478000, header channel_header:"\010\003\032\014\010\302\214\315\321\005\020\330\373\345\362\001\"\017businesschannel*@2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A\nkokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl\nddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx\nOfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc\nbqEi6/lY2kK0EtGRnA==\n-----END CERTIFICATE-----\n\022\030\360\322\223\024\006\367v)\004\2763}\343\325\211>u\207\006\206\303J\267&" +[69d 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +[69e 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +[69f 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +[6a0 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +[6a1 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] +[6a2 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +[6a3 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc421b84900 envbytes 0xc42294b600 +[6a4 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc42294b600 +[6a5 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[6a6 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] +[6a7 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=cd0b29fb-dc46-4272-9d78-7ab610397024,syscc=true,proposal=0x0,canname=vscc:1.1.0 +[6a8 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 chaindID businesschannel +[6a9 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +[6aa 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[6ab 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +[6ac 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cd0b29fb]Inside sendExecuteMessage. Message TRANSACTION +[6ad 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[6ae 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cd0b29fb]sendExecuteMsg trigger event TRANSACTION +[6af 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd0b29fb]Move state message TRANSACTION +[6b0 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cd0b29fb]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[6b1 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[6b2 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd0b29fb]sending state message TRANSACTION +[6b3 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd0b29fb]Received message TRANSACTION from shim +[6b4 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cd0b29fb]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[6b5 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [cd0b29fb]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[6b6 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +[6b7 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +[6b8 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +[6b9 12-15 03:49:32.20 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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}} +[6ba 12-15 03:49:32.20 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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}} +[6bb 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +[6bc 12-15 03:49:32.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [8a62bdc8-3435-4a32-8586-82819ba45d52] +[6bd 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +[6be 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [8a62bdc8-3435-4a32-8586-82819ba45d52] +[6bf 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +[6c0 12-15 03:49:32.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)(0x990ba0), deserializer:(*msp.mspManagerImpl)(0xc4219851c0)} +[6c1 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +[6c2 12-15 03:49:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd0b29fb]Transaction completed. Sending COMPLETED +[6c3 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd0b29fb]Move state message COMPLETED +[6c4 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cd0b29fb]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[6c5 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd0b29fb]send state message COMPLETED +[6c6 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd0b29fb]Received message COMPLETED from shim +[6c7 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cd0b29fb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[6c8 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cd0b29fb-dc46-4272-9d78-7ab610397024]HandleMessage- COMPLETED. Notify +[6c9 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:cd0b29fb-dc46-4272-9d78-7ab610397024, channelID:businesschannel +[6ca 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[6cb 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] +[6cc 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc42294b600 +[6cd 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc421b84900 envbytes 0xc42294b600 +[6ce 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421dd8440 env 0xc421b84900 txn 0 +[6cf 12-15 03:49:32.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +[6d0 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +[6d1 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] +[6d2 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[6d3 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [3] +[6d4 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +[6d5 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +[6d6 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc +[6d7 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) +[6d8 12-15 03:49:32.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] marked as valid by state validator +[6d9 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +[6da 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +[6db 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +[6dc 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage +[6dd 12-15 03:49:32.24 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [3] +[6de 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xbd, 0x1d, 0x3e, 0x71, 0x54, 0x7d, 0x18, 0xea, 0x68, 0xf5, 0xac, 0xe5, 0x8c, 0xfe, 0x88, 0x50, 0x5, 0xc9, 0x4a, 0xf7, 0x43, 0x38, 0xe6, 0x11, 0x25, 0x7e, 0xb7, 0xf4, 0xb1, 0x42, 0x13, 0xae} txOffsets= +txId=2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 locPointer=offset=70, bytesLength=3454 ] -[697 12-12 14:19:59.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40157, bytesLength=3454] for tx ID: [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] to index -[698 12-12 14:19:59.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40157, bytesLength=3454] for tx number:[0] ID: [d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d] to blockNumTranNum index -[699 12-12 14:19:59.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45405], isChainEmpty=[false], lastBlockNumber=[3] -[69a 12-12 14:19:59.04 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 3 -[69b 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 3 -[69c 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [3] with 1 transaction(s) -[69d 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database -[69e 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[69f 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -[6a0 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccmycc] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] -[6a1 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -[6a2 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -[6a3 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[6a4 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database -[6a5 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -[6a6 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -[6a7 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[6a8 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: d107e07cec291f652747ada7aa8980dece2a276f4adbd63ce78483a26bec780d -[6a9 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[6aa 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[6ab 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[6ac 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[6ad 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[6ae 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[6af 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[6b0 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[6b1 12-12 14:19:59.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[6b2 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[6b3 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[6b4 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422d75580 env 0xc422b44690 txn 0 -[6b5 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422b44690 -[6b6 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\215\313\277\321\005\020\254\341\337\036\"\017businesschannel*@21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea:\010\022\006\022\004lscc" signature_header:"\n\236\006\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk\nEEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT\n6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB\n9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf\nZM8rwLlgV6XUeTLW\n-----END CERTIFICATE-----\n\022\030gg\245 ,^sl\007N\340**\"Z YL^\277m\034&\326" -[6b7 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[6b8 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[6b9 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP cec57e02e224c3efa1075c97d8c3172cd78fec768b3b75afcf280ac60a493411} -[6ba 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[6bb 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[6bc 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4227b8a80, header channel_header:"\010\003\032\013\010\215\313\277\321\005\020\254\341\337\036\"\017businesschannel*@21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea:\010\022\006\022\004lscc" signature_header:"\n\236\006\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk\nEEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT\n6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB\n9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf\nZM8rwLlgV6XUeTLW\n-----END CERTIFICATE-----\n\022\030gg\245 ,^sl\007N\340**\"Z YL^\277m\034&\326" -[6bd 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[6be 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[6bf 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[6c0 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -[6c1 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] -[6c2 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -[6c3 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422b44690 envbytes 0xc420378880 -[6c4 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc420378880 -[6c5 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[6c6 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] -[6c7 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=224674f0-8b51-49af-a591-b6f947a8266a,syscc=true,proposal=0x0,canname=vscc:1.1.0 -[6c8 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea chaindID businesschannel -[6c9 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -[6ca 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[6cb 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -[6cc 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [224674f0]Inside sendExecuteMessage. Message TRANSACTION -[6cd 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[6ce 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [224674f0]sendExecuteMsg trigger event TRANSACTION -[6cf 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [224674f0]Move state message TRANSACTION -[6d0 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [224674f0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[6d1 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[6d2 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [224674f0]sending state message TRANSACTION -[6d3 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [224674f0]Received message TRANSACTION from shim -[6d4 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [224674f0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[6d5 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [224674f0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[6d6 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[6d7 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[6d8 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -[6d9 12-12 14:20:05.50 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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}} -[6da 12-12 14:20:05.50 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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}} -[6db 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -[6dc 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [7e688c1b-bf35-47d8-9ad2-83e0863dd346] -[6dd 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[6de 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [7e688c1b-bf35-47d8-9ad2-83e0863dd346] -[6df 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -[6e0 12-12 14:20:05.50 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)(0x990b90), deserializer:(*msp.mspManagerImpl)(0xc421bab900)} -[6e1 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated -[6e2 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [224674f0]Transaction completed. Sending COMPLETED -[6e3 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [224674f0]Move state message COMPLETED -[6e4 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [224674f0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[6e5 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [224674f0]send state message COMPLETED -[6e6 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [224674f0]Received message COMPLETED from shim -[6e7 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [224674f0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[6e8 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [224674f0-8b51-49af-a591-b6f947a8266a]HandleMessage- COMPLETED. Notify -[6e9 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:224674f0-8b51-49af-a591-b6f947a8266a, channelID:businesschannel -[6ea 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[6eb 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea, error Chaincode mycc is already instantiated -[6ec 12-12 14:20:05.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] -[6ed 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc420378880 -[6ee 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422b44690 envbytes 0xc420378880 -[6ef 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea returned error Chaincode mycc is already instantiated -[6f0 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422d75580 env 0xc422b44690 txn 0 -[6f1 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 -[6f2 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[6f3 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] -[6f4 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[6f5 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] -[6f6 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[6f7 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> WARN Channel [businesschannel]: Block [4] Transaction index [0] TxId [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] -[6f8 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[6f9 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[6fa 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[6fb 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage -[6fc 12-12 14:20:05.51 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [4] -[6fd 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x39, 0x2e, 0x71, 0x22, 0x2a, 0x60, 0xa4, 0x53, 0x7, 0x31, 0x12, 0xb7, 0x15, 0xa2, 0xa0, 0xb7, 0xc6, 0x75, 0x17, 0x40, 0x71, 0xfa, 0xe4, 0x1f, 0xf9, 0x2a, 0xc1, 0x5a, 0xc1, 0x3b, 0xd1, 0xa6} txOffsets= -txId=21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea locPointer=offset=70, bytesLength=3442 +[6df 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40178, bytesLength=3454] for tx ID: [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] to index +[6e0 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40178, bytesLength=3454] for tx number:[0] ID: [2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60] to blockNumTranNum index +[6e1 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45427], isChainEmpty=[false], lastBlockNumber=[3] +[6e2 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 3 +[6e3 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 3 +[6e4 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [3] with 1 transaction(s) +[6e5 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database +[6e6 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +[6e7 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +[6e8 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccmycc] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] +[6e9 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +[6ea 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +[6eb 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +[6ec 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database +[6ed 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +[6ee 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +[6ef 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +[6f0 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 2364d4f545fe9ca3def7b69b17782cec36f87d28d617940e0a66d3cc8f677c60 +[6f1 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +[6f2 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[6f3 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[6f4 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[6f5 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[6f6 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[6f7 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[6f8 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[6f9 12-15 03:49:32.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[6fa 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] +[6fb 12-15 03:49:39.77 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] +[6fc 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +[6fd 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +[6fe 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421b99fa0 env 0xc422f68d50 txn 0 +[6ff 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422f68d50 +[700 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\312\214\315\321\005\020\364\336\342\240\001\"\017businesschannel*@912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv\nVLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7\nYoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2\n8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0\nN5+z/fTTfchGfLaCtzM=\n-----END CERTIFICATE-----\n\022\030\326l\271@\240_\234\374\202\363\340\311\352\370z/\356\364\027\215~\330Da" +[701 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[702 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[703 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 73763341eb604cef734e4ac7c2ea77bc9d730c798fb96eb583c0637692a88acd} +[704 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[705 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[706 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422f06a80, header channel_header:"\010\003\032\014\010\312\214\315\321\005\020\364\336\342\240\001\"\017businesschannel*@912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv\nVLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7\nYoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2\n8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0\nN5+z/fTTfchGfLaCtzM=\n-----END CERTIFICATE-----\n\022\030\326l\271@\240_\234\374\202\363\340\311\352\370z/\356\364\027\215~\330Da" +[707 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +[708 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +[709 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +[70a 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +[70b 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] +[70c 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +[70d 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422f68d50 envbytes 0xc422f01b00 +[70e 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422f01b00 +[70f 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[710 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] +[711 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=71ff1d64-76ae-49d3-88a7-6dbcc4e72c95,syscc=true,proposal=0x0,canname=vscc:1.1.0 +[712 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 chaindID businesschannel +[713 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +[714 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[715 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +[716 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [71ff1d64]Inside sendExecuteMessage. Message TRANSACTION +[717 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[718 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [71ff1d64]sendExecuteMsg trigger event TRANSACTION +[719 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [71ff1d64]Move state message TRANSACTION +[71a 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [71ff1d64]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[71b 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[71c 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [71ff1d64]sending state message TRANSACTION +[71d 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71ff1d64]Received message TRANSACTION from shim +[71e 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [71ff1d64]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[71f 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [71ff1d64]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[720 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +[721 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +[722 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +[723 12-15 03:49:39.78 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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}} +[724 12-15 03:49:39.78 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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}} +[725 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +[726 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [2d5f42a8-487d-4290-a897-0e040f5b5915] +[727 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +[728 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [2d5f42a8-487d-4290-a897-0e040f5b5915] +[729 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +[72a 12-15 03:49:39.78 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)(0x990ba0), deserializer:(*msp.mspManagerImpl)(0xc4219851c0)} +[72b 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated +[72c 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71ff1d64]Transaction completed. Sending COMPLETED +[72d 12-15 03:49:39.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71ff1d64]Move state message COMPLETED +[72e 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [71ff1d64]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[72f 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71ff1d64]send state message COMPLETED +[730 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [71ff1d64]Received message COMPLETED from shim +[731 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [71ff1d64]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[732 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [71ff1d64-76ae-49d3-88a7-6dbcc4e72c95]HandleMessage- COMPLETED. Notify +[733 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:71ff1d64-76ae-49d3-88a7-6dbcc4e72c95, channelID:businesschannel +[734 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[735 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218, error Chaincode mycc is already instantiated +[736 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] +[737 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422f01b00 +[738 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422f68d50 envbytes 0xc422f01b00 +[739 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 returned error Chaincode mycc is already instantiated +[73b 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 +[73c 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +[73d 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] +[73e 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[73f 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] +[740 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +[741 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> WARN Channel [businesschannel]: Block [4] Transaction index [0] TxId [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] +[742 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +[743 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +[744 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +[745 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage +[73a 12-15 03:49:39.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421b99fa0 env 0xc422f68d50 txn 0 +[746 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [4] +[747 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x16, 0x8f, 0x87, 0x62, 0x56, 0x57, 0x56, 0x27, 0xf7, 0xf4, 0x70, 0xdb, 0x81, 0x94, 0xc0, 0xac, 0xf4, 0x6c, 0x89, 0xd9, 0x2e, 0x92, 0x8f, 0x5e, 0xb2, 0xa6, 0x41, 0xed, 0x97, 0x77, 0x61, 0xc3} txOffsets= +txId=912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 locPointer=offset=70, bytesLength=3454 ] -[6fe 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45475, bytesLength=3442] for tx ID: [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] to index -[6ff 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45475, bytesLength=3442] for tx number:[0] ID: [21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea] to blockNumTranNum index -[700 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50711], isChainEmpty=[false], lastBlockNumber=[4] -[701 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 4 -[702 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 4 -[703 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) -[704 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database -[705 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[706 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -[707 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[708 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to history database -[709 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -[70a 12-12 14:20:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -[70b 12-12 14:20:05.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -[70c 12-12 14:20:05.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[70d 12-12 14:20:05.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 21a29b042668cdfce26172f5edc7efac60ed8e609102abc37eb0834ebefb9aea -[70e 12-12 14:20:05.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[70f 12-12 14:20:05.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[710 12-12 14:20:05.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[711 12-12 14:20:05.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[712 12-12 14:20:05.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[713 12-12 14:20:05.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[714 12-12 14:20:05.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[715 12-12 14:20:05.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[716 12-12 14:20:05.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[717 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36752 -[718 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422fd4570 -[719 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[71a 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[71b 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -[71c 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[71d 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[71e 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422fd23c0, header 0xc422fd45a0 -[71f 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -[720 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 -[721 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] -[722 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[723 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] -[724 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 channel id: businesschannel -[725 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7,syscc=true,proposal=0xc422fd23c0,canname=lscc:1.1.0 -[726 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[727 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry -[728 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[729 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [772505a9]Inside sendExecuteMessage. Message TRANSACTION -[72a 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[72b 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[72c 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [772505a9]sendExecuteMsg trigger event TRANSACTION -[72d 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Move state message TRANSACTION -[72e 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[72f 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[730 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]sending state message TRANSACTION -[731 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [772505a9]Received message TRANSACTION from shim -[732 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [772505a9]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[733 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [772505a9]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[734 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [772505a9]Sending GET_STATE -[735 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Received message GET_STATE from shim -[736 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[737 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [772505a9]Received GET_STATE, invoking get state from ledger -[738 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[739 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [772505a9] getting state for chaincode lscc, key mycc, channel businesschannel -[73a 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[73b 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [772505a9]Got state. Sending RESPONSE -[73c 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [772505a9]handleGetState serial send RESPONSE -[73d 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [772505a9]Received message RESPONSE from shim -[73e 12-12 14:20:10.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [772505a9]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[73f 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [772505a9]before send -[740 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [772505a9]after send -[742 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [772505a9]GetState received payload RESPONSE -[743 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [772505a9]Transaction completed. Sending COMPLETED -[741 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [772505a9]Received RESPONSE, communicated (state:ready) -[744 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [772505a9]Move state message COMPLETED -[745 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [772505a9]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[746 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [772505a9]send state message COMPLETED -[747 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Received message COMPLETED from shim -[748 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[749 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7]HandleMessage- COMPLETED. Notify -[74a 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7, channelID:businesschannel -[74b 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit -[74c 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInsantiationPolicy.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -[74d 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 channel id: businesschannel version: 1.0 -[74e 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7,syscc=false,proposal=0xc422fd23c0,canname=mycc:1.0 -[74f 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 -[750 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[751 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -[752 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [772505a9]Inside sendExecuteMessage. Message TRANSACTION -[753 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[754 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[755 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [772505a9]sendExecuteMsg trigger event TRANSACTION -[756 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Move state message TRANSACTION -[757 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[758 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[759 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]sending state message TRANSACTION -[75a 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Received message GET_STATE from shim -[75b 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[75c 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [772505a9]Received GET_STATE, invoking get state from ledger -[75d 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[75e 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [772505a9] getting state for chaincode mycc, key a, channel businesschannel -[75f 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=a -[760 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [772505a9]Got state. Sending RESPONSE -[761 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [772505a9]handleGetState serial send RESPONSE -[762 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Received message GET_STATE from shim -[763 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[764 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [772505a9]Received GET_STATE, invoking get state from ledger -[765 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[766 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [772505a9] getting state for chaincode mycc, key b, channel businesschannel -[767 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=b -[768 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [772505a9]Got state. Sending RESPONSE -[769 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [772505a9]handleGetState serial send RESPONSE -[76a 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Received message PUT_STATE from shim -[76b 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[76c 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[76d 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [772505a9]state is ready -[76e 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [772505a9]Completed PUT_STATE. Sending RESPONSE -[76f 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [772505a9]enterBusyState trigger event RESPONSE -[770 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Move state message RESPONSE -[771 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[772 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[773 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]sending state message RESPONSE -[774 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Received message PUT_STATE from shim -[775 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[776 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[777 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [772505a9]state is ready -[778 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [772505a9]Completed PUT_STATE. Sending RESPONSE -[779 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [772505a9]enterBusyState trigger event RESPONSE -[77a 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Move state message RESPONSE -[77b 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[77c 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[77d 12-12 14:20:10.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]sending state message RESPONSE -[77e 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Received message COMPLETED from shim -[77f 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[780 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7]HandleMessage- COMPLETED. Notify -[781 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7, channelID:businesschannel -[782 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[783 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[784 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[785 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] -[786 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[787 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 channel id: businesschannel chaincode id: name:"mycc" -[788 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -[789 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 channel id: businesschannel version: 1.1.0 -[78a 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7,syscc=true,proposal=0xc422fd23c0,canname=escc:1.1.0 -[78b 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[78c 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[78d 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[78e 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [772505a9]Inside sendExecuteMessage. Message TRANSACTION -[78f 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[790 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[791 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [772505a9]sendExecuteMsg trigger event TRANSACTION -[792 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Move state message TRANSACTION -[793 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[794 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[795 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]sending state message TRANSACTION -[796 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [772505a9]Received message TRANSACTION from shim -[797 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [772505a9]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[798 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [772505a9]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[799 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[79a 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[79b 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [772505a9]Transaction completed. Sending COMPLETED -[79c 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [772505a9]Move state message COMPLETED -[79d 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [772505a9]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[79e 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [772505a9]send state message COMPLETED -[79f 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [772505a9]Received message COMPLETED from shim -[7a0 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[7a1 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7]HandleMessage- COMPLETED. Notify -[7a2 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7, channelID:businesschannel -[7a3 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[7a4 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[7a5 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[7a6 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] -[7a7 12-12 14:20:10.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36752) -[7a8 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[7a9 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[7aa 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422eddec0 env 0xc422ff8660 txn 0 -[7ab 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422ff8660 -[7ac 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\232\313\277\321\005\020\200\347\372\352\001\"\017businesschannel*@772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv\npydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS\nq+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c\ngHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf\nOwJpoynNCyKsWozuVw==\n-----END CERTIFICATE-----\n\022\030d\361\325j\375\325\225\313\300\373I\037\306\310\345\235>\177Y_\360_\301w" -[7ad 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[7ae 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[7af 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -[7b0 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[7b1 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[7b2 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421a5e000, header channel_header:"\010\003\032\014\010\232\313\277\321\005\020\200\347\372\352\001\"\017businesschannel*@772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQDA+3TKQWCKBzFV7guPGYxjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTBaFw0yNzEyMTAwODQwMTBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwZtFRgIITBiS+4k2bTnEbm/UO4RiTvhv\npydCgrPF0AtBGMd76gAiaHVz+X2c+IaRpMLmXPAocTExo7b8cw87raNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+R/pZW+231zS\nq+fvnisbOlH/xWQgpCVerEEhDOeIqVcwCgYIKoZIzj0EAwIDSAAwRQIhAIcdgO0c\ngHAczm1tY8u9rpU9Lp9IrHT2b+GicPY9T/e0AiBy3WoKOGJLg1SQMjnBVl+1CmLf\nOwJpoynNCyKsWozuVw==\n-----END CERTIFICATE-----\n\022\030d\361\325j\375\325\225\313\300\373I\037\306\310\345\235>\177Y_\360_\301w" -[7b3 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[7b4 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[7b5 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[7b6 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -[7b7 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] -[7b8 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -[7b9 12-12 14:20:12.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422ff8660 envbytes 0xc422e9bc00 -[7ba 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [27cc3edd-3ae1-49fc-bede-bf3dffe50b85] -[7bb 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[7bc 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [27cc3edd-3ae1-49fc-bede-bf3dffe50b85] -[7bd 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422e9bc00 -[7be 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[7bf 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] -[7c0 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=8ffce052-cced-46e8-b1aa-66f013c76e3a,syscc=true,proposal=0x0,canname=vscc:1.1.0 -[7c1 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 chaindID businesschannel -[7c2 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -[7c3 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[7c4 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -[7c5 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8ffce052]Inside sendExecuteMessage. Message TRANSACTION -[7c6 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[7c7 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8ffce052]sendExecuteMsg trigger event TRANSACTION -[7c8 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ffce052]Move state message TRANSACTION -[7c9 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ffce052]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[7ca 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[7cb 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ffce052]sending state message TRANSACTION -[7cc 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ffce052]Received message TRANSACTION from shim -[7cd 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8ffce052]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[7ce 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8ffce052]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[7cf 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[7d0 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[7d1 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -[7d2 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ffce052]Transaction completed. Sending COMPLETED -[7d3 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ffce052]Move state message COMPLETED -[7d4 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8ffce052]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[7d5 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ffce052]send state message COMPLETED -[7d6 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ffce052]Received message COMPLETED from shim -[7d7 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ffce052]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[7d8 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ffce052-cced-46e8-b1aa-66f013c76e3a]HandleMessage- COMPLETED. Notify -[7d9 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8ffce052-cced-46e8-b1aa-66f013c76e3a, channelID:businesschannel -[7da 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[7db 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] -[7dc 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422e9bc00 -[7dd 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422ff8660 envbytes 0xc422e9bc00 -[7de 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422eddec0 env 0xc422ff8660 txn 0 -[7df 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -[7e0 12-12 14:20:12.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[7e1 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] -[7e2 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[7e3 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] -[7e4 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[7e5 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -[7e6 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc -[7e7 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -[7e8 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=a -[7e9 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -[7ea 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=b -[7eb 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -[7ec 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] marked as valid by state validator -[7ed 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[7ee 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[7ef 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[7f0 12-12 14:20:12.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage -[7f1 12-12 14:20:12.59 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [5] -[7f2 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x2b, 0x97, 0x1a, 0x34, 0xe0, 0x9f, 0x84, 0x93, 0x97, 0xdf, 0x58, 0xc6, 0xd5, 0xf6, 0xb, 0xf, 0x1d, 0x2f, 0xf, 0xde, 0x2, 0xc2, 0xdb, 0x15, 0x97, 0x87, 0x7d, 0x95, 0xfd, 0x8d, 0x4a, 0x56} txOffsets= -txId=772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 locPointer=offset=70, bytesLength=2916 +[748 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45497, bytesLength=3454] for tx ID: [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] to index +[749 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45497, bytesLength=3454] for tx number:[0] ID: [912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218] to blockNumTranNum index +[74a 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50747], isChainEmpty=[false], lastBlockNumber=[4] +[74b 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 4 +[74c 12-15 03:49:39.80 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 4 +[74d 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) +[74e 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database +[74f 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +[750 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +[751 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +[752 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to history database +[753 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +[754 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +[755 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +[756 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +[757 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 912d3bf8186f76105cc69db0eb1e99f0adbba98495186d7246e0e065eb66f218 +[758 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +[759 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[75a 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[75b 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[75c 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[75d 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[75e 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[75f 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[760 12-15 03:49:39.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[761 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40932 +[762 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422734870 +[763 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[764 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[765 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +[766 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[767 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[768 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42273e1e0, header 0xc4227348a0 +[769 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" +[76a 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e +[76b 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] +[76c 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[76d 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] +[76e 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e channel id: businesschannel +[76f 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e,syscc=true,proposal=0xc42273e1e0,canname=lscc:1.1.0 +[770 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +[771 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry +[772 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +[773 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [522aba04]Inside sendExecuteMessage. Message TRANSACTION +[774 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[775 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[776 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [522aba04]sendExecuteMsg trigger event TRANSACTION +[777 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Move state message TRANSACTION +[778 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[779 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[77a 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]sending state message TRANSACTION +[77b 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [522aba04]Received message TRANSACTION from shim +[77c 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [522aba04]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[77d 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [522aba04]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[77e 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [522aba04]Sending GET_STATE +[77f 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Received message GET_STATE from shim +[780 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[781 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [522aba04]Received GET_STATE, invoking get state from ledger +[783 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [522aba04] getting state for chaincode lscc, key mycc, channel businesschannel +[784 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +[785 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [522aba04]Got state. Sending RESPONSE +[786 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [522aba04]handleGetState serial send RESPONSE +[787 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [522aba04]Received message RESPONSE from shim +[788 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [522aba04]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[789 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [522aba04]before send +[78a 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [522aba04]after send +[78b 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [522aba04]Received RESPONSE, communicated (state:ready) +[78c 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [522aba04]GetState received payload RESPONSE +[78d 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [522aba04]Transaction completed. Sending COMPLETED +[78e 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [522aba04]Move state message COMPLETED +[78f 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [522aba04]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[790 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [522aba04]send state message COMPLETED +[782 12-15 03:49:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[791 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Received message COMPLETED from shim +[792 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[793 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e]HandleMessage- COMPLETED. Notify +[794 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e, channelID:businesschannel +[795 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit +[796 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInsantiationPolicy.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +[797 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e channel id: businesschannel version: 1.0 +[798 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e,syscc=false,proposal=0xc42273e1e0,canname=mycc:1.0 +[799 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 +[79a 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[79b 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +[79c 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [522aba04]Inside sendExecuteMessage. Message TRANSACTION +[79d 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[79e 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[79f 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [522aba04]sendExecuteMsg trigger event TRANSACTION +[7a0 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Move state message TRANSACTION +[7a1 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[7a2 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[7a3 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]sending state message TRANSACTION +[7a4 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Received message GET_STATE from shim +[7a5 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[7a6 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [522aba04]Received GET_STATE, invoking get state from ledger +[7a7 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[7a8 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [522aba04] getting state for chaincode mycc, key a, channel businesschannel +[7a9 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=a +[7aa 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [522aba04]Got state. Sending RESPONSE +[7ab 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [522aba04]handleGetState serial send RESPONSE +[7ac 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Received message GET_STATE from shim +[7ad 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[7ae 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [522aba04]Received GET_STATE, invoking get state from ledger +[7af 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[7b0 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [522aba04] getting state for chaincode mycc, key b, channel businesschannel +[7b1 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=b +[7b2 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [522aba04]Got state. Sending RESPONSE +[7b3 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [522aba04]handleGetState serial send RESPONSE +[7b4 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Received message PUT_STATE from shim +[7b5 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[7b6 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[7b7 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [522aba04]state is ready +[7b8 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [522aba04]Completed PUT_STATE. Sending RESPONSE +[7b9 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [522aba04]enterBusyState trigger event RESPONSE +[7ba 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Move state message RESPONSE +[7bb 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[7bc 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[7bd 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]sending state message RESPONSE +[7be 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Received message PUT_STATE from shim +[7bf 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[7c1 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [522aba04]state is ready +[7c2 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [522aba04]Completed PUT_STATE. Sending RESPONSE +[7c3 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [522aba04]enterBusyState trigger event RESPONSE +[7c0 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[7c4 12-15 03:49:45.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Move state message RESPONSE +[7c5 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[7c6 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[7c7 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]sending state message RESPONSE +[7c8 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Received message COMPLETED from shim +[7c9 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[7ca 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e]HandleMessage- COMPLETED. Notify +[7cb 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e, channelID:businesschannel +[7cc 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[7cd 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[7ce 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[7cf 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] +[7d0 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[7d1 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e channel id: businesschannel chaincode id: name:"mycc" +[7d2 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +[7d3 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e channel id: businesschannel version: 1.1.0 +[7d4 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e,syscc=true,proposal=0xc42273e1e0,canname=escc:1.1.0 +[7d5 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[7d6 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[7d7 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[7d8 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [522aba04]Inside sendExecuteMessage. Message TRANSACTION +[7d9 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[7da 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[7db 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [522aba04]sendExecuteMsg trigger event TRANSACTION +[7dc 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Move state message TRANSACTION +[7dd 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[7de 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[7df 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]sending state message TRANSACTION +[7e0 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [522aba04]Received message TRANSACTION from shim +[7e1 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [522aba04]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[7e2 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [522aba04]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[7e3 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[7e4 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[7e5 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [522aba04]Transaction completed. Sending COMPLETED +[7e6 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [522aba04]Move state message COMPLETED +[7e7 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [522aba04]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[7e8 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [522aba04]send state message COMPLETED +[7e9 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [522aba04]Received message COMPLETED from shim +[7ea 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[7eb 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e]HandleMessage- COMPLETED. Notify +[7ec 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e, channelID:businesschannel +[7ed 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[7ee 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[7ef 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[7f0 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] +[7f1 12-15 03:49:45.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40932) +[7f2 12-15 03:49:48.14 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] +[7f3 12-15 03:49:48.15 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] +[7f4 12-15 03:49:48.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +[7f5 12-15 03:49:48.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +[7f6 12-15 03:49:48.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4233e7060 env 0xc423399ef0 txn 0 +[7f7 12-15 03:49:48.15 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423399ef0 +[7f8 12-15 03:49:48.16 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\331\214\315\321\005\020\310\246\227[\"\017businesschannel*@522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A\nkokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl\nddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx\nOfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc\nbqEi6/lY2kK0EtGRnA==\n-----END CERTIFICATE-----\n\022\030A\n\203\264\360\3758X\277\365\242\315\221\0251\263\3737\315b\265\026\026S" +[7f9 12-15 03:49:48.16 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[7fa 12-15 03:49:48.16 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[7fb 12-15 03:49:48.16 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +[7fc 12-15 03:49:48.16 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[7fd 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[7fe 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc423422000, header channel_header:"\010\003\032\013\010\331\214\315\321\005\020\310\246\227[\"\017businesschannel*@522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKxfKo2qqtYfPTAP9RkA6yowCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUwWhcNMjcxMjEzMDMzNTUw\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABLI8SpNrkC0AYhi7GIcw527PPV6Nuh+A\nkokvpQcUCgFSm73tYZ7QAUlTF8N/VBBNQCnFL2krukOLd1IoB7wnZnujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILCvaRP6ZSDl\nddJqnn1MxLwkFOqm9MXw2LGOk8XLrBNWMAoGCCqGSM49BAMCA0cAMEQCIB53JeFx\nOfVDDli+JiUckF4Y7kMdYUPqGxGssuYH0UpiAiAoqYWzYjOL9pqgxtIT03/Yqspc\nbqEi6/lY2kK0EtGRnA==\n-----END CERTIFICATE-----\n\022\030A\n\203\264\360\3758X\277\365\242\315\221\0251\263\3737\315b\265\026\026S" +[7ff 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +[800 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +[801 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +[802 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +[803 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] +[804 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +[805 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc423399ef0 envbytes 0xc423409c00 +[806 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [d00111bc-e79c-4ec6-9be1-fe674fedc1d4] +[807 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +[808 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [d00111bc-e79c-4ec6-9be1-fe674fedc1d4] +[809 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc423409c00 +[80a 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[80b 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] +[80c 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=17e87bac-3892-40e1-a26e-9311e0d94996,syscc=true,proposal=0x0,canname=vscc:1.1.0 +[80d 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e chaindID businesschannel +[80e 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +[80f 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[810 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +[811 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [17e87bac]Inside sendExecuteMessage. Message TRANSACTION +[812 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[813 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [17e87bac]sendExecuteMsg trigger event TRANSACTION +[814 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17e87bac]Move state message TRANSACTION +[815 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [17e87bac]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[816 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[817 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17e87bac]sending state message TRANSACTION +[818 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17e87bac]Received message TRANSACTION from shim +[819 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17e87bac]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[81a 12-15 03:49:48.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [17e87bac]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[81b 12-15 03:49:48.20 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +[81c 12-15 03:49:48.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +[81d 12-15 03:49:48.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +[81e 12-15 03:49:48.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17e87bac]Transaction completed. Sending COMPLETED +[81f 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17e87bac]Move state message COMPLETED +[820 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17e87bac]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[821 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17e87bac]send state message COMPLETED +[822 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17e87bac]Received message COMPLETED from shim +[823 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [17e87bac]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[824 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [17e87bac-3892-40e1-a26e-9311e0d94996]HandleMessage- COMPLETED. Notify +[825 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:17e87bac-3892-40e1-a26e-9311e0d94996, channelID:businesschannel +[826 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[827 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] +[828 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc423409c00 +[829 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc423399ef0 envbytes 0xc423409c00 +[82a 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4233e7060 env 0xc423399ef0 txn 0 +[82b 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +[82c 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +[82d 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] +[82e 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[82f 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] +[830 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +[831 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +[832 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc +[833 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +[834 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=a +[835 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +[836 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=b +[837 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +[838 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] marked as valid by state validator +[839 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +[83a 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +[83b 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +[83c 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage +[83d 12-15 03:49:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [5] +[83e 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xcb, 0xcf, 0xb6, 0xae, 0xe4, 0xec, 0x84, 0x3d, 0xff, 0x69, 0xec, 0xe8, 0x67, 0xe0, 0x4, 0x97, 0xd4, 0xed, 0x51, 0x58, 0x9c, 0x6d, 0xdb, 0x2f, 0x52, 0xb2, 0x7b, 0xe3, 0x9b, 0x2a, 0xb2, 0x78} txOffsets= +txId=522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e locPointer=offset=70, bytesLength=2913 ] -[7f3 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50781, bytesLength=2916] for tx ID: [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] to index -[7f4 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50781, bytesLength=2916] for tx number:[0] ID: [772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7] to blockNumTranNum index -[7f5 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55491], isChainEmpty=[false], lastBlockNumber=[5] -[7f6 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 5 -[7f7 12-12 14:20:12.60 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 5 -[7f8 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) -[7f9 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database -[7fa 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[7fb 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -[7fc 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -[7fd 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -[7fe 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[7ff 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database -[800 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -[801 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -[802 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[803 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 772505a902ce894bff9958c5c0d329cb53b3a1baa4a046b4b03c9b0f6c81a6f7 -[804 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[805 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[806 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[807 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[808 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[809 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[80a 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[80b 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[80c 12-12 14:20:12.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[80d 12-12 14:20:17.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36766 -[80e 12-12 14:20:17.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421cb25d0 -[80f 12-12 14:20:17.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[810 12-12 14:20:17.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[811 12-12 14:20:17.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -[812 12-12 14:20:17.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[813 12-12 14:20:17.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[814 12-12 14:20:17.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421e23040, header 0xc421cb2600 -[815 12-12 14:20:17.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -[816 12-12 14:20:17.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf -[817 12-12 14:20:17.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf] -[818 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[819 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf] -[81a 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf channel id: businesschannel -[81b 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf,syscc=true,proposal=0xc421e23040,canname=lscc:1.1.0 -[81c 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[81d 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry -[81e 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[81f 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40d7418c]Inside sendExecuteMessage. Message TRANSACTION -[820 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[821 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[822 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40d7418c]sendExecuteMsg trigger event TRANSACTION -[823 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40d7418c]Move state message TRANSACTION -[824 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40d7418c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[825 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[826 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40d7418c]sending state message TRANSACTION -[827 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40d7418c]Received message TRANSACTION from shim -[828 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40d7418c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[829 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [40d7418c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[82a 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [40d7418c]Sending GET_STATE -[82b 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40d7418c]Received message GET_STATE from shim -[82c 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40d7418c]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[82d 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [40d7418c]Received GET_STATE, invoking get state from ledger -[82e 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[82f 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40d7418c] getting state for chaincode lscc, key mycc, channel businesschannel -[830 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[831 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40d7418c]Got state. Sending RESPONSE -[832 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [40d7418c]handleGetState serial send RESPONSE -[833 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40d7418c]Received message RESPONSE from shim -[834 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40d7418c]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[835 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [40d7418c]before send -[836 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [40d7418c]after send -[837 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [40d7418c]Received RESPONSE, communicated (state:ready) -[838 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [40d7418c]GetState received payload RESPONSE -[839 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40d7418c]Transaction completed. Sending COMPLETED -[83a 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40d7418c]Move state message COMPLETED -[83b 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40d7418c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[83c 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40d7418c]send state message COMPLETED -[83d 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40d7418c]Received message COMPLETED from shim -[83e 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40d7418c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[83f 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf]HandleMessage- COMPLETED. Notify -[840 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf, channelID:businesschannel -[841 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit -[842 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInsantiationPolicy.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -[843 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf channel id: businesschannel version: 1.0 -[844 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf,syscc=false,proposal=0xc421e23040,canname=mycc:1.0 -[845 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 -[846 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[847 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -[848 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40d7418c]Inside sendExecuteMessage. Message TRANSACTION -[849 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[84a 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[84b 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40d7418c]sendExecuteMsg trigger event TRANSACTION -[84c 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40d7418c]Move state message TRANSACTION -[84d 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40d7418c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[84e 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[84f 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40d7418c]sending state message TRANSACTION -[850 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40d7418c]Received message GET_STATE from shim -[851 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40d7418c]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[852 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [40d7418c]Received GET_STATE, invoking get state from ledger -[853 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[854 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40d7418c] getting state for chaincode mycc, key a, channel businesschannel -[855 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=a -[856 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40d7418c]Got state. Sending RESPONSE -[857 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [40d7418c]handleGetState serial send RESPONSE -[858 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40d7418c]Received message COMPLETED from shim -[859 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40d7418c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[85a 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf]HandleMessage- COMPLETED. Notify -[85b 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf, channelID:businesschannel -[85c 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[85d 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[85e 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[85f 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf] -[860 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[861 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf channel id: businesschannel chaincode id: name:"mycc" -[862 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -[863 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf channel id: businesschannel version: 1.1.0 -[864 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf,syscc=true,proposal=0xc421e23040,canname=escc:1.1.0 -[865 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[866 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[867 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[868 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40d7418c]Inside sendExecuteMessage. Message TRANSACTION -[869 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[86a 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[86b 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40d7418c]sendExecuteMsg trigger event TRANSACTION -[86c 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40d7418c]Move state message TRANSACTION -[86d 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40d7418c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[86e 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[86f 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40d7418c]sending state message TRANSACTION -[870 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40d7418c]Received message TRANSACTION from shim -[871 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40d7418c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[872 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [40d7418c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[873 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[874 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[875 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40d7418c]Transaction completed. Sending COMPLETED -[876 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40d7418c]Move state message COMPLETED -[877 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40d7418c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[878 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40d7418c]send state message COMPLETED -[879 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40d7418c]Received message COMPLETED from shim -[87a 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40d7418c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[87b 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf]HandleMessage- COMPLETED. Notify -[87c 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf, channelID:businesschannel -[87d 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[87e 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[87f 12-12 14:20:17.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[880 12-12 14:20:17.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [40d7418ce97787cb8a1553dfb718b8dda32cfda672488730a96954a234b957cf] -[881 12-12 14:20:17.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36766) -[882 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36770 -[883 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42290e630 -[884 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[885 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[886 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -[887 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[888 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[889 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4226cd0e0, header 0xc42290e660 -[88a 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[88b 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b -[88c 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b] -[88d 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[88e 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b] -[88f 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b channel id: businesschannel -[890 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b channel id: businesschannel version: 1.1.0 -[891 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b,syscc=true,proposal=0xc4226cd0e0,canname=lscc:1.1.0 -[892 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[893 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[894 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[895 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d33a5728]Inside sendExecuteMessage. Message TRANSACTION -[896 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[897 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[898 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d33a5728]sendExecuteMsg trigger event TRANSACTION -[899 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d33a5728]Move state message TRANSACTION -[89a 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d33a5728]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[89b 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[89c 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d33a5728]sending state message TRANSACTION -[89d 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d33a5728]Received message TRANSACTION from shim -[89e 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d33a5728]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[89f 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d33a5728]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[8a0 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [d33a5728]Sending GET_STATE -[8a1 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d33a5728]Received message GET_STATE from shim -[8a2 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d33a5728]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[8a3 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [d33a5728]Received GET_STATE, invoking get state from ledger -[8a4 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[8a5 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d33a5728] getting state for chaincode lscc, key mycc, channel businesschannel -[8a6 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[8a7 12-12 14:20:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d33a5728]Got state. Sending RESPONSE -[8a8 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d33a5728]handleGetState serial send RESPONSE -[8a9 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d33a5728]Received message RESPONSE from shim -[8aa 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d33a5728]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[8ab 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d33a5728]before send -[8ac 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d33a5728]after send -[8ad 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [d33a5728]Received RESPONSE, communicated (state:ready) -[8ae 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [d33a5728]GetState received payload RESPONSE -[8af 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d33a5728]Transaction completed. Sending COMPLETED -[8b0 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d33a5728]Move state message COMPLETED -[8b1 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d33a5728]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[8b2 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d33a5728]send state message COMPLETED -[8b3 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d33a5728]Received message COMPLETED from shim -[8b4 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d33a5728]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[8b5 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b]HandleMessage- COMPLETED. Notify -[8b6 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b, channelID:businesschannel -[8b7 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[8b8 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[8b9 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[8ba 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b] -[8bb 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[8bc 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b channel id: businesschannel chaincode id: name:"lscc" -[8bd 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[8be 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b channel id: businesschannel version: 1.1.0 -[8bf 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b,syscc=true,proposal=0xc4226cd0e0,canname=escc:1.1.0 -[8c0 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[8c1 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[8c2 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[8c3 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d33a5728]Inside sendExecuteMessage. Message TRANSACTION -[8c4 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[8c5 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[8c6 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d33a5728]sendExecuteMsg trigger event TRANSACTION -[8c7 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d33a5728]Move state message TRANSACTION -[8c8 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d33a5728]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[8c9 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[8ca 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d33a5728]sending state message TRANSACTION -[8cb 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d33a5728]Received message TRANSACTION from shim -[8cc 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d33a5728]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[8cd 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d33a5728]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[8ce 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[8cf 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[8d0 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d33a5728]Transaction completed. Sending COMPLETED -[8d1 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d33a5728]Move state message COMPLETED -[8d2 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d33a5728]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[8d3 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d33a5728]send state message COMPLETED -[8d4 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d33a5728]Received message COMPLETED from shim -[8d5 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d33a5728]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[8d6 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b]HandleMessage- COMPLETED. Notify -[8d7 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b, channelID:businesschannel -[8d8 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[8d9 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[8da 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[8db 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [d33a57283cd08ff2eca5caf9582895ce05cad275949f7c31f507dce8956e306b] -[8dc 12-12 14:20:18.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36770) -[8dd 12-12 14:20:18.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36772 -[8de 12-12 14:20:18.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422550bd0 -[8df 12-12 14:20:18.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[8e0 12-12 14:20:18.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[8e1 12-12 14:20:18.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -[8e2 12-12 14:20:18.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[8e3 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[8e4 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421e23a90, header 0xc422550c00 -[8e5 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[8e6 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6 -[8e7 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6] -[8e8 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[8e9 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6] -[8ea 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6 channel id: businesschannel -[8eb 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6 channel id: businesschannel version: 1.1.0 -[8ec 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6,syscc=true,proposal=0xc421e23a90,canname=lscc:1.1.0 -[8ed 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[8ee 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[8ef 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[8f0 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [161341c3]Inside sendExecuteMessage. Message TRANSACTION -[8f1 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[8f2 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[8f3 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [161341c3]sendExecuteMsg trigger event TRANSACTION -[8f4 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [161341c3]Move state message TRANSACTION -[8f5 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [161341c3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[8f6 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[8f7 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [161341c3]sending state message TRANSACTION -[8f8 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [161341c3]Received message TRANSACTION from shim -[8f9 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [161341c3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[8fa 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [161341c3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[8fb 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [161341c3]Sending GET_STATE -[8fc 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [161341c3]Received message GET_STATE from shim -[8fd 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [161341c3]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[8fe 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [161341c3]Received GET_STATE, invoking get state from ledger -[8ff 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[900 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [161341c3] getting state for chaincode lscc, key mycc, channel businesschannel -[901 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[902 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [161341c3]Got state. Sending RESPONSE -[903 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [161341c3]handleGetState serial send RESPONSE -[904 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [161341c3]Received message RESPONSE from shim -[905 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [161341c3]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[906 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [161341c3]before send -[907 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [161341c3]after send -[908 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [161341c3]Received RESPONSE, communicated (state:ready) -[909 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [161341c3]GetState received payload RESPONSE -[90a 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [161341c3]Transaction completed. Sending COMPLETED -[90b 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [161341c3]Move state message COMPLETED -[90c 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [161341c3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[90d 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [161341c3]send state message COMPLETED -[90e 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [161341c3]Received message COMPLETED from shim -[90f 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [161341c3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[910 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6]HandleMessage- COMPLETED. Notify -[911 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6, channelID:businesschannel -[912 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[913 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[914 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[915 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6] -[916 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[917 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6 channel id: businesschannel chaincode id: name:"lscc" -[918 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[919 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6 channel id: businesschannel version: 1.1.0 -[91a 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6,syscc=true,proposal=0xc421e23a90,canname=escc:1.1.0 -[91b 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[91c 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[91d 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[91e 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [161341c3]Inside sendExecuteMessage. Message TRANSACTION -[91f 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[920 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[921 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [161341c3]sendExecuteMsg trigger event TRANSACTION -[922 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [161341c3]Move state message TRANSACTION -[923 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [161341c3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[924 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[925 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [161341c3]sending state message TRANSACTION -[926 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [161341c3]Received message TRANSACTION from shim -[927 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [161341c3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[928 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [161341c3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[929 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[92a 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[92b 12-12 14:20:18.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [161341c3]Transaction completed. Sending COMPLETED -[92c 12-12 14:20:18.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [161341c3]Move state message COMPLETED -[92d 12-12 14:20:18.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [161341c3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[92e 12-12 14:20:18.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [161341c3]send state message COMPLETED -[92f 12-12 14:20:18.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [161341c3]Received message COMPLETED from shim -[930 12-12 14:20:18.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [161341c3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[931 12-12 14:20:18.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6]HandleMessage- COMPLETED. Notify -[932 12-12 14:20:18.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6, channelID:businesschannel -[933 12-12 14:20:18.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[934 12-12 14:20:18.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[935 12-12 14:20:18.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[936 12-12 14:20:18.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [161341c37f03a5cfb313996958fc4250b5cbf991c165eded2ad942d47008fbd6] -[937 12-12 14:20:18.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36772) -[938 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36774 -[939 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42290f530 -[93a 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[93b 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[93c 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -[93d 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[93e 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[93f 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4226cd400, header 0xc42290f560 -[940 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[941 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52 -[942 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52] -[943 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[944 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52] -[945 12-12 14:20:18.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52 channel id: businesschannel -[946 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52 channel id: businesschannel version: 1.1.0 -[947 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52,syscc=true,proposal=0xc4226cd400,canname=lscc:1.1.0 -[948 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[949 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[94a 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[94b 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [632f85f1]Inside sendExecuteMessage. Message TRANSACTION -[94c 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[94d 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[94e 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [632f85f1]sendExecuteMsg trigger event TRANSACTION -[94f 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632f85f1]Move state message TRANSACTION -[950 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632f85f1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[951 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[952 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632f85f1]sending state message TRANSACTION -[953 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632f85f1]Received message TRANSACTION from shim -[954 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [632f85f1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[955 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [632f85f1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[956 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [632f85f1]Sending GET_STATE -[957 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632f85f1]Received message GET_STATE from shim -[958 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632f85f1]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[959 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [632f85f1]Received GET_STATE, invoking get state from ledger -[95a 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[95b 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [632f85f1] getting state for chaincode lscc, key mycc, channel businesschannel -[95c 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[95d 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [632f85f1]Got state. Sending RESPONSE -[95e 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [632f85f1]handleGetState serial send RESPONSE -[95f 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632f85f1]Received message RESPONSE from shim -[960 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [632f85f1]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[961 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [632f85f1]before send -[962 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [632f85f1]after send -[964 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [632f85f1]GetState received payload RESPONSE -[965 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632f85f1]Transaction completed. Sending COMPLETED -[963 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [632f85f1]Received RESPONSE, communicated (state:ready) -[966 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632f85f1]Move state message COMPLETED -[967 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [632f85f1]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[968 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632f85f1]send state message COMPLETED -[969 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632f85f1]Received message COMPLETED from shim -[96a 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632f85f1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[96b 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52]HandleMessage- COMPLETED. Notify -[96c 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52, channelID:businesschannel -[96d 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[96e 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[96f 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[970 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52] -[971 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[972 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52 channel id: businesschannel chaincode id: name:"lscc" -[973 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[974 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52 channel id: businesschannel version: 1.1.0 -[975 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52,syscc=true,proposal=0xc4226cd400,canname=escc:1.1.0 -[976 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[977 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[978 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[979 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [632f85f1]Inside sendExecuteMessage. Message TRANSACTION -[97a 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[97b 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[97c 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [632f85f1]sendExecuteMsg trigger event TRANSACTION -[97d 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632f85f1]Move state message TRANSACTION -[97e 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632f85f1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[97f 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[980 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632f85f1]sending state message TRANSACTION -[981 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632f85f1]Received message TRANSACTION from shim -[982 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [632f85f1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[983 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [632f85f1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[984 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[985 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[986 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632f85f1]Transaction completed. Sending COMPLETED -[987 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632f85f1]Move state message COMPLETED -[988 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [632f85f1]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[989 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632f85f1]send state message COMPLETED -[98a 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632f85f1]Received message COMPLETED from shim -[98b 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632f85f1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[98c 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52]HandleMessage- COMPLETED. Notify -[98d 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52, channelID:businesschannel -[98e 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[98f 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[990 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[991 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [632f85f187ef0362798a86ec451515c278423fca9c20580bc00c9427653aee52] -[992 12-12 14:20:18.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36774) -[993 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36776 -[994 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422817680 -[995 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[996 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[997 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -[998 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[999 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[99a 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4226cddb0, header 0xc4228176b0 -[99b 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[99c 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb -[99d 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb] -[99e 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[99f 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb] -[9a0 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb channel id: businesschannel -[9a1 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb channel id: businesschannel version: 1.1.0 -[9a2 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb,syscc=true,proposal=0xc4226cddb0,canname=lscc:1.1.0 -[9a3 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[9a4 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[9a5 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[9a6 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ea3178a5]Inside sendExecuteMessage. Message TRANSACTION -[9a7 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[9a8 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[9a9 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ea3178a5]sendExecuteMsg trigger event TRANSACTION -[9aa 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ea3178a5]Move state message TRANSACTION -[9ab 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ea3178a5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[9ac 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[9ad 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ea3178a5]sending state message TRANSACTION -[9ae 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea3178a5]Received message TRANSACTION from shim -[9af 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ea3178a5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[9b0 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ea3178a5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[9b1 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea3178a5]Transaction completed. Sending COMPLETED -[9b2 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea3178a5]Move state message COMPLETED -[9b3 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ea3178a5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[9b4 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea3178a5]send state message COMPLETED -[9b5 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ea3178a5]Received message COMPLETED from shim -[9b6 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ea3178a5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[9b7 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb]HandleMessage- COMPLETED. Notify -[9b8 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb, channelID:businesschannel -[9b9 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[9ba 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[9bb 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[9bc 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb] -[9bd 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[9be 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb channel id: businesschannel chaincode id: name:"lscc" -[9bf 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[9c0 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb channel id: businesschannel version: 1.1.0 -[9c1 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb,syscc=true,proposal=0xc4226cddb0,canname=escc:1.1.0 -[9c2 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[9c3 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[9c4 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[9c5 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ea3178a5]Inside sendExecuteMessage. Message TRANSACTION -[9c6 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[9c7 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[9c8 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ea3178a5]sendExecuteMsg trigger event TRANSACTION -[9c9 12-12 14:20:18.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ea3178a5]Move state message TRANSACTION -[9ca 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ea3178a5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[9cb 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[9cc 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ea3178a5]sending state message TRANSACTION -[9cd 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea3178a5]Received message TRANSACTION from shim -[9ce 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ea3178a5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[9cf 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ea3178a5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[9d0 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[9d1 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[9d2 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea3178a5]Transaction completed. Sending COMPLETED -[9d3 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea3178a5]Move state message COMPLETED -[9d4 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ea3178a5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[9d5 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea3178a5]send state message COMPLETED -[9d6 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ea3178a5]Received message COMPLETED from shim -[9d7 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ea3178a5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[9d8 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb]HandleMessage- COMPLETED. Notify -[9d9 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb, channelID:businesschannel -[9da 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[9db 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[9dc 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[9dd 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [ea3178a5519e263354b51712b0f709f0510a0b534b4ef7aaedb846ccf9dc0adb] -[9de 12-12 14:20:18.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36776) -[9df 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36778 -[9e0 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4231dabd0 -[9e1 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[9e2 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[9e3 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -[9e4 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[9e5 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[9e6 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422800ff0, header 0xc4231dac00 -[9e7 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[9e8 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed -[9e9 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed] -[9ea 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[9eb 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed] -[9ec 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed channel id: businesschannel -[9ed 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed channel id: businesschannel version: 1.1.0 -[9ee 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed,syscc=true,proposal=0xc422800ff0,canname=lscc:1.1.0 -[9ef 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[9f0 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[9f1 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[9f2 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8355b50c]Inside sendExecuteMessage. Message TRANSACTION -[9f3 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[9f4 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[9f5 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8355b50c]sendExecuteMsg trigger event TRANSACTION -[9f6 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8355b50c]Move state message TRANSACTION -[9f7 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8355b50c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[9f8 12-12 14:20:18.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[9f9 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8355b50c]sending state message TRANSACTION -[9fa 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8355b50c]Received message TRANSACTION from shim -[9fb 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8355b50c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[9fc 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8355b50c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[9fd 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [8355b50c]Sending GET_STATE_BY_RANGE -[9fe 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8355b50c]Received message GET_STATE_BY_RANGE from shim -[9ff 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8355b50c]Fabric side Handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready -[a00 12-12 14:20:18.68 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 -[a01 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Exiting GET_STATE_BY_RANGE -[a03 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] GetStateRangeScanIterator.getStateRangeScanIterator.newResultsItr.GetStateRangeScanIterator.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}] -[a04 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] getQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result -[a05 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Got keys and values. Sending RESPONSE -[a06 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [8355b50c]handleGetStateByRange serial send RESPONSE -[a07 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8355b50c]Received message RESPONSE from shim -[a08 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8355b50c]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[a09 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [8355b50c]before send -[a0a 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [8355b50c]after send -[a0b 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [8355b50c]Received RESPONSE, communicated (state:ready) -[a02 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[a0c 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [8355b50c]Received RESPONSE. Successfully got range -[a0d 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [8355b50c]Sending QUERY_STATE_CLOSE -[a0e 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8355b50c]Received message QUERY_STATE_CLOSE from shim -[a0f 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8355b50c]Fabric side Handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready -[a10 12-12 14:20:18.68 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 -[a11 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Exiting QUERY_STATE_CLOSE -[a12 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[a13 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Closed. Sending RESPONSE -[a14 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [8355b50c]handleQueryStateClose serial send RESPONSE -[a15 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8355b50c]Received message RESPONSE from shim -[a16 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8355b50c]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[a17 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [8355b50c]before send -[a18 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [8355b50c]after send -[a19 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [8355b50c]Received RESPONSE, communicated (state:ready) -[a1a 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [8355b50c]Received RESPONSE. Successfully got range -[a1b 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8355b50c]Transaction completed. Sending COMPLETED -[a1c 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8355b50c]Move state message COMPLETED -[a1d 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8355b50c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[a1e 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8355b50c]send state message COMPLETED -[a1f 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8355b50c]Received message COMPLETED from shim -[a20 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8355b50c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[a21 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed]HandleMessage- COMPLETED. Notify -[a22 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed, channelID:businesschannel -[a23 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[a24 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[a25 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[a26 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed] -[a27 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[a28 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed channel id: businesschannel chaincode id: name:"lscc" -[a29 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[a2a 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed channel id: businesschannel version: 1.1.0 -[a2b 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed,syscc=true,proposal=0xc422800ff0,canname=escc:1.1.0 -[a2c 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[a2d 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[a2e 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[a2f 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8355b50c]Inside sendExecuteMessage. Message TRANSACTION -[a30 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[a31 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[a32 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8355b50c]sendExecuteMsg trigger event TRANSACTION -[a33 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8355b50c]Move state message TRANSACTION -[a34 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8355b50c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[a35 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[a36 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8355b50c]sending state message TRANSACTION -[a37 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8355b50c]Received message TRANSACTION from shim -[a38 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8355b50c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[a39 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8355b50c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[a3a 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[a3b 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[a3c 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8355b50c]Transaction completed. Sending COMPLETED -[a3d 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8355b50c]Move state message COMPLETED -[a3e 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8355b50c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[a3f 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8355b50c]send state message COMPLETED -[a40 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8355b50c]Received message COMPLETED from shim -[a41 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8355b50c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[a42 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed]HandleMessage- COMPLETED. Notify -[a43 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed, channelID:businesschannel -[a44 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[a45 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[a46 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[a47 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [8355b50c3310e9f3149176b76cca4ecb648f9ccd26ba04a562635da9e4b7d6ed] -[a48 12-12 14:20:18.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36778) -[a49 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36780 -[a4a 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4231c9440 -[a4b 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[a4c 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[a4d 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -[a4e 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[a4f 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[a50 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4228a94f0, header 0xc4231c9470 -[a51 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -[a52 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744 -[a53 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744] -[a54 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[a55 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744] -[a56 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744 channel id: businesschannel -[a57 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744 channel id: businesschannel version: 1.1.0 -[a58 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744,syscc=true,proposal=0xc4228a94f0,canname=qscc:1.1.0 -[a59 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 -[a5a 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[a5b 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -[a5c 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5f7b395b]Inside sendExecuteMessage. Message TRANSACTION -[a5d 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[a5e 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[a5f 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5f7b395b]sendExecuteMsg trigger event TRANSACTION -[a60 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f7b395b]Move state message TRANSACTION -[a61 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5f7b395b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[a62 12-12 14:20:18.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[a63 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f7b395b]sending state message TRANSACTION -[a64 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f7b395b]Received message TRANSACTION from shim -[a65 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f7b395b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[a66 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5f7b395b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[a67 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel -[a68 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f7b395b]Transaction completed. Sending COMPLETED -[a69 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f7b395b]Move state message COMPLETED -[a6a 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f7b395b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[a6b 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f7b395b]send state message COMPLETED -[a6c 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f7b395b]Received message COMPLETED from shim -[a6d 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5f7b395b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[a6e 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744]HandleMessage- COMPLETED. Notify -[a6f 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744, channelID:businesschannel -[a70 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[a71 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[a72 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[a73 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744] -[a74 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[a75 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744 channel id: businesschannel chaincode id: name:"qscc" -[a76 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc -[a77 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744 channel id: businesschannel version: 1.1.0 -[a78 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744,syscc=true,proposal=0xc4228a94f0,canname=escc:1.1.0 -[a79 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[a7a 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[a7b 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[a7c 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5f7b395b]Inside sendExecuteMessage. Message TRANSACTION -[a7d 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[a7e 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[a7f 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5f7b395b]sendExecuteMsg trigger event TRANSACTION -[a80 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f7b395b]Move state message TRANSACTION -[a81 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5f7b395b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[a82 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[a83 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f7b395b]sending state message TRANSACTION -[a84 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f7b395b]Received message TRANSACTION from shim -[a85 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f7b395b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[a86 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5f7b395b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[a87 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[a88 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[a89 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f7b395b]Transaction completed. Sending COMPLETED -[a8a 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f7b395b]Move state message COMPLETED -[a8b 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f7b395b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[a8c 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f7b395b]send state message COMPLETED -[a8d 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f7b395b]Received message COMPLETED from shim -[a8e 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5f7b395b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[a8f 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744]HandleMessage- COMPLETED. Notify -[a90 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744, channelID:businesschannel -[a91 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[a92 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[a93 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[a94 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [5f7b395b35cb4d8855595df4c6c281dcc74a7a197d4ab46f5350718f0eed7744] -[a95 12-12 14:20:18.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36780) -[a96 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36782 -[a97 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4231c9f20 -[a98 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[a99 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[a9a 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP e538235ae23e341d3ac02b80477985f279c2b6dd883fa9c06e2d40cd58c9970c} -[a9b 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[a9c 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[a9d 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4228a9720, header 0xc4231c9f50 -[a9e 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -[a9f 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e -[aa0 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e] -[aa1 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[aa2 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e] -[aa3 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e channel id: businesschannel -[aa4 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e channel id: businesschannel version: 1.1.0 -[aa5 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e,syscc=true,proposal=0xc4228a9720,canname=qscc:1.1.0 -[aa6 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 -[aa7 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[aa8 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -[aa9 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55c63c39]Inside sendExecuteMessage. Message TRANSACTION -[aaa 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[aab 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[aac 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55c63c39]sendExecuteMsg trigger event TRANSACTION -[aad 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55c63c39]Move state message TRANSACTION -[aae 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [55c63c39]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[aaf 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[ab0 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55c63c39]sending state message TRANSACTION -[ab1 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55c63c39]Received message TRANSACTION from shim -[ab2 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55c63c39]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[ab3 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [55c63c39]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[ab4 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel -[ab5 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -[ab6 12-12 14:20:19.08 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=[26079] -[ab7 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[29412], Going to peek [8] bytes -[ab8 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14006], placementInfo={fileNum=[0], startOffset=[26079], bytesOffset=[26081]} -[ab9 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55c63c39]Transaction completed. Sending COMPLETED -[aba 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55c63c39]Move state message COMPLETED -[abb 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55c63c39]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[abc 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55c63c39]send state message COMPLETED -[abd 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55c63c39]Received message COMPLETED from shim -[abe 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [55c63c39]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[abf 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e]HandleMessage- COMPLETED. Notify -[ac0 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e, channelID:businesschannel -[ac1 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[ac2 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[ac3 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[ac4 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e] -[ac5 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[ac6 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e channel id: businesschannel chaincode id: name:"qscc" -[ac7 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc -[ac8 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e channel id: businesschannel version: 1.1.0 -[ac9 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e,syscc=true,proposal=0xc4228a9720,canname=escc:1.1.0 -[aca 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[acb 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[acc 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[acd 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55c63c39]Inside sendExecuteMessage. Message TRANSACTION -[ace 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[acf 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[ad0 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55c63c39]sendExecuteMsg trigger event TRANSACTION -[ad1 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55c63c39]Move state message TRANSACTION -[ad2 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [55c63c39]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[ad3 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[ad4 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55c63c39]sending state message TRANSACTION -[ad5 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55c63c39]Received message TRANSACTION from shim -[ad6 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55c63c39]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[ad7 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [55c63c39]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[ad8 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[ad9 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[ada 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55c63c39]Transaction completed. Sending COMPLETED -[adb 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55c63c39]Move state message COMPLETED -[adc 12-12 14:20:19.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55c63c39]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[add 12-12 14:20:19.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55c63c39]send state message COMPLETED -[ade 12-12 14:20:19.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55c63c39]Received message COMPLETED from shim -[adf 12-12 14:20:19.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [55c63c39]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[ae0 12-12 14:20:19.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e]HandleMessage- COMPLETED. Notify -[ae1 12-12 14:20:19.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e, channelID:businesschannel -[ae2 12-12 14:20:19.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[ae3 12-12 14:20:19.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[ae4 12-12 14:20:19.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[ae5 12-12 14:20:19.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [55c63c39011bf7bb87f3fb643116d8b4cab6fa282374938b612b66e1d4e6f00e] -[ae6 12-12 14:20:19.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36782) -[ae7 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[ae8 12-12 14:20:19.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[ae9 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42333cba0 env 0xc4232fd230 txn 0 -[aea 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4232fd230 -[aeb 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\241\313\277\321\005\020\250\211\347\344\001\"\017businesschannel*@d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a:\010\022\006\022\004mycc" signature_header:"\n\236\006\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk\nEEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT\n6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB\n9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf\nZM8rwLlgV6XUeTLW\n-----END CERTIFICATE-----\n\022\030\322\371\2771\000\220_B\361\026\262\240y{\306\361\223D\301~\251G\266\034" -[aec 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[aed 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[aee 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP cec57e02e224c3efa1075c97d8c3172cd78fec768b3b75afcf280ac60a493411} -[aef 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[af0 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[af1 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4233a6800, header channel_header:"\010\003\032\014\010\241\313\277\321\005\020\250\211\347\344\001\"\017businesschannel*@d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a:\010\022\006\022\004mycc" signature_header:"\n\236\006\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQBHzVTQFVp5v6esGG/AFvpDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMTIwODQwMTFaFw0yNzEyMTAwODQwMTFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIQO+m6IslJ7SG2h/AWt6UpVGbIfH1+Xk\nEEASLvYz1wQLWh73jUmrDe0G7UhL5Ruymk3uH1+QVSKXsdU83GNs7qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgHTQcxsqYNJXT\n6OkLNFNsSeKkUn0DJP2LNDOYj2apJj0wCgYIKoZIzj0EAwIDRwAwRAIgMnoDLyvB\n9oNlJlVNXvdsqX/rr/aLgCblYRbct0L6WU8CIAwJidgqcpnVW74O34UbhAneqQCf\nZM8rwLlgV6XUeTLW\n-----END CERTIFICATE-----\n\022\030\322\371\2771\000\220_B\361\026\262\240y{\306\361\223D\301~\251G\266\034" -[af2 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[af3 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[af4 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[af5 12-12 14:20:19.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -[af6 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] -[af7 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -[af8 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4232fd230 envbytes 0xc4233a0400 -[af9 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [1eaa45b9-c0bf-4deb-b825-c5d447d71139] -[afa 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[afb 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [1eaa45b9-c0bf-4deb-b825-c5d447d71139] -[afc 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc4233a0400 -[afd 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[afe 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] -[aff 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=89edb4a0-dd73-465a-be72-b18060230d1c,syscc=true,proposal=0x0,canname=vscc:1.1.0 -[b00 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a chaindID businesschannel -[b01 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -[b02 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[b03 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -[b04 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [89edb4a0]Inside sendExecuteMessage. Message TRANSACTION -[b05 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[b06 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [89edb4a0]sendExecuteMsg trigger event TRANSACTION -[b07 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89edb4a0]Move state message TRANSACTION -[b08 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [89edb4a0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[b09 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[b0a 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89edb4a0]sending state message TRANSACTION -[b0b 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89edb4a0]Received message TRANSACTION from shim -[b0c 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [89edb4a0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[b0d 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [89edb4a0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[b0e 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[b0f 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[b10 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -[b11 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89edb4a0]Transaction completed. Sending COMPLETED -[b12 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89edb4a0]Move state message COMPLETED -[b13 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [89edb4a0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[b14 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89edb4a0]send state message COMPLETED -[b15 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89edb4a0]Received message COMPLETED from shim -[b16 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [89edb4a0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[b17 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [89edb4a0-dd73-465a-be72-b18060230d1c]HandleMessage- COMPLETED. Notify -[b18 12-12 14:20:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:89edb4a0-dd73-465a-be72-b18060230d1c, channelID:businesschannel -[b19 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[b1a 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] -[b1b 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc4233a0400 -[b1c 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4232fd230 envbytes 0xc4233a0400 -[b1e 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -[b1f 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[b20 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] -[b21 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[b22 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [6] -[b23 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[b24 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -[b25 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc -[b26 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -[b27 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=a -[b28 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -[b29 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=b -[b2a 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -[b2b 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] marked as valid by state validator -[b2c 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[b2d 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[b2e 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[b2f 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage -[b1d 12-12 14:20:19.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42333cba0 env 0xc4232fd230 txn 0 -[b30 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [6] -[b31 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x1b, 0x80, 0x67, 0xcc, 0xf8, 0xad, 0x90, 0xca, 0xc9, 0x3a, 0x94, 0x5b, 0x5c, 0x45, 0x7f, 0xc3, 0xbc, 0xd9, 0x89, 0x55, 0xf6, 0xf7, 0xb, 0x3d, 0x1f, 0x3b, 0xee, 0xd0, 0x48, 0xdd, 0x9e, 0xe0} txOffsets= -txId=d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a locPointer=offset=70, bytesLength=2907 +[83f 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50817, bytesLength=2913] for tx ID: [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] to index +[840 12-15 03:49:48.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50817, bytesLength=2913] for tx number:[0] ID: [522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e] to blockNumTranNum index +[841 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55524], isChainEmpty=[false], lastBlockNumber=[5] +[842 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 5 +[843 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 5 +[844 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) +[845 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database +[846 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +[847 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +[848 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +[849 12-15 03:49:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +[84a 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +[84b 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database +[84c 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +[84d 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +[84e 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +[84f 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 522aba04d61f2a66c75f6c9e06123f368c52c70034ad680b1f08230866e0f03e +[850 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +[851 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[852 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[853 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[854 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[855 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[856 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[857 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[858 12-15 03:49:48.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[859 12-15 03:49:54.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40946 +[85a 12-15 03:49:54.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42386f350 +[85b 12-15 03:49:54.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[85c 12-15 03:49:54.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[85d 12-15 03:49:54.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +[85e 12-15 03:49:54.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[85f 12-15 03:49:54.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[860 12-15 03:49:54.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4237c3c20, header 0xc42386f380 +[861 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" +[862 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad +[863 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad] +[864 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[865 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad] +[866 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad channel id: businesschannel +[867 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad,syscc=true,proposal=0xc4237c3c20,canname=lscc:1.1.0 +[868 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +[869 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry +[86a 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +[86b 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7072ae91]Inside sendExecuteMessage. Message TRANSACTION +[86c 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[86d 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[86e 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7072ae91]sendExecuteMsg trigger event TRANSACTION +[86f 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7072ae91]Move state message TRANSACTION +[870 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7072ae91]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[871 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[872 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7072ae91]sending state message TRANSACTION +[873 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7072ae91]Received message TRANSACTION from shim +[874 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7072ae91]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[875 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7072ae91]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[876 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7072ae91]Sending GET_STATE +[877 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7072ae91]Received message GET_STATE from shim +[878 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7072ae91]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[879 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7072ae91]Received GET_STATE, invoking get state from ledger +[87a 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[87b 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7072ae91] getting state for chaincode lscc, key mycc, channel businesschannel +[87c 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +[87d 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7072ae91]Got state. Sending RESPONSE +[87e 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7072ae91]handleGetState serial send RESPONSE +[87f 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7072ae91]Received message RESPONSE from shim +[880 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7072ae91]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[881 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7072ae91]before send +[882 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7072ae91]after send +[883 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [7072ae91]Received RESPONSE, communicated (state:ready) +[884 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7072ae91]GetState received payload RESPONSE +[885 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7072ae91]Transaction completed. Sending COMPLETED +[886 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7072ae91]Move state message COMPLETED +[887 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7072ae91]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[888 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7072ae91]send state message COMPLETED +[889 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7072ae91]Received message COMPLETED from shim +[88a 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7072ae91]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[88b 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad]HandleMessage- COMPLETED. Notify +[88c 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad, channelID:businesschannel +[88d 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit +[88e 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInsantiationPolicy.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +[88f 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad channel id: businesschannel version: 1.0 +[890 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad,syscc=false,proposal=0xc4237c3c20,canname=mycc:1.0 +[891 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 +[892 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[893 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +[894 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7072ae91]Inside sendExecuteMessage. Message TRANSACTION +[895 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[896 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[897 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7072ae91]sendExecuteMsg trigger event TRANSACTION +[898 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7072ae91]Move state message TRANSACTION +[899 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7072ae91]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[89a 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[89b 12-15 03:49:54.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7072ae91]sending state message TRANSACTION +[89c 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7072ae91]Received message GET_STATE from shim +[89d 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7072ae91]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[89e 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7072ae91]Received GET_STATE, invoking get state from ledger +[89f 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[8a0 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7072ae91] getting state for chaincode mycc, key a, channel businesschannel +[8a1 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=a +[8a2 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7072ae91]Got state. Sending RESPONSE +[8a3 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7072ae91]handleGetState serial send RESPONSE +[8a4 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7072ae91]Received message COMPLETED from shim +[8a5 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7072ae91]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[8a6 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad]HandleMessage- COMPLETED. Notify +[8a7 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad, channelID:businesschannel +[8a8 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[8a9 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[8aa 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[8ab 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad] +[8ac 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[8ad 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad channel id: businesschannel chaincode id: name:"mycc" +[8ae 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +[8af 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad channel id: businesschannel version: 1.1.0 +[8b0 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad,syscc=true,proposal=0xc4237c3c20,canname=escc:1.1.0 +[8b1 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[8b2 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[8b3 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[8b4 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7072ae91]Inside sendExecuteMessage. Message TRANSACTION +[8b5 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[8b6 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[8b7 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7072ae91]sendExecuteMsg trigger event TRANSACTION +[8b8 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7072ae91]Move state message TRANSACTION +[8b9 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7072ae91]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[8ba 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[8bb 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7072ae91]sending state message TRANSACTION +[8bc 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7072ae91]Received message TRANSACTION from shim +[8bd 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7072ae91]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[8be 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7072ae91]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[8bf 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[8c0 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[8c1 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7072ae91]Transaction completed. Sending COMPLETED +[8c2 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7072ae91]Move state message COMPLETED +[8c3 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7072ae91]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[8c4 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7072ae91]send state message COMPLETED +[8c5 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7072ae91]Received message COMPLETED from shim +[8c6 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7072ae91]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[8c7 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad]HandleMessage- COMPLETED. Notify +[8c8 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad, channelID:businesschannel +[8c9 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[8ca 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[8cb 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[8cc 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [7072ae91ea52cf2c8461886fa134b0a3486620651dc654ca27a458c8af5d3bad] +[8cd 12-15 03:49:54.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40946) +[8ce 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40950 +[8cf 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423aca810 +[8d0 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[8d1 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[8d2 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +[8d3 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[8d4 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[8d5 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423ac4410, header 0xc423aca840 +[8d6 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[8d7 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf +[8d8 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf] +[8d9 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[8da 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf] +[8db 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf channel id: businesschannel +[8dc 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf channel id: businesschannel version: 1.1.0 +[8dd 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf,syscc=true,proposal=0xc423ac4410,canname=lscc:1.1.0 +[8de 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +[8df 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[8e0 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +[8e1 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9714b463]Inside sendExecuteMessage. Message TRANSACTION +[8e2 12-15 03:49:55.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[8e3 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[8e4 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9714b463]sendExecuteMsg trigger event TRANSACTION +[8e5 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9714b463]Move state message TRANSACTION +[8e6 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9714b463]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[8e7 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[8e8 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9714b463]sending state message TRANSACTION +[8e9 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9714b463]Received message TRANSACTION from shim +[8ea 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9714b463]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[8eb 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9714b463]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[8ec 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [9714b463]Sending GET_STATE +[8ed 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9714b463]Received message GET_STATE from shim +[8ee 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9714b463]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[8ef 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [9714b463]Received GET_STATE, invoking get state from ledger +[8f0 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[8f1 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9714b463] getting state for chaincode lscc, key mycc, channel businesschannel +[8f2 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +[8f3 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9714b463]Got state. Sending RESPONSE +[8f4 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [9714b463]handleGetState serial send RESPONSE +[8f5 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9714b463]Received message RESPONSE from shim +[8f6 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9714b463]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[8f7 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [9714b463]before send +[8f8 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [9714b463]after send +[8f9 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [9714b463]Received RESPONSE, communicated (state:ready) +[8fa 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [9714b463]GetState received payload RESPONSE +[8fb 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9714b463]Transaction completed. Sending COMPLETED +[8fc 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9714b463]Move state message COMPLETED +[8fd 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9714b463]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[8fe 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9714b463]send state message COMPLETED +[8ff 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9714b463]Received message COMPLETED from shim +[900 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9714b463]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[901 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf]HandleMessage- COMPLETED. Notify +[902 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf, channelID:businesschannel +[903 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[904 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[905 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[906 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf] +[907 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[908 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf channel id: businesschannel chaincode id: name:"lscc" +[909 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[90a 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf channel id: businesschannel version: 1.1.0 +[90b 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf,syscc=true,proposal=0xc423ac4410,canname=escc:1.1.0 +[90c 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[90d 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[90e 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[90f 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9714b463]Inside sendExecuteMessage. Message TRANSACTION +[910 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[911 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[912 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9714b463]sendExecuteMsg trigger event TRANSACTION +[913 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9714b463]Move state message TRANSACTION +[914 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9714b463]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[915 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[916 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9714b463]sending state message TRANSACTION +[917 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9714b463]Received message TRANSACTION from shim +[918 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9714b463]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[919 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9714b463]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[91a 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[91b 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[91c 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9714b463]Transaction completed. Sending COMPLETED +[91d 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9714b463]Move state message COMPLETED +[91e 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9714b463]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[91f 12-15 03:49:55.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9714b463]send state message COMPLETED +[920 12-15 03:49:55.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9714b463]Received message COMPLETED from shim +[921 12-15 03:49:55.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9714b463]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[922 12-15 03:49:55.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf]HandleMessage- COMPLETED. Notify +[923 12-15 03:49:55.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf, channelID:businesschannel +[924 12-15 03:49:55.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[925 12-15 03:49:55.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[926 12-15 03:49:55.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[927 12-15 03:49:55.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [9714b463ecbb0677e38428aafd70e4596efef22576a71ef934ba24e4634c7acf] +[928 12-15 03:49:55.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40950) +[929 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40952 +[92a 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423a458f0 +[92b 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[92c 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[92d 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +[92e 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[92f 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[930 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4239319f0, header 0xc423a45920 +[931 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[932 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f +[933 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f] +[934 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[935 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f] +[936 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f channel id: businesschannel +[937 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f channel id: businesschannel version: 1.1.0 +[938 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f,syscc=true,proposal=0xc4239319f0,canname=lscc:1.1.0 +[939 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +[93a 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[93b 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +[93c 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3c6b9430]Inside sendExecuteMessage. Message TRANSACTION +[93d 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[93e 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[93f 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3c6b9430]sendExecuteMsg trigger event TRANSACTION +[940 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c6b9430]Move state message TRANSACTION +[941 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c6b9430]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[942 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[943 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c6b9430]sending state message TRANSACTION +[944 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c6b9430]Received message TRANSACTION from shim +[945 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3c6b9430]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[946 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3c6b9430]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[947 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [3c6b9430]Sending GET_STATE +[948 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c6b9430]Received message GET_STATE from shim +[949 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c6b9430]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[94a 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [3c6b9430]Received GET_STATE, invoking get state from ledger +[94b 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[94c 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3c6b9430] getting state for chaincode lscc, key mycc, channel businesschannel +[94d 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +[94e 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3c6b9430]Got state. Sending RESPONSE +[94f 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [3c6b9430]handleGetState serial send RESPONSE +[950 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c6b9430]Received message RESPONSE from shim +[951 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3c6b9430]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[952 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [3c6b9430]before send +[953 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [3c6b9430]after send +[954 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [3c6b9430]Received RESPONSE, communicated (state:ready) +[955 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [3c6b9430]GetState received payload RESPONSE +[956 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c6b9430]Transaction completed. Sending COMPLETED +[957 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c6b9430]Move state message COMPLETED +[958 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3c6b9430]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[959 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c6b9430]send state message COMPLETED +[95a 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c6b9430]Received message COMPLETED from shim +[95b 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c6b9430]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[95c 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f]HandleMessage- COMPLETED. Notify +[95d 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f, channelID:businesschannel +[95e 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[95f 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[960 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[961 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f] +[962 12-15 03:49:55.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[963 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f channel id: businesschannel chaincode id: name:"lscc" +[964 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[965 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f channel id: businesschannel version: 1.1.0 +[966 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f,syscc=true,proposal=0xc4239319f0,canname=escc:1.1.0 +[967 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[968 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[969 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[96a 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3c6b9430]Inside sendExecuteMessage. Message TRANSACTION +[96b 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[96c 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[96d 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3c6b9430]sendExecuteMsg trigger event TRANSACTION +[96e 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c6b9430]Move state message TRANSACTION +[96f 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c6b9430]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[970 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[971 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c6b9430]sending state message TRANSACTION +[972 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c6b9430]Received message TRANSACTION from shim +[973 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3c6b9430]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[974 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3c6b9430]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[975 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[976 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[977 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c6b9430]Transaction completed. Sending COMPLETED +[978 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c6b9430]Move state message COMPLETED +[979 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3c6b9430]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[97a 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c6b9430]send state message COMPLETED +[97b 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c6b9430]Received message COMPLETED from shim +[97c 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c6b9430]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[97d 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f]HandleMessage- COMPLETED. Notify +[97e 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f, channelID:businesschannel +[97f 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[980 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[981 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[982 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [3c6b94300c249693c6db52f2adde456a86d5145b48497b1106476379740bb57f] +[983 12-15 03:49:55.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40952) +[984 12-15 03:49:56.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40954 +[985 12-15 03:49:56.15 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423c1b830 +[986 12-15 03:49:56.15 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[987 12-15 03:49:56.15 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[988 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +[989 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[98a 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[98b 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423ac4dc0, header 0xc423c10870 +[98c 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[98d 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa +[98e 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa] +[98f 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[990 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa] +[991 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa channel id: businesschannel +[992 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa channel id: businesschannel version: 1.1.0 +[993 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa,syscc=true,proposal=0xc423ac4dc0,canname=lscc:1.1.0 +[994 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +[995 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[996 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +[997 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c62d38cb]Inside sendExecuteMessage. Message TRANSACTION +[998 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[999 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[99a 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c62d38cb]sendExecuteMsg trigger event TRANSACTION +[99b 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62d38cb]Move state message TRANSACTION +[99c 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62d38cb]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[99d 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[99e 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62d38cb]sending state message TRANSACTION +[99f 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62d38cb]Received message TRANSACTION from shim +[9a0 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c62d38cb]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[9a1 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c62d38cb]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[9a2 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c62d38cb]Sending GET_STATE +[9a3 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62d38cb]Received message GET_STATE from shim +[9a4 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62d38cb]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[9a5 12-15 03:49:56.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c62d38cb]Received GET_STATE, invoking get state from ledger +[9a7 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c62d38cb] getting state for chaincode lscc, key mycc, channel businesschannel +[9a8 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +[9a9 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c62d38cb]Got state. Sending RESPONSE +[9aa 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c62d38cb]handleGetState serial send RESPONSE +[9ab 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62d38cb]Received message RESPONSE from shim +[9ac 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c62d38cb]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[9ad 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c62d38cb]before send +[9ae 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c62d38cb]after send +[9af 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [c62d38cb]Received RESPONSE, communicated (state:ready) +[9b0 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c62d38cb]GetState received payload RESPONSE +[9b1 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62d38cb]Transaction completed. Sending COMPLETED +[9b2 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62d38cb]Move state message COMPLETED +[9b3 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c62d38cb]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[9b4 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62d38cb]send state message COMPLETED +[9a6 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[9b5 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62d38cb]Received message COMPLETED from shim +[9b6 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62d38cb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[9b7 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa]HandleMessage- COMPLETED. Notify +[9b8 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa, channelID:businesschannel +[9b9 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[9ba 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[9bb 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[9bc 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa] +[9bd 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[9be 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa channel id: businesschannel chaincode id: name:"lscc" +[9bf 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[9c0 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa channel id: businesschannel version: 1.1.0 +[9c1 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa,syscc=true,proposal=0xc423ac4dc0,canname=escc:1.1.0 +[9c2 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[9c3 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[9c4 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[9c5 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c62d38cb]Inside sendExecuteMessage. Message TRANSACTION +[9c6 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[9c7 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[9c8 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c62d38cb]sendExecuteMsg trigger event TRANSACTION +[9c9 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62d38cb]Move state message TRANSACTION +[9ca 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62d38cb]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[9cb 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[9cc 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62d38cb]sending state message TRANSACTION +[9cd 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62d38cb]Received message TRANSACTION from shim +[9ce 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c62d38cb]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[9cf 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c62d38cb]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[9d0 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[9d1 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[9d2 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62d38cb]Transaction completed. Sending COMPLETED +[9d3 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62d38cb]Move state message COMPLETED +[9d4 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c62d38cb]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[9d5 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62d38cb]send state message COMPLETED +[9d6 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62d38cb]Received message COMPLETED from shim +[9d7 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62d38cb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[9d8 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa]HandleMessage- COMPLETED. Notify +[9d9 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa, channelID:businesschannel +[9da 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[9db 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[9dc 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[9dd 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [c62d38cb05edf890ae3822a479cf880bf021c0431fd147daedcbf044c67d0bfa] +[9de 12-15 03:49:56.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40954) +[9df 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40956 +[9e0 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423cf4150 +[9e1 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[9e2 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[9e3 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +[9e4 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[9e5 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[9e6 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423ac5680, header 0xc423cf4180 +[9e7 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[9e8 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77 +[9e9 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77] +[9ea 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[9eb 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77] +[9ec 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77 channel id: businesschannel +[9ed 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77 channel id: businesschannel version: 1.1.0 +[9ee 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77,syscc=true,proposal=0xc423ac5680,canname=lscc:1.1.0 +[9ef 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +[9f0 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[9f1 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +[9f2 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d7461d93]Inside sendExecuteMessage. Message TRANSACTION +[9f3 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[9f4 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[9f5 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d7461d93]sendExecuteMsg trigger event TRANSACTION +[9f6 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7461d93]Move state message TRANSACTION +[9f7 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7461d93]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[9f8 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[9f9 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7461d93]sending state message TRANSACTION +[9fa 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7461d93]Received message TRANSACTION from shim +[9fb 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d7461d93]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[9fc 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d7461d93]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[9fd 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7461d93]Transaction completed. Sending COMPLETED +[9fe 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7461d93]Move state message COMPLETED +[9ff 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d7461d93]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[a00 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7461d93]send state message COMPLETED +[a01 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7461d93]Received message COMPLETED from shim +[a02 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7461d93]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[a03 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77]HandleMessage- COMPLETED. Notify +[a04 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77, channelID:businesschannel +[a05 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[a06 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[a07 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[a08 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77] +[a09 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[a0a 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77 channel id: businesschannel chaincode id: name:"lscc" +[a0b 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[a0c 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77 channel id: businesschannel version: 1.1.0 +[a0d 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77,syscc=true,proposal=0xc423ac5680,canname=escc:1.1.0 +[a0e 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[a0f 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[a10 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[a11 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d7461d93]Inside sendExecuteMessage. Message TRANSACTION +[a12 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[a13 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[a14 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d7461d93]sendExecuteMsg trigger event TRANSACTION +[a15 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7461d93]Move state message TRANSACTION +[a16 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7461d93]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[a17 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[a18 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7461d93]sending state message TRANSACTION +[a19 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7461d93]Received message TRANSACTION from shim +[a1a 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d7461d93]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[a1b 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d7461d93]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[a1c 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[a1d 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[a1e 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7461d93]Transaction completed. Sending COMPLETED +[a1f 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7461d93]Move state message COMPLETED +[a20 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d7461d93]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[a21 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7461d93]send state message COMPLETED +[a22 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7461d93]Received message COMPLETED from shim +[a23 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7461d93]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[a24 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77]HandleMessage- COMPLETED. Notify +[a25 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77, channelID:businesschannel +[a26 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[a27 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[a28 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[a29 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [d7461d93fb68eefcd7915ce4c68f93150d501dfe8401c4214bdfe02351f20c77] +[a2a 12-15 03:49:56.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40956) +[a2b 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40958 +[a2c 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423cf5680 +[a2d 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[a2e 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[a2f 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +[a30 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[a31 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[a32 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423ac5c20, header 0xc423cf56b0 +[a33 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[a34 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc +[a35 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc] +[a36 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[a37 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc] +[a38 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc channel id: businesschannel +[a39 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc channel id: businesschannel version: 1.1.0 +[a3a 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc,syscc=true,proposal=0xc423ac5c20,canname=lscc:1.1.0 +[a3b 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +[a3c 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[a3d 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +[a3e 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ef7f35d3]Inside sendExecuteMessage. Message TRANSACTION +[a3f 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[a40 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[a41 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ef7f35d3]sendExecuteMsg trigger event TRANSACTION +[a42 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef7f35d3]Move state message TRANSACTION +[a43 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ef7f35d3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[a44 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[a45 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef7f35d3]sending state message TRANSACTION +[a46 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef7f35d3]Received message TRANSACTION from shim +[a47 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ef7f35d3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[a48 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ef7f35d3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[a49 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [ef7f35d3]Sending GET_STATE_BY_RANGE +[a4a 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef7f35d3]Received message GET_STATE_BY_RANGE from shim +[a4b 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ef7f35d3]Fabric side Handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready +[a4c 12-15 03:49:56.53 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 +[a4d 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Exiting GET_STATE_BY_RANGE +[a4e 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[a4f 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] GetStateRangeScanIterator.getStateRangeScanIterator.newResultsItr.GetStateRangeScanIterator.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}] +[a50 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] getQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result +[a51 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Got keys and values. Sending RESPONSE +[a52 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ef7f35d3]handleGetStateByRange serial send RESPONSE +[a53 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef7f35d3]Received message RESPONSE from shim +[a54 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ef7f35d3]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[a55 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ef7f35d3]before send +[a56 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ef7f35d3]after send +[a57 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [ef7f35d3]Received RESPONSE, communicated (state:ready) +[a58 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [ef7f35d3]Received RESPONSE. Successfully got range +[a59 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [ef7f35d3]Sending QUERY_STATE_CLOSE +[a5a 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef7f35d3]Received message QUERY_STATE_CLOSE from shim +[a5b 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ef7f35d3]Fabric side Handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready +[a5c 12-15 03:49:56.53 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 +[a5d 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Exiting QUERY_STATE_CLOSE +[a5f 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[a5e 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Closed. Sending RESPONSE +[a60 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ef7f35d3]handleQueryStateClose serial send RESPONSE +[a61 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef7f35d3]Received message RESPONSE from shim +[a62 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ef7f35d3]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[a63 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ef7f35d3]before send +[a64 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ef7f35d3]after send +[a66 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [ef7f35d3]Received RESPONSE. Successfully got range +[a67 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef7f35d3]Transaction completed. Sending COMPLETED +[a65 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [ef7f35d3]Received RESPONSE, communicated (state:ready) +[a68 12-15 03:49:56.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef7f35d3]Move state message COMPLETED +[a69 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ef7f35d3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[a6a 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef7f35d3]send state message COMPLETED +[a6b 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef7f35d3]Received message COMPLETED from shim +[a6c 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ef7f35d3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[a6d 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc]HandleMessage- COMPLETED. Notify +[a6e 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc, channelID:businesschannel +[a6f 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[a70 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[a71 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[a72 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc] +[a73 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[a74 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc channel id: businesschannel chaincode id: name:"lscc" +[a75 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[a76 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc channel id: businesschannel version: 1.1.0 +[a77 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc,syscc=true,proposal=0xc423ac5c20,canname=escc:1.1.0 +[a78 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[a79 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[a7a 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[a7b 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ef7f35d3]Inside sendExecuteMessage. Message TRANSACTION +[a7c 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[a7d 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[a7e 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ef7f35d3]sendExecuteMsg trigger event TRANSACTION +[a7f 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef7f35d3]Move state message TRANSACTION +[a80 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ef7f35d3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[a81 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[a82 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef7f35d3]sending state message TRANSACTION +[a83 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef7f35d3]Received message TRANSACTION from shim +[a84 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ef7f35d3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[a85 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ef7f35d3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[a86 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[a87 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[a88 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef7f35d3]Transaction completed. Sending COMPLETED +[a89 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef7f35d3]Move state message COMPLETED +[a8a 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ef7f35d3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[a8b 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef7f35d3]send state message COMPLETED +[a8c 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef7f35d3]Received message COMPLETED from shim +[a8d 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ef7f35d3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[a8e 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc]HandleMessage- COMPLETED. Notify +[a8f 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc, channelID:businesschannel +[a90 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[a91 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[a92 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[a93 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [ef7f35d342c9f4a1b776dd99333cb570d4bda8fa7399f15adbb242a39d2f7acc] +[a94 12-15 03:49:56.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40958) +[a95 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] +[a96 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] +[a97 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +[a98 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +[a99 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc423e1c2a0 env 0xc423e1e240 txn 0 +[a9a 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423e1e240 +[a9b 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\342\214\315\321\005\020\260\211\363\247\002\"\017businesschannel*@397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv\nVLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7\nYoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2\n8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0\nN5+z/fTTfchGfLaCtzM=\n-----END CERTIFICATE-----\n\022\030 Gdw\361\301\302\000\t\355\326\265\210\224\222\212\001>\254\241\001\223[\016" +[a9c 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[a9d 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[a9e 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 73763341eb604cef734e4ac7c2ea77bc9d730c798fb96eb583c0637692a88acd} +[a9f 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[aa0 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[aa1 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc423e18800, header channel_header:"\010\003\032\014\010\342\214\315\321\005\020\260\211\363\247\002\"\017businesschannel*@397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAMKfbRA416p+fSaxQ5qP8jYwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDMzNTUxWhcNMjcxMjEzMDMzNTUx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABM/h/+DXxr2lM1VtPDwhlAyJVr4Xt+Kv\nVLSmeY+mX5/+802SPMpIxZKEf65jztasKBxGbOgABbeyx3oXGd7de8qjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICSqVyrJerF7\nYoXDKKeV2AX/6k6Ygz6eAP14KOef5mq7MAoGCCqGSM49BAMCA0gAMEUCIQD4IXK2\n8bAEsSenZeu+N/50k2bVjLPsMsJ3sE91ArlPxAIgXb2K28YOGALYFXsY/tGk+a/0\nN5+z/fTTfchGfLaCtzM=\n-----END CERTIFICATE-----\n\022\030 Gdw\361\301\302\000\t\355\326\265\210\224\222\212\001>\254\241\001\223[\016" +[aa2 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +[aa3 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +[aa4 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +[aa5 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +[aa6 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] +[aa7 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +[aa8 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc423e1e240 envbytes 0xc423e13800 +[aa9 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [1d033a95-848a-4ec6-a8a1-3b2386526f2c] +[aaa 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc +[aab 12-15 03:49:56.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [1d033a95-848a-4ec6-a8a1-3b2386526f2c] +[aac 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc423e13800 +[aad 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[aae 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] +[aaf 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=0c0fef1d-5d2a-4ee4-b33b-b5cbdd0ef5ed,syscc=true,proposal=0x0,canname=vscc:1.1.0 +[ab0 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a chaindID businesschannel +[ab1 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +[ab2 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[ab3 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +[ab4 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0c0fef1d]Inside sendExecuteMessage. Message TRANSACTION +[ab5 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[ab6 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0c0fef1d]sendExecuteMsg trigger event TRANSACTION +[ab7 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c0fef1d]Move state message TRANSACTION +[ab8 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0c0fef1d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[ab9 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[aba 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c0fef1d]sending state message TRANSACTION +[abb 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c0fef1d]Received message TRANSACTION from shim +[abc 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c0fef1d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[abd 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0c0fef1d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[abe 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +[abf 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +[ac0 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +[ac1 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c0fef1d]Transaction completed. Sending COMPLETED +[ac2 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c0fef1d]Move state message COMPLETED +[ac3 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c0fef1d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[ac4 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c0fef1d]send state message COMPLETED +[ac5 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c0fef1d]Received message COMPLETED from shim +[ac6 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0c0fef1d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[ac7 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0c0fef1d-5d2a-4ee4-b33b-b5cbdd0ef5ed]HandleMessage- COMPLETED. Notify +[ac8 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0c0fef1d-5d2a-4ee4-b33b-b5cbdd0ef5ed, channelID:businesschannel +[ac9 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[aca 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] +[acb 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc423e13800 +[acc 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc423e1e240 envbytes 0xc423e13800 +[acd 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc423e1c2a0 env 0xc423e1e240 txn 0 +[ace 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +[acf 12-15 03:49:56.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +[ad0 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] +[ad1 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[ad2 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [6] +[ad3 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +[ad4 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +[ad5 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=mycc +[ad6 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [mycc]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +[ad7 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=a +[ad8 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +[ad9 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=mycc, key=b +[ada 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +[adb 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] marked as valid by state validator +[adc 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +[add 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +[ade 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +[adf 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage +[ae0 12-15 03:49:56.76 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved private data for block [6] +[ae1 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xd4, 0x4a, 0x73, 0x70, 0x52, 0x32, 0xf1, 0x81, 0x20, 0x2c, 0xdf, 0x71, 0xd8, 0x60, 0x7d, 0x41, 0x3c, 0x56, 0x93, 0x63, 0xa7, 0x8a, 0xcb, 0xad, 0x39, 0xe1, 0x1d, 0xce, 0xe6, 0xca, 0x53, 0x6c} txOffsets= +txId=397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a locPointer=offset=70, bytesLength=2910 ] -[b32 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55561, bytesLength=2907] for tx ID: [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] to index -[b33 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55561, bytesLength=2907] for tx number:[0] ID: [d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a] to blockNumTranNum index -[b34 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60263], isChainEmpty=[false], lastBlockNumber=[6] -[b35 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 6 -[b36 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 6 -[b37 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) -[b38 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database -[b39 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[b3a 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -[b3b 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -[b3c 12-12 14:20:19.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -[b3d 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[b3e 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database -[b3f 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -[b40 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -[b41 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[b42 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: d7e1579b4d63c4e3280bf90834fb16a0b4bc73995792672b024d2843c987b36a -[b43 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[b44 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[b45 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[b46 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[b47 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[b48 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[b49 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[b4a 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[b4b 12-12 14:20:19.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[ae2 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55594, bytesLength=2910] for tx ID: [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] to index +[ae3 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55594, bytesLength=2910] for tx number:[0] ID: [397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a] to blockNumTranNum index +[ae4 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60300], isChainEmpty=[false], lastBlockNumber=[6] +[ae5 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 6 +[ae6 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 6 +[ae7 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) +[ae8 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database +[ae9 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +[aea 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +[aeb 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[mycca] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +[aec 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[myccb] key(bytes)=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +[aed 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +[aee 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database +[aef 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +[af0 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +[af1 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +[af2 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 397af471da29429dbe05d21caaba7dd4e31050d7a787062268db85857492800a +[af3 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +[af4 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[af5 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[af6 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[af7 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[af8 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[af9 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[afa 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[afb 12-15 03:49:56.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[afc 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40960 +[afd 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423eda0f0 +[afe 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[aff 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[b00 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +[b01 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[b02 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[b03 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423dbe820, header 0xc423eda120 +[b04 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[b05 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8 +[b06 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8] +[b07 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[b08 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8] +[b09 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8 channel id: businesschannel +[b0a 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8 channel id: businesschannel version: 1.1.0 +[b0b 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8,syscc=true,proposal=0xc423dbe820,canname=qscc:1.1.0 +[b0c 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[b0d 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[b0e 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[b0f 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [59edbfd8]Inside sendExecuteMessage. Message TRANSACTION +[b10 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[b11 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[b12 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [59edbfd8]sendExecuteMsg trigger event TRANSACTION +[b13 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59edbfd8]Move state message TRANSACTION +[b14 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59edbfd8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[b15 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[b16 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59edbfd8]sending state message TRANSACTION +[b17 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59edbfd8]Received message TRANSACTION from shim +[b18 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [59edbfd8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[b19 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [59edbfd8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[b1a 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[b1b 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59edbfd8]Transaction completed. Sending COMPLETED +[b1c 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59edbfd8]Move state message COMPLETED +[b1d 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [59edbfd8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[b1e 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59edbfd8]send state message COMPLETED +[b1f 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59edbfd8]Received message COMPLETED from shim +[b20 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59edbfd8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[b21 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8]HandleMessage- COMPLETED. Notify +[b22 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8, channelID:businesschannel +[b23 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[b24 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[b25 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[b26 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8] +[b27 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[b28 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8 channel id: businesschannel chaincode id: name:"qscc" +[b29 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[b2a 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8 channel id: businesschannel version: 1.1.0 +[b2b 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8,syscc=true,proposal=0xc423dbe820,canname=escc:1.1.0 +[b2c 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[b2d 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[b2e 12-15 03:49:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[b2f 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [59edbfd8]Inside sendExecuteMessage. Message TRANSACTION +[b30 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[b31 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[b32 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [59edbfd8]sendExecuteMsg trigger event TRANSACTION +[b33 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59edbfd8]Move state message TRANSACTION +[b34 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59edbfd8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[b35 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[b36 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59edbfd8]sending state message TRANSACTION +[b37 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59edbfd8]Received message TRANSACTION from shim +[b38 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [59edbfd8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[b39 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [59edbfd8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[b3a 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[b3b 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[b3c 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59edbfd8]Transaction completed. Sending COMPLETED +[b3d 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59edbfd8]Move state message COMPLETED +[b3e 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [59edbfd8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[b3f 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59edbfd8]send state message COMPLETED +[b40 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59edbfd8]Received message COMPLETED from shim +[b41 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59edbfd8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[b42 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8]HandleMessage- COMPLETED. Notify +[b43 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8, channelID:businesschannel +[b44 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[b45 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[b46 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[b47 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [59edbfd82a410ac9035042dd51e7f5d63b8bacb82353ede49d84e0145fb8b0a8] +[b48 12-15 03:49:57.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40960) +[b49 12-15 03:49:57.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.21.0.8:40962 +[b4a 12-15 03:49:57.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423ea8f90 +[b4b 12-15 03:49:57.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[b4c 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[b4d 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 7c3ced680b37ff14686939e66c39b45f11c71a9b30608d1b392215570285faa8} +[b4e 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[b4f 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[b50 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423eaa410, header 0xc423ea8fc0 +[b51 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[b52 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c +[b53 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c] +[b54 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[b55 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c] +[b56 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c channel id: businesschannel +[b57 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c channel id: businesschannel version: 1.1.0 +[b58 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c,syscc=true,proposal=0xc423eaa410,canname=qscc:1.1.0 +[b59 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[b5a 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[b5b 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[b5c 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [35da6821]Inside sendExecuteMessage. Message TRANSACTION +[b5d 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[b5e 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[b5f 12-15 03:49:57.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [35da6821]sendExecuteMsg trigger event TRANSACTION +[b60 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35da6821]Move state message TRANSACTION +[b61 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35da6821]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[b62 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[b63 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35da6821]sending state message TRANSACTION +[b64 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35da6821]Received message TRANSACTION from shim +[b65 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [35da6821]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[b66 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [35da6821]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[b67 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel +[b68 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +[b69 12-15 03:49:57.21 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=[26088] +[b6a 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34212], Going to peek [8] bytes +[b6b 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14018], placementInfo={fileNum=[0], startOffset=[26088], bytesOffset=[26090]} +[b6c 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35da6821]Transaction completed. Sending COMPLETED +[b6d 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35da6821]Move state message COMPLETED +[b6e 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [35da6821]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[b6f 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35da6821]send state message COMPLETED +[b70 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35da6821]Received message COMPLETED from shim +[b71 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35da6821]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[b72 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c]HandleMessage- COMPLETED. Notify +[b73 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c, channelID:businesschannel +[b74 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[b75 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[b76 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[b77 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c] +[b78 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[b79 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c channel id: businesschannel chaincode id: name:"qscc" +[b7a 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[b7b 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c channel id: businesschannel version: 1.1.0 +[b7c 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c,syscc=true,proposal=0xc423eaa410,canname=escc:1.1.0 +[b7d 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[b7e 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[b7f 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[b80 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [35da6821]Inside sendExecuteMessage. Message TRANSACTION +[b81 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[b82 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[b83 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [35da6821]sendExecuteMsg trigger event TRANSACTION +[b84 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35da6821]Move state message TRANSACTION +[b85 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35da6821]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[b86 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[b87 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35da6821]sending state message TRANSACTION +[b88 12-15 03:49:57.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35da6821]Received message TRANSACTION from shim +[b89 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [35da6821]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[b8a 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [35da6821]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[b8b 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[b8c 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[b8d 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35da6821]Transaction completed. Sending COMPLETED +[b8e 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35da6821]Move state message COMPLETED +[b8f 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [35da6821]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[b90 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35da6821]send state message COMPLETED +[b91 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35da6821]Received message COMPLETED from shim +[b92 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35da6821]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[b93 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c]HandleMessage- COMPLETED. Notify +[b94 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c, channelID:businesschannel +[b95 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[b96 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[b97 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[b98 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [35da68211f0de9683f0c57919bc1a7ce670adfbe52e6c28b60fdeb7157a39b0c] +[b99 12-15 03:49:57.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.21.0.8:40962) diff --git a/hyperledger_fabric/v1.0.5/Makefile b/hyperledger_fabric/v1.0.5/Makefile index 06f9c83f..99b0631f 100644 --- a/hyperledger_fabric/v1.0.5/Makefile +++ b/hyperledger_fabric/v1.0.5/Makefile @@ -8,12 +8,17 @@ NETWORK_INIT_WAIT=2 # time to wait the fabric network finish initialization COMPOSE_FILE ?= "docker-compose-2orgs-4peers-solo.yaml" +LOG_PATH ?= solo/logs + ifeq ($(HLF_MODE),kafka) COMPOSE_FILE="docker-compose-2orgs-4peers-kafka.yaml" + LOG_PATH=kafka/logs else ifeq ($(HLF_MODE),couchdb) COMPOSE_FILE="docker-compose-2orgs-4peers-couchdb.yaml" else ifeq ($(HLF_MODE),event) COMPOSE_FILE="docker-compose-2orgs-4peers-event.yaml" +else ifeq ($(HLF_MODE),be) + COMPOSE_FILE="docker-compose-2orgs-4peers-solo-be.yaml" else ifeq ($(HLF_MODE),dev) COMPOSE_FILE="docker-compose-1orgs-1peers-dev.yaml" endif @@ -34,7 +39,7 @@ ready: # create/join channel, install/instantiate cc make test_channel_create make test_channel_join - # make update_anchors + make update_anchors make test_cc_install make test_cc_instantiate @@ -123,6 +128,10 @@ setup: # setup the environment bash scripts/setup_env.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" + [ `which shellcheck` ] && shellcheck scripts/*.sh + clean: # clean up containers @echo "Clean all containers and fabric cc images" @-docker rm -f `docker ps -qa` @@ -153,25 +162,26 @@ logs: # show logs logs_check: logs_save logs_view logs_save: # save logs - docker logs peer0.org1.example.com >& /tmp/dev_peer0.log - docker logs orderer.example.com >& /tmp/dev_orderer.log - docker-compose -f ${COMPOSE_FILE} logs >& /tmp/dev_all.log + [ -d $(LOG_PATH) ] || mkdir -p $(LOG_PATH) + docker logs peer0.org1.example.com >& $(LOG_PATH)/dev_peer0.log + docker logs orderer.example.com >& $(LOG_PATH)/dev_orderer.log + docker-compose -f ${COMPOSE_FILE} logs >& $(LOG_PATH)/dev_all.log logs_view: # view logs - less /tmp/dev_peer.log + less $(LOG_PATH)/dev_peer.log gen_config: # generate config artifacts - if [ "$(HLF_MODE)" = "solo" ]; then \ - bash scripts/gen_config.sh solo; \ - else \ + if [ "$(HLF_MODE)" = "kafka" ]; then \ bash scripts/gen_config.sh kafka; \ + else \ + bash scripts/gen_config.sh solo; \ fi test_configtxlator: # Test change config using configtxlator - if [ "$(HLF_MODE)" = "solo" ]; then \ - bash scripts/test_configtxlator.sh solo; \ - else \ + if [ "$(HLF_MODE)" = "kafka" ]; then \ bash scripts/test_configtxlator.sh kafka; \ + else \ + bash scripts/test_configtxlator.sh solo; \ fi download: # download required images diff --git a/hyperledger_fabric/v1.0.5/base.yaml b/hyperledger_fabric/v1.0.5/base.yaml index e154d668..464b2535 100644 --- a/hyperledger_fabric/v1.0.5/base.yaml +++ b/hyperledger_fabric/v1.0.5/base.yaml @@ -20,23 +20,24 @@ services: #image: yeasy/hyperledger-fabric-orderer:1.0.5 image: hyperledger/fabric-orderer:x86_64-1.0.5 restart: always + # Default config can be found at https://github.com/hyperledger/fabric/blob/master/orderer/common/localconfig/config.go environment: - - ORDERER_GENERAL_LOGLEVEL=DEBUG + - ORDERER_GENERAL_LOGLEVEL=DEBUG # default: INFO - ORDERER_GENERAL_LOGFORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message} - - ORDERER_GENERAL_LISTENADDRESS=0.0.0.0 - - ORDERER_GENERAL_GENESISMETHOD=file + - ORDERER_GENERAL_LISTENADDRESS=0.0.0.0 # default: 127.0.0.1 + - ORDERER_GENERAL_GENESISMETHOD=file # default: provisional - ORDERER_GENERAL_GENESISFILE=/var/hyperledger/orderer/orderer.genesis.block - - ORDERER_GENERAL_LOCALMSPID=OrdererMSP + - ORDERER_GENERAL_LOCALMSPID=OrdererMSP # default: DEFAULT - ORDERER_GENERAL_LOCALMSPDIR=/var/hyperledger/orderer/msp - #- ORDERER_GENERAL_LEDGERTYPE=file - - ORDERER_GENERAL_LEDGERTYPE=json + - ORDERER_GENERAL_LEDGERTYPE=file + #- ORDERER_GENERAL_LEDGERTYPE=json # default: file - ORDERER_GENERAL_BATCHTIMEOUT=1s - ORDERER_GENERAL_MAXMESSAGECOUNT=10 - ORDERER_GENERAL_MAXWINDOWSIZE=1000 - ORDERER_GENERAL_LISTENPORT=7050 #- ORDERER_RAMLEDGER_HISTORY_SIZE=100 #only useful when use ram ledger # enabled TLS - - ORDERER_GENERAL_TLS_ENABLED=true + - ORDERER_GENERAL_TLS_ENABLED=true # default: false - ORDERER_GENERAL_TLS_PRIVATEKEY=/var/hyperledger/orderer/tls/server.key - ORDERER_GENERAL_TLS_CERTIFICATE=/var/hyperledger/orderer/tls/server.crt - ORDERER_GENERAL_TLS_ROOTCAS=[/var/hyperledger/orderer/tls/ca.crt] @@ -90,7 +91,6 @@ services: - CORE_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message} - CORE_PEER_TLS_ENABLED=true # to enable TLS, change to true - ORDERER_CA=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem - - APP_CHANNEL:="businesschannel" working_dir: /opt/gopath/src/github.com/hyperledger/fabric/peer command: bash -c 'cd /tmp; source scripts/func.sh; while true; do sleep 20170504; done' diff --git a/hyperledger_fabric/v1.0.5/docker-compose-2orgs-4peers-solo-be.yaml b/hyperledger_fabric/v1.0.5/docker-compose-2orgs-4peers-solo-be.yaml index 4de101c1..52cf630a 100644 --- a/hyperledger_fabric/v1.0.5/docker-compose-2orgs-4peers-solo-be.yaml +++ b/hyperledger_fabric/v1.0.5/docker-compose-2orgs-4peers-solo-be.yaml @@ -4,7 +4,7 @@ # * 1 orderer # * 4 peers in 2 orgs # * cli for testing -# * blockchain-explorer +# * blockchain-explorer listen on local port 8080 version: '2.0' diff --git a/hyperledger_fabric/v1.0.5/scripts/variables.sh b/hyperledger_fabric/v1.0.5/scripts/variables.sh index 67632a44..6dacccb7 100644 --- a/hyperledger_fabric/v1.0.5/scripts/variables.sh +++ b/hyperledger_fabric/v1.0.5/scripts/variables.sh @@ -53,14 +53,14 @@ CC_QUERY_ARGS='{"Args":["query","a"]}' # Generate configs APP_CHANNEL_TX=channel.tx ORDERER_GENESIS=orderer.genesis.block -GEN_IMG=yeasy/hyperledger-fabric:1.0.4 # working dir is `/go/src/github.com/hyperledger/fabric` +GEN_IMG=yeasy/hyperledger-fabric:1.0.5 # working dir is `/go/src/github.com/hyperledger/fabric` GEN_CONTAINER=generator FABRIC_CFG_PATH=/etc/hyperledger/fabric CHANNEL_ARTIFACTS=channel-artifacts CRYPTO_CONFIG=crypto-config # CONFIGTXLATOR -CTL_IMG=yeasy/hyperledger-fabric:1.0.4 +CTL_IMG=yeasy/hyperledger-fabric:1.0.5 CTL_CONTAINER=configtxlator CTL_BASE_URL=http://127.0.0.1:7059 CTL_ENCODE_URL=${CTL_BASE_URL}/protolator/encode diff --git a/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_0.block b/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_0.block index 7a4c102c..141188a6 100644 Binary files a/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_0.block and b/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_0.block differ diff --git a/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_0.block.json b/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_0.block.json index ae453b5b..479e5538 100644 --- a/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_0.block.json +++ b/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_0.block.json @@ -559,10 +559,10 @@ }, "signatures": [ { - "signature": "MEQCICZu9ZcgnYABjfUS4AUocqGytSoo8xm5MxvVGrYgg9ZSAiA7hqvERaGGIjsdvb98ib2KxP06/pO/S6k6lLkozf7eOA==", + "signature": "MEUCIQDISSswSWq+2eujybHXwlzbfX8B8PTFTKIqOLQDyG/s9QIgJpgP7NcdLbDKe3MjpxU1xjfax9D4WpmF/Fr3w+uw3bM=", "signature_header": { "creator": "CgdPcmcxTVNQEoAGLS0tLS1CRUdJTiAtLS0tLQpNSUlDR1RDQ0FjQ2dBd0lCQWdJUkFKMmZWcUdDMzJYQzVRcGdZc212WXhFd0NnWUlLb1pJemowRUF3SXdjekVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4R1RBWEJnTlZCQW9URUc5eVp6RXVaWGhoYlhCc1pTNWpiMjB4SERBYUJnTlZCQU1URTJOaApMbTl5WnpFdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qQXhNVE0xTnpFNVdoY05NamN4TVRJNU1UTTFOekU1CldqQmJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU4KVTJGdUlFWnlZVzVqYVhOamJ6RWZNQjBHQTFVRUF3d1dRV1J0YVc1QWIzSm5NUzVsZUdGdGNHeGxMbU52YlRCWgpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJHVXVSSHFReXdRUVFpd0J3L3B4NTFPekRxRnhPUHM1ClRuWm4vQm1NbFN4eDBUWTA4bHltWUxyYmdKVG5ablFFbTJGQmpLSWhYbllmaUt5SVNraEdmQStqVFRCTE1BNEcKQTFVZER3RUIvd1FFQXdJSGdEQU1CZ05WSFJNQkFmOEVBakFBTUNzR0ExVWRJd1FrTUNLQUlIbzQyZVBwMDE4aApkOFl0YlNpTnd5L0ZjcFIvcno1QkJUaTVvRVV1b2F2NE1Bb0dDQ3FHU000OUJBTUNBMGNBTUVRQ0lBS3d0RUJBCmZpVkpOaDFMWjlGUXZCWEFrYUlmaFpSY25tOTJWSVBEZzdjWUFpQVU3eE1KRzkwZURqMkJTSWliL1I3UU5rRngKemVrTFNVTEk5RzJVVVlBNzdBPT0KLS0tLS1FTkQgLS0tLS0K", - "nonce": "9LYlZJILJsKHphljGXkf/sPl9ZShT8qG" + "nonce": "WGkKqmdFErWZVqLd1+CZZJYQi50JzORP" } } ] @@ -570,36 +570,36 @@ "header": { "channel_header": { "channel_id": "businesschannel", - "timestamp": "2017-12-07T05:53:33.000Z", + "timestamp": "2017-12-14T09:34:39.000Z", "type": 2 }, "signature_header": { "creator": "CgdPcmcxTVNQEoAGLS0tLS1CRUdJTiAtLS0tLQpNSUlDR1RDQ0FjQ2dBd0lCQWdJUkFKMmZWcUdDMzJYQzVRcGdZc212WXhFd0NnWUlLb1pJemowRUF3SXdjekVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4R1RBWEJnTlZCQW9URUc5eVp6RXVaWGhoYlhCc1pTNWpiMjB4SERBYUJnTlZCQU1URTJOaApMbTl5WnpFdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qQXhNVE0xTnpFNVdoY05NamN4TVRJNU1UTTFOekU1CldqQmJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU4KVTJGdUlFWnlZVzVqYVhOamJ6RWZNQjBHQTFVRUF3d1dRV1J0YVc1QWIzSm5NUzVsZUdGdGNHeGxMbU52YlRCWgpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJHVXVSSHFReXdRUVFpd0J3L3B4NTFPekRxRnhPUHM1ClRuWm4vQm1NbFN4eDBUWTA4bHltWUxyYmdKVG5ablFFbTJGQmpLSWhYbllmaUt5SVNraEdmQStqVFRCTE1BNEcKQTFVZER3RUIvd1FFQXdJSGdEQU1CZ05WSFJNQkFmOEVBakFBTUNzR0ExVWRJd1FrTUNLQUlIbzQyZVBwMDE4aApkOFl0YlNpTnd5L0ZjcFIvcno1QkJUaTVvRVV1b2F2NE1Bb0dDQ3FHU000OUJBTUNBMGNBTUVRQ0lBS3d0RUJBCmZpVkpOaDFMWjlGUXZCWEFrYUlmaFpSY25tOTJWSVBEZzdjWUFpQVU3eE1KRzkwZURqMkJTSWliL1I3UU5rRngKemVrTFNVTEk5RzJVVVlBNzdBPT0KLS0tLS1FTkQgLS0tLS0K", - "nonce": "l5Qi1dlw5YpcOpGNMvcPnCFmiLNvLCaf" + "nonce": "GHtoBiklu+BvzswH9rdraOsVNz/bQW2a" } } }, - "signature": "MEQCIA4M5HzZ1UgqBsyHdXcv5qktNRezVFTEQlia7WfMMoEmAiBeymYcu15ERnRE74LEpJ8ktMQNxmzFD/XLmoUc3pHzZA==" + "signature": "MEUCIQCD2b2s35XIwmbgYGJPelIDa8MDpdpdhlfTnfHyNDyzUgIgFoa8i7ZIzErRqmm+eTKNDuQDKC60DLmYgNmduEInhTU=" } }, "header": { "channel_header": { "channel_id": "businesschannel", - "timestamp": "2017-12-07T05:53:33.000Z", + "timestamp": "2017-12-14T09:34:39.000Z", "type": 1 }, "signature_header": { "creator": "CgpPcmRlcmVyTVNQEvAFLS0tLS1CRUdJTiAtLS0tLQpNSUlDRFRDQ0FiT2dBd0lCQWdJUkFOTjlZdXZ0UFdtL2J4dEQ0QTB6UUMwd0NnWUlLb1pJemowRUF3SXdhVEVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdApjR3hsTG1OdmJUQWVGdzB4TnpFeU1ERXhNelUzTWpCYUZ3MHlOekV4TWpreE16VTNNakJhTUZneEN6QUpCZ05WCkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaGJtTnAKYzJOdk1Sd3dHZ1lEVlFRREV4TnZjbVJsY21WeUxtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSQpLb1pJemowREFRY0RRZ0FFb2FUYXdWbmI2d0lKR3YvTWtLWFd0RG02YzQ5a0V4YWg3VS9Vb2k4SjBJdFJFRUJMCmdWc1pYUVBtZUxjaEptRVFmQkplT2JDOERVSmk5aVdrZ213djRhTk5NRXN3RGdZRFZSMFBBUUgvQkFRREFnZUEKTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnRk1nWHZyVTJOVXByTGQ3enBic1ozV1VqY2ZSWApLaFQ3My9QWnNiQjZhaDR3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQVBiSVdvdkpqZEVWYlFlWmxyV2EzQytVCmlYbWtuSzlHSUU1cnVaazI4cC9OQWlCbWk3aFhUQlovZE8vR1RPbDhid2RBRWNqb1ZrdEpuMjlUbFpVVG9SaHYKVGc9PQotLS0tLUVORCAtLS0tLQo=", - "nonce": "ZirOeA5+JJSNM+f+2Iu43SGUZoOmUrrO" + "nonce": "YFIy9h1Mp7VV/hKux4UQbXCidFz2ddga" } } }, - "signature": "MEQCIDX9EZGzXLT+BpXZxDSLc1dJJAfsj+Q3f2Fu3h/W3JyGAiAjjiJ1Ib2Shv3nlgP/BxnULojvjquONtuGQN+l9oQ5KA==" + "signature": "MEUCIQC1bybaje9k2sn9Br9wb7LcuNGlzALyPJ2Gqfw/iHq9iwIgUhiN5uM/QLPtllvENVi4VCWCeiQrEDFfTBm0uMkq4lE=" } ] }, "header": { - "data_hash": "MuG+xv+hfx+ATlQs7usHoHUBKFMe/M8X07tqsLK6K+k=" + "data_hash": "dMlb9aG5xmRQKaz/5g8CvgrJIDMtXXVnYbva++3D2dA=" }, "metadata": { "metadata": [ diff --git a/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_0.block_payload.json b/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_0.block_payload.json index 41bef31b..5a8d1a9b 100644 --- a/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_0.block_payload.json +++ b/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_0.block_payload.json @@ -555,10 +555,10 @@ }, "signatures": [ { - "signature": "MEQCICZu9ZcgnYABjfUS4AUocqGytSoo8xm5MxvVGrYgg9ZSAiA7hqvERaGGIjsdvb98ib2KxP06/pO/S6k6lLkozf7eOA==", + "signature": "MEUCIQDISSswSWq+2eujybHXwlzbfX8B8PTFTKIqOLQDyG/s9QIgJpgP7NcdLbDKe3MjpxU1xjfax9D4WpmF/Fr3w+uw3bM=", "signature_header": { "creator": "CgdPcmcxTVNQEoAGLS0tLS1CRUdJTiAtLS0tLQpNSUlDR1RDQ0FjQ2dBd0lCQWdJUkFKMmZWcUdDMzJYQzVRcGdZc212WXhFd0NnWUlLb1pJemowRUF3SXdjekVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4R1RBWEJnTlZCQW9URUc5eVp6RXVaWGhoYlhCc1pTNWpiMjB4SERBYUJnTlZCQU1URTJOaApMbTl5WnpFdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qQXhNVE0xTnpFNVdoY05NamN4TVRJNU1UTTFOekU1CldqQmJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU4KVTJGdUlFWnlZVzVqYVhOamJ6RWZNQjBHQTFVRUF3d1dRV1J0YVc1QWIzSm5NUzVsZUdGdGNHeGxMbU52YlRCWgpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJHVXVSSHFReXdRUVFpd0J3L3B4NTFPekRxRnhPUHM1ClRuWm4vQm1NbFN4eDBUWTA4bHltWUxyYmdKVG5ablFFbTJGQmpLSWhYbllmaUt5SVNraEdmQStqVFRCTE1BNEcKQTFVZER3RUIvd1FFQXdJSGdEQU1CZ05WSFJNQkFmOEVBakFBTUNzR0ExVWRJd1FrTUNLQUlIbzQyZVBwMDE4aApkOFl0YlNpTnd5L0ZjcFIvcno1QkJUaTVvRVV1b2F2NE1Bb0dDQ3FHU000OUJBTUNBMGNBTUVRQ0lBS3d0RUJBCmZpVkpOaDFMWjlGUXZCWEFrYUlmaFpSY25tOTJWSVBEZzdjWUFpQVU3eE1KRzkwZURqMkJTSWliL1I3UU5rRngKemVrTFNVTEk5RzJVVVlBNzdBPT0KLS0tLS1FTkQgLS0tLS0K", - "nonce": "9LYlZJILJsKHphljGXkf/sPl9ZShT8qG" + "nonce": "WGkKqmdFErWZVqLd1+CZZJYQi50JzORP" } } ] @@ -566,27 +566,27 @@ "header": { "channel_header": { "channel_id": "businesschannel", - "timestamp": "2017-12-07T05:53:33.000Z", + "timestamp": "2017-12-14T09:34:39.000Z", "type": 2 }, "signature_header": { "creator": "CgdPcmcxTVNQEoAGLS0tLS1CRUdJTiAtLS0tLQpNSUlDR1RDQ0FjQ2dBd0lCQWdJUkFKMmZWcUdDMzJYQzVRcGdZc212WXhFd0NnWUlLb1pJemowRUF3SXdjekVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4R1RBWEJnTlZCQW9URUc5eVp6RXVaWGhoYlhCc1pTNWpiMjB4SERBYUJnTlZCQU1URTJOaApMbTl5WnpFdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qQXhNVE0xTnpFNVdoY05NamN4TVRJNU1UTTFOekU1CldqQmJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU4KVTJGdUlFWnlZVzVqYVhOamJ6RWZNQjBHQTFVRUF3d1dRV1J0YVc1QWIzSm5NUzVsZUdGdGNHeGxMbU52YlRCWgpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJHVXVSSHFReXdRUVFpd0J3L3B4NTFPekRxRnhPUHM1ClRuWm4vQm1NbFN4eDBUWTA4bHltWUxyYmdKVG5ablFFbTJGQmpLSWhYbllmaUt5SVNraEdmQStqVFRCTE1BNEcKQTFVZER3RUIvd1FFQXdJSGdEQU1CZ05WSFJNQkFmOEVBakFBTUNzR0ExVWRJd1FrTUNLQUlIbzQyZVBwMDE4aApkOFl0YlNpTnd5L0ZjcFIvcno1QkJUaTVvRVV1b2F2NE1Bb0dDQ3FHU000OUJBTUNBMGNBTUVRQ0lBS3d0RUJBCmZpVkpOaDFMWjlGUXZCWEFrYUlmaFpSY25tOTJWSVBEZzdjWUFpQVU3eE1KRzkwZURqMkJTSWliL1I3UU5rRngKemVrTFNVTEk5RzJVVVlBNzdBPT0KLS0tLS1FTkQgLS0tLS0K", - "nonce": "l5Qi1dlw5YpcOpGNMvcPnCFmiLNvLCaf" + "nonce": "GHtoBiklu+BvzswH9rdraOsVNz/bQW2a" } } }, - "signature": "MEQCIA4M5HzZ1UgqBsyHdXcv5qktNRezVFTEQlia7WfMMoEmAiBeymYcu15ERnRE74LEpJ8ktMQNxmzFD/XLmoUc3pHzZA==" + "signature": "MEUCIQCD2b2s35XIwmbgYGJPelIDa8MDpdpdhlfTnfHyNDyzUgIgFoa8i7ZIzErRqmm+eTKNDuQDKC60DLmYgNmduEInhTU=" } }, "header": { "channel_header": { "channel_id": "businesschannel", - "timestamp": "2017-12-07T05:53:33.000Z", + "timestamp": "2017-12-14T09:34:39.000Z", "type": 1 }, "signature_header": { "creator": "CgpPcmRlcmVyTVNQEvAFLS0tLS1CRUdJTiAtLS0tLQpNSUlDRFRDQ0FiT2dBd0lCQWdJUkFOTjlZdXZ0UFdtL2J4dEQ0QTB6UUMwd0NnWUlLb1pJemowRUF3SXdhVEVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdApjR3hsTG1OdmJUQWVGdzB4TnpFeU1ERXhNelUzTWpCYUZ3MHlOekV4TWpreE16VTNNakJhTUZneEN6QUpCZ05WCkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaGJtTnAKYzJOdk1Sd3dHZ1lEVlFRREV4TnZjbVJsY21WeUxtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSQpLb1pJemowREFRY0RRZ0FFb2FUYXdWbmI2d0lKR3YvTWtLWFd0RG02YzQ5a0V4YWg3VS9Vb2k4SjBJdFJFRUJMCmdWc1pYUVBtZUxjaEptRVFmQkplT2JDOERVSmk5aVdrZ213djRhTk5NRXN3RGdZRFZSMFBBUUgvQkFRREFnZUEKTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnRk1nWHZyVTJOVXByTGQ3enBic1ozV1VqY2ZSWApLaFQ3My9QWnNiQjZhaDR3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQVBiSVdvdkpqZEVWYlFlWmxyV2EzQytVCmlYbWtuSzlHSUU1cnVaazI4cC9OQWlCbWk3aFhUQlovZE8vR1RPbDhid2RBRWNqb1ZrdEpuMjlUbFpVVG9SaHYKVGc9PQotLS0tLUVORCAtLS0tLQo=", - "nonce": "ZirOeA5+JJSNM+f+2Iu43SGUZoOmUrrO" + "nonce": "YFIy9h1Mp7VV/hKux4UQbXCidFz2ddga" } } } diff --git a/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_1.block b/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_1.block index 6e86fb63..c454de1e 100644 Binary files a/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_1.block and b/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_1.block differ diff --git a/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_2.block b/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_2.block index d6c4c4e4..987a314e 100644 Binary files a/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_2.block and b/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_2.block differ diff --git a/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_3.block b/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_3.block index 64f0d9f3..810b586d 100644 Binary files a/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_3.block and b/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_3.block differ diff --git a/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_4.block b/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_4.block index 8884d6d1..6dc00de4 100644 Binary files a/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_4.block and b/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_4.block differ diff --git a/hyperledger_fabric/v1.0.5/solo/channel-artifacts/orderer.genesis.updated.block b/hyperledger_fabric/v1.0.5/solo/channel-artifacts/orderer.genesis.updated.block index 4944d567..e266d51e 100644 Binary files a/hyperledger_fabric/v1.0.5/solo/channel-artifacts/orderer.genesis.updated.block and b/hyperledger_fabric/v1.0.5/solo/channel-artifacts/orderer.genesis.updated.block differ diff --git a/hyperledger_fabric/v1.0.5/solo/channel-artifacts/testchainid_1.block b/hyperledger_fabric/v1.0.5/solo/channel-artifacts/testchainid_1.block index 546add08..e4c55c3b 100644 Binary files a/hyperledger_fabric/v1.0.5/solo/channel-artifacts/testchainid_1.block and b/hyperledger_fabric/v1.0.5/solo/channel-artifacts/testchainid_1.block differ diff --git a/hyperledger_fabric/v1.0.5/solo/logs/dev_all.log b/hyperledger_fabric/v1.0.5/solo/logs/dev_all.log index bfa9417c..fd10f93f 100644 --- a/hyperledger_fabric/v1.0.5/solo/logs/dev_all.log +++ b/hyperledger_fabric/v1.0.5/solo/logs/dev_all.log @@ -1,30 +1,13616 @@ -Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example.com, orderer.example.com, fabric-cli, peer0.org1.example.com -orderer.example.com | 2017-12-05 07:29:40.130 UTC [orderer/main] main -> INFO 001 Starting orderer: -orderer.example.com | Version: 1.0.4 +Attaching to explorer, peer1.org1.example.com, peer1.org2.example.com, orderer.example.com, fabric-cli, peer0.org2.example.com, peer0.org1.example.com, mysql +explorer | Please open Internet explorer to access :http://localhost:8080/ +explorer | error when connecting to db: { Error: connect ECONNREFUSED 172.21.0.2:3306 +explorer | at Object.exports._errnoException (util.js:1020:11) +explorer | at exports._exceptionWithHostPort (util.js:1043:20) +explorer | at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1090:14) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Protocol.handshake (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:52:23) +explorer | at Connection.connect (/blockchain-explorer/node_modules/mysql/lib/Connection.js:130:18) +explorer | at handleDisconnect (/blockchain-explorer/db/mysqlservice.js:39:16) +explorer | at Object. (/blockchain-explorer/db/mysqlservice.js:60:1) +explorer | at Module._compile (module.js:570:32) +explorer | at Object.Module._extensions..js (module.js:579:10) +explorer | at Module.load (module.js:487:32) +explorer | at tryModuleLoad (module.js:446:12) +explorer | at Function.Module._load (module.js:438:3) +explorer | code: 'ECONNREFUSED', +explorer | errno: 'ECONNREFUSED', +explorer | syscall: 'connect', +explorer | address: '172.21.0.2', +explorer | port: 3306, +explorer | fatal: true } +explorer | [2017-12-14 09:34:41.577] [ERROR] metricservice - { Error: Cannot enqueue Query after fatal error. +explorer | at Protocol._validateEnqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:201:16) +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:139:13) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:25:16) +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:64:31) +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 code: 'PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR', fatal: false } +explorer | [2017-12-14 09:34:41.583] [ERROR] blockscanner - { Error: Cannot enqueue Query after fatal error. +explorer | at Protocol._validateEnqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:201:16) +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:139:13) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:100:16) +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:32:9) +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:38:22) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) code: 'PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR', fatal: false } +explorer | [2017-12-14 09:34:41.803] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +explorer | [2017-12-14 09:34:41.805] [ERROR] Helper - admin enrollment failed +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: Cannot save null userContext. +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [Channel.js]: Failed Query channel info. Error: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:34:41.842] [ERROR] Query - Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:34:41.845] [ERROR] Query - Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:34:41.846] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +explorer | [2017-12-14 09:34:42.560] [ERROR] metricservice - { Error: Cannot enqueue Query after fatal error. +explorer | at Protocol._validateEnqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:201:16) +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:139:13) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:25:16) +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:64:31) +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 code: 'PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR', fatal: false } +explorer | error when connecting to db: { Error: connect ECONNREFUSED 172.21.0.2:3306 +explorer | at Object.exports._errnoException (util.js:1020:11) +explorer | at exports._exceptionWithHostPort (util.js:1043:20) +explorer | at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1090:14) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Protocol.handshake (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:52:23) +explorer | at Connection.connect (/blockchain-explorer/node_modules/mysql/lib/Connection.js:130:18) +explorer | at Timeout.handleDisconnect [as _onTimeout] (/blockchain-explorer/db/mysqlservice.js:39:16) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) +explorer | at Timer.listOnTimeout (timers.js:214:5) +mysql | Initializing database +explorer | code: 'ECONNREFUSED', +mysql | 2017-12-14T09:34:25.220280Z 0 [Note] Basedir set to /usr/ +explorer | errno: 'ECONNREFUSED', +explorer | syscall: 'connect', +mysql | 2017-12-14T09:34:25.220479Z 0 [Warning] The syntax '--symbolic-links/-s' is deprecated and will be removed in a future release +mysql | 2017-12-14T09:34:25.221793Z 0 [Warning] You need to use --log-bin to make --log-slave-updates work. +explorer | address: '172.21.0.2', +explorer | port: 3306, +mysql | libnuma: Warning: /sys not mounted or invalid. Assuming one node: No such file or directory +mysql | mbind: Operation not permitted +explorer | fatal: true } +explorer | [2017-12-14 09:34:42.863] [ERROR] blockscanner - { Error: Cannot enqueue Query after fatal error. +mysql | mbind: Operation not permitted +mysql | 2017-12-14T09:34:36.832691Z 0 [Warning] No existing UUID has been found, so we assume that this is the first time that this server has been started. Generating a new UUID: 0015ebe9-e0b2-11e7-a01a-0242ac150002. +explorer | at Protocol._validateEnqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:201:16) +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:139:13) +mysql | 2017-12-14T09:34:36.838255Z 0 [Warning] You have not provided a mandatory server-id. Servers in a replication topology must have unique server-ids. Please refer to the proper server start-up parameters documentation. +mysql | 2017-12-14T09:34:36.839770Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened. +mysql | 2017-12-14T09:34:36.849056Z 5 [Warning] root@localhost is created with an empty password ! Please consider switching off the --initialize-insecure option. +mysql | 2017-12-14T09:34:38.068128Z 5 [Warning] 'user' entry 'mysql.session@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:38.068251Z 5 [Warning] 'user' entry 'mysql.sys@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:38.068277Z 5 [Warning] 'user' entry 'root@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:38.068304Z 5 [Warning] 'db' entry 'performance_schema mysql.session@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:38.068315Z 5 [Warning] 'db' entry 'sys mysql.sys@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:38.068332Z 5 [Warning] 'proxies_priv' entry '@ root@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:38.068492Z 5 [Warning] 'tables_priv' entry 'user mysql.session@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:38.068506Z 5 [Warning] 'tables_priv' entry 'sys_config mysql.sys@localhost' ignored in --skip-name-resolve mode. +mysql | Database initialized +mysql | Initializing certificates +mysql | Generating a 2048 bit RSA private key +mysql | ...............................+++ +mysql | ..............................................................+++ +mysql | unable to write 'random state' +mysql | writing new private key to 'ca-key.pem' +mysql | ----- +mysql | Generating a 2048 bit RSA private key +mysql | ..+++ +mysql | ...+++ +mysql | unable to write 'random state' +mysql | writing new private key to 'server-key.pem' +mysql | ----- +mysql | Generating a 2048 bit RSA private key +mysql | .............................................+++ +mysql | ..................................................................................................................................+++ +mysql | unable to write 'random state' +mysql | writing new private key to 'client-key.pem' +mysql | ----- +mysql | Certificates initialized +mysql | MySQL init process in progress... +mysql | 2017-12-14T09:34:42.369622Z 0 [Note] Basedir set to /usr/ +mysql | 2017-12-14T09:34:42.370069Z 0 [Warning] The syntax '--symbolic-links/-s' is deprecated and will be removed in a future release +mysql | 2017-12-14T09:34:42.370173Z 0 [Note] --secure-file-priv is set to NULL. Operations related to importing and exporting data are disabled +mysql | 2017-12-14T09:34:42.370229Z 0 [Note] /usr/sbin/mysqld (mysqld 8.0.3-rc-log) starting as process 86 ... +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +mysql | 2017-12-14T09:34:42.373687Z 0 [Warning] No argument was provided to --log-bin, and --log-bin-index was not used; so replication may break when this MySQL server acts as a master and has his hostname changed!! Please use '--log-bin=mysql-bin' to avoid this problem. +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +mysql | 2017-12-14T09:34:42.379239Z 0 [Note] InnoDB: Using Linux native AIO +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +mysql | 2017-12-14T09:34:42.379634Z 0 [Note] Plugin 'FEDERATED' is disabled. +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:100:16) +mysql | 2017-12-14T09:34:42.383028Z 1 [Note] InnoDB: PUNCH HOLE support available +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:32:9) +mysql | 2017-12-14T09:34:42.383106Z 1 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins +mysql | 2017-12-14T09:34:42.383114Z 1 [Note] InnoDB: Uses event mutexes +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:38:22) +explorer | at ontimeout (timers.js:386:11) +mysql | 2017-12-14T09:34:42.383120Z 1 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier +explorer | at tryOnTimeout (timers.js:250:5) code: 'PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR', fatal: false } +mysql | 2017-12-14T09:34:42.383125Z 1 [Note] InnoDB: Compressed tables use zlib 1.2.11 +mysql | 2017-12-14T09:34:42.383568Z 1 [Note] InnoDB: Number of pools: 1 +mysql | 2017-12-14T09:34:42.383851Z 1 [Note] InnoDB: Using CPU crc32 instructions +explorer | [2017-12-14 09:34:42.982] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +mysql | 2017-12-14T09:34:42.385609Z 1 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M +mysql | libnuma: Warning: /sys not mounted or invalid. Assuming one node: No such file or directory +explorer | at emitOne (events.js:96:13) +mysql | mbind: Operation not permitted +explorer | at ClientRequest.emit (events.js:188:7) +mysql | mbind: Operation not permitted +mysql | 2017-12-14T09:34:42.395712Z 1 [Note] InnoDB: Completed initialization of buffer pool +mysql | 2017-12-14T09:34:42.397845Z 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority(). +mysql | 2017-12-14T09:34:42.410541Z 1 [Note] InnoDB: Using 'tablespaces.open.2' max LSN: 13792068 +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +mysql | 2017-12-14T09:34:42.414111Z 1 [Note] InnoDB: Applying a batch of 0 redo log records ... +explorer | [2017-12-14 09:34:42.982] [ERROR] Helper - admin enrollment failed +mysql | 2017-12-14T09:34:42.414254Z 1 [Note] InnoDB: Apply batch completed! +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 6): Error: Cannot save null userContext. +mysql | 2017-12-14T09:34:42.415443Z 1 [Note] InnoDB: Opened 2 existing undo tablespaces. +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +mysql | 2017-12-14T09:34:42.426151Z 1 [Note] InnoDB: Creating shared tablespace for temporary tables +mysql | 2017-12-14T09:34:42.426511Z 1 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ... +mysql | MySQL init process in progress... +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +mysql | 2017-12-14T09:34:43.318855Z 1 [Note] InnoDB: File './ibtmp1' size is now 12 MB. +explorer | error: [Channel.js]: Failed Query channel info. Error: Error: Connect Failed +mysql | 2017-12-14T09:34:43.322235Z 1 [Note] InnoDB: Created 128 and tracked 128 new rollback segment(s) in the temporary tablespace. 128 are now active. +mysql | 2017-12-14T09:34:43.322569Z 1 [Note] InnoDB: 8.0.3 started; log sequence number 15051310 +mysql | 2017-12-14T09:34:43.369551Z 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool +mysql | 2017-12-14T09:34:43.376465Z 0 [Note] InnoDB: Buffer pool(s) load completed at 171214 9:34:43 +mysql | 2017-12-14T09:34:43.388693Z 1 [Note] Found data dictionary with version 1 +mysql | 2017-12-14T09:34:43.419028Z 0 [Note] InnoDB: DDL log recovery : begin +mysql | 2017-12-14T09:34:43.419216Z 0 [Note] InnoDB: DDL log recovery : end +mysql | 2017-12-14T09:34:43.419358Z 0 [Note] InnoDB: Waiting for purge to start +mysql | 2017-12-14T09:34:43.475433Z 0 [Warning] You have not provided a mandatory server-id. Servers in a replication topology must have unique server-ids. Please refer to the proper server start-up parameters documentation. +mysql | 2017-12-14T09:34:43.479464Z 0 [Note] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them. +mysql | 2017-12-14T09:34:43.479909Z 0 [Warning] CA certificate ca.pem is self signed. +mysql | 2017-12-14T09:34:43.509354Z 0 [Warning] 'user' entry 'mysql.session@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:43.509755Z 0 [Warning] 'user' entry 'mysql.sys@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:43.509874Z 0 [Warning] 'user' entry 'root@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:43.510127Z 0 [Warning] 'db' entry 'performance_schema mysql.session@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:43.510185Z 0 [Warning] 'db' entry 'sys mysql.sys@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:43.510326Z 0 [Warning] 'proxies_priv' entry '@ root@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:43.530507Z 0 [Warning] 'tables_priv' entry 'user mysql.session@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:43.530903Z 0 [Warning] 'tables_priv' entry 'sys_config mysql.sys@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:43.547372Z 4 [Note] Event Scheduler: scheduler thread started with id 4 +mysql | 2017-12-14T09:34:43.547889Z 0 [Note] /usr/sbin/mysqld: ready for connections. Version: '8.0.3-rc-log' socket: '/var/run/mysqld/mysqld.sock' port: 0 MySQL Community Server (GPL) +mysql | Warning: Unable to load '/usr/share/zoneinfo/iso3166.tab' as time zone. Skipping it. +mysql | Warning: Unable to load '/usr/share/zoneinfo/leap-seconds.list' as time zone. Skipping it. +mysql | Warning: Unable to load '/usr/share/zoneinfo/zone.tab' as time zone. Skipping it. +mysql | 2017-12-14T09:34:49.722109Z 9 [Warning] 'user' entry 'mysql.sys@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:49.722153Z 9 [Warning] 'user' entry 'root@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:49.722185Z 9 [Warning] 'db' entry 'performance_schema mysql.session@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:49.722198Z 9 [Warning] 'db' entry 'sys mysql.sys@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:49.722218Z 9 [Warning] 'proxies_priv' entry '@ root@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:49.722540Z 9 [Warning] 'tables_priv' entry 'user mysql.session@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:49.722571Z 9 [Warning] 'tables_priv' entry 'sys_config mysql.sys@localhost' ignored in --skip-name-resolve mode. +mysql | mysql: [Warning] Using a password on the command line interface can be insecure. +mysql | +mysql | /usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/fabricexplorer.sql +mysql | mysql: [Warning] Using a password on the command line interface can be insecure. +mysql | +mysql | +mysql | 2017-12-14T09:34:49.975861Z 0 [Note] Giving 1 client threads a chance to die gracefully +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +mysql | 2017-12-14T09:34:49.975951Z 0 [Note] Shutting down slave threads +explorer | [2017-12-14 09:34:42.999] [ERROR] Query - Error: Connect Failed +mysql | 2017-12-14T09:34:49.984587Z 0 [Note] Event Scheduler: Killing the scheduler thread, thread id 4 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +mysql | 2017-12-14T09:34:49.984641Z 0 [Note] Event Scheduler: Waiting for the scheduler thread to reply +mysql | 2017-12-14T09:34:49.984958Z 0 [Note] Event Scheduler: Stopped +mysql | 2017-12-14T09:34:49.985004Z 0 [Note] Forcefully disconnecting 0 remaining clients +mysql | 2017-12-14T09:34:49.985014Z 0 [Note] Event Scheduler: Purging the queue. 0 events +mysql | 2017-12-14T09:34:49.986306Z 0 [Note] InnoDB: FTS optimize thread exiting. +mysql | 2017-12-14T09:34:50.088340Z 0 [Note] Binlog end +mysql | 2017-12-14T09:34:50.096040Z 0 [Note] Shutting down plugin 'ngram' +mysql | 2017-12-14T09:34:50.096583Z 0 [Note] Shutting down plugin 'BLACKHOLE' +mysql | 2017-12-14T09:34:50.096702Z 0 [Note] Shutting down plugin 'ARCHIVE' +mysql | 2017-12-14T09:34:50.096803Z 0 [Note] Shutting down plugin 'INNODB_CACHED_INDEXES' +mysql | 2017-12-14T09:34:50.096823Z 0 [Note] Shutting down plugin 'INNODB_VIRTUAL' +mysql | 2017-12-14T09:34:50.096843Z 0 [Note] Shutting down plugin 'INNODB_COLUMNS' +mysql | 2017-12-14T09:34:50.096937Z 0 [Note] Shutting down plugin 'INNODB_TABLESPACES' +mysql | 2017-12-14T09:34:50.096955Z 0 [Note] Shutting down plugin 'INNODB_INDEXES' +mysql | 2017-12-14T09:34:50.096972Z 0 [Note] Shutting down plugin 'INNODB_TABLESTATS' +mysql | 2017-12-14T09:34:50.096988Z 0 [Note] Shutting down plugin 'INNODB_TABLES' +mysql | 2017-12-14T09:34:50.097075Z 0 [Note] Shutting down plugin 'INNODB_FT_INDEX_TABLE' +mysql | 2017-12-14T09:34:50.097103Z 0 [Note] Shutting down plugin 'INNODB_FT_INDEX_CACHE' +mysql | 2017-12-14T09:34:50.097118Z 0 [Note] Shutting down plugin 'INNODB_FT_CONFIG' +mysql | 2017-12-14T09:34:50.097135Z 0 [Note] Shutting down plugin 'INNODB_FT_BEING_DELETED' +mysql | 2017-12-14T09:34:50.097150Z 0 [Note] Shutting down plugin 'INNODB_FT_DELETED' +mysql | 2017-12-14T09:34:50.097243Z 0 [Note] Shutting down plugin 'INNODB_FT_DEFAULT_STOPWORD' +mysql | 2017-12-14T09:34:50.097259Z 0 [Note] Shutting down plugin 'INNODB_METRICS' +mysql | 2017-12-14T09:34:50.097275Z 0 [Note] Shutting down plugin 'INNODB_TEMP_TABLE_INFO' +mysql | 2017-12-14T09:34:50.097290Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_POOL_STATS' +mysql | 2017-12-14T09:34:50.097398Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE_LRU' +mysql | 2017-12-14T09:34:50.097425Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE' +mysql | 2017-12-14T09:34:50.097441Z 0 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX_RESET' +mysql | 2017-12-14T09:34:50.097456Z 0 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX' +mysql | 2017-12-14T09:34:50.097471Z 0 [Note] Shutting down plugin 'INNODB_CMPMEM_RESET' +mysql | 2017-12-14T09:34:50.097576Z 0 [Note] Shutting down plugin 'INNODB_CMPMEM' +mysql | 2017-12-14T09:34:50.097592Z 0 [Note] Shutting down plugin 'INNODB_CMP_RESET' +mysql | 2017-12-14T09:34:50.097609Z 0 [Note] Shutting down plugin 'INNODB_CMP' +mysql | 2017-12-14T09:34:50.097624Z 0 [Note] Shutting down plugin 'INNODB_TRX' +mysql | 2017-12-14T09:34:50.097710Z 0 [Note] Shutting down plugin 'InnoDB' +mysql | 2017-12-14T09:34:50.097756Z 0 [Note] InnoDB: Starting shutdown... +mysql | 2017-12-14T09:34:50.198924Z 0 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysql/ib_buffer_pool +mysql | 2017-12-14T09:34:50.200829Z 0 [Note] InnoDB: Buffer pool(s) dump completed at 171214 9:34:50 +mysql | 2017-12-14T09:34:51.423102Z 0 [Note] InnoDB: Shutdown completed; log sequence number 26211581 +mysql | 2017-12-14T09:34:51.441280Z 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1" +mysql | 2017-12-14T09:34:51.441627Z 0 [Note] Shutting down plugin 'MRG_MYISAM' +mysql | 2017-12-14T09:34:51.441749Z 0 [Note] Shutting down plugin 'MyISAM' +mysql | 2017-12-14T09:34:51.442043Z 0 [Note] Shutting down plugin 'CSV' +mysql | 2017-12-14T09:34:51.442220Z 0 [Note] Shutting down plugin 'MEMORY' +explorer | [2017-12-14 09:34:42.999] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +mysql | 2017-12-14T09:34:51.442345Z 0 [Note] Shutting down plugin 'PERFORMANCE_SCHEMA' +mysql | 2017-12-14T09:34:51.442488Z 0 [Note] Shutting down plugin 'TempTable' +mysql | 2017-12-14T09:34:51.442586Z 0 [Note] Shutting down plugin 'sha2_cache_cleaner' +mysql | 2017-12-14T09:34:51.442607Z 0 [Note] Shutting down plugin 'caching_sha2_password' +mysql | 2017-12-14T09:34:51.443323Z 0 [Note] Shutting down plugin 'sha256_password' +mysql | 2017-12-14T09:34:51.443588Z 0 [Note] Shutting down plugin 'mysql_native_password' +mysql | 2017-12-14T09:34:51.444225Z 0 [Note] Shutting down plugin 'binlog' +mysql | 2017-12-14T09:34:51.454361Z 0 [Note] /usr/sbin/mysqld: Shutdown complete +mysql | +mysql | +mysql | MySQL init process done. Ready for start up. +mysql | +mysql | 2017-12-14T09:34:51.850821Z 0 [Note] Basedir set to /usr/ +mysql | 2017-12-14T09:34:51.850987Z 0 [Warning] The syntax '--symbolic-links/-s' is deprecated and will be removed in a future release +mysql | 2017-12-14T09:34:51.851041Z 0 [Note] --secure-file-priv is set to NULL. Operations related to importing and exporting data are disabled +mysql | 2017-12-14T09:34:51.851070Z 0 [Note] /usr/sbin/mysqld (mysqld 8.0.3-rc-log) starting as process 1 ... +mysql | 2017-12-14T09:34:51.853309Z 0 [Warning] No argument was provided to --log-bin, and --log-bin-index was not used; so replication may break when this MySQL server acts as a master and has his hostname changed!! Please use '--log-bin=mysql-bin' to avoid this problem. +mysql | 2017-12-14T09:34:51.859803Z 0 [Note] InnoDB: Using Linux native AIO +mysql | 2017-12-14T09:34:51.861466Z 0 [Note] Plugin 'FEDERATED' is disabled. +mysql | 2017-12-14T09:34:51.863095Z 1 [Note] InnoDB: PUNCH HOLE support available +mysql | 2017-12-14T09:34:51.863135Z 1 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins +mysql | 2017-12-14T09:34:51.863147Z 1 [Note] InnoDB: Uses event mutexes +mysql | 2017-12-14T09:34:51.863158Z 1 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier +mysql | 2017-12-14T09:34:51.863168Z 1 [Note] InnoDB: Compressed tables use zlib 1.2.11 +mysql | 2017-12-14T09:34:51.863989Z 1 [Note] InnoDB: Number of pools: 1 +mysql | 2017-12-14T09:34:51.864317Z 1 [Note] InnoDB: Using CPU crc32 instructions +mysql | 2017-12-14T09:34:51.865577Z 1 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M +mysql | libnuma: Warning: /sys not mounted or invalid. Assuming one node: No such file or directory +mysql | mbind: Operation not permitted +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +mysql | mbind: Operation not permitted +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +mysql | 2017-12-14T09:34:51.878445Z 1 [Note] InnoDB: Completed initialization of buffer pool +mysql | 2017-12-14T09:34:51.885288Z 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority(). +mysql | 2017-12-14T09:34:51.912276Z 1 [Note] InnoDB: Using 'tablespaces.open.2' max LSN: 26201255 +mysql | 2017-12-14T09:34:51.979538Z 1 [Note] InnoDB: Applying a batch of 0 redo log records ... +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +mysql | 2017-12-14T09:34:51.979582Z 1 [Note] InnoDB: Apply batch completed! +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +mysql | 2017-12-14T09:34:51.982835Z 1 [Note] InnoDB: Opened 2 existing undo tablespaces. +explorer | [2017-12-14 09:34:43.003] [ERROR] Query - Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +mysql | 2017-12-14T09:34:51.998664Z 1 [Note] InnoDB: Creating shared tablespace for temporary tables +explorer | [2017-12-14 09:34:43.562] [ERROR] metricservice - { Error: Cannot enqueue Query after fatal error. +mysql | 2017-12-14T09:34:51.998843Z 1 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ... +explorer | at Protocol._validateEnqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:201:16) +mysql | 2017-12-14T09:34:52.062008Z 1 [Note] InnoDB: File './ibtmp1' size is now 12 MB. +mysql | 2017-12-14T09:34:52.066570Z 1 [Note] InnoDB: Created 128 and tracked 128 new rollback segment(s) in the temporary tablespace. 128 are now active. +mysql | 2017-12-14T09:34:52.067028Z 1 [Note] InnoDB: 8.0.3 started; log sequence number 26211581 +mysql | 2017-12-14T09:34:52.170455Z 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool +mysql | 2017-12-14T09:34:52.188007Z 0 [Note] InnoDB: Buffer pool(s) load completed at 171214 9:34:52 +mysql | 2017-12-14T09:34:52.225055Z 1 [Note] Found data dictionary with version 1 +mysql | 2017-12-14T09:34:52.282296Z 0 [Note] InnoDB: DDL log recovery : begin +mysql | 2017-12-14T09:34:52.282704Z 0 [Note] InnoDB: DDL log recovery : end +mysql | 2017-12-14T09:34:52.283063Z 0 [Note] InnoDB: Waiting for purge to start +mysql | 2017-12-14T09:34:52.348315Z 0 [Warning] You have not provided a mandatory server-id. Servers in a replication topology must have unique server-ids. Please refer to the proper server start-up parameters documentation. +mysql | 2017-12-14T09:34:52.384446Z 0 [Note] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them. +mysql | 2017-12-14T09:34:52.384712Z 0 [Warning] CA certificate ca.pem is self signed. +mysql | 2017-12-14T09:34:52.386215Z 0 [Note] Server hostname (bind-address): '*'; port: 3306 +mysql | 2017-12-14T09:34:52.386274Z 0 [Note] IPv6 is available. +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:139:13) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +mysql | 2017-12-14T09:34:52.386294Z 0 [Note] - '::' resolves to '::'; +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +mysql | 2017-12-14T09:34:52.386338Z 0 [Note] Server socket created on IP: '::'. +mysql | 2017-12-14T09:34:52.405207Z 0 [Warning] 'user' entry 'mysql.sys@localhost' ignored in --skip-name-resolve mode. +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:25:16) +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:64:31) +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 code: 'PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR', fatal: false } +explorer | [2017-12-14 09:34:44.005] [ERROR] blockscanner - { Error: Cannot enqueue Query after fatal error. +mysql | 2017-12-14T09:34:52.405284Z 0 [Warning] 'user' entry 'root@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:52.405325Z 0 [Warning] 'db' entry 'performance_schema mysql.session@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:52.405352Z 0 [Warning] 'db' entry 'sys mysql.sys@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:52.405382Z 0 [Warning] 'proxies_priv' entry '@ root@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:52.409441Z 0 [Warning] 'tables_priv' entry 'user mysql.session@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:52.409483Z 0 [Warning] 'tables_priv' entry 'sys_config mysql.sys@localhost' ignored in --skip-name-resolve mode. +mysql | 2017-12-14T09:34:52.417945Z 0 [Note] /usr/sbin/mysqld: ready for connections. Version: '8.0.3-rc-log' socket: '/var/run/mysqld/mysqld.sock' port: 3306 MySQL Community Server (GPL) +mysql | 2017-12-14T09:34:52.418217Z 4 [Note] Event Scheduler: scheduler thread started with id 4 +explorer | at Protocol._validateEnqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:201:16) +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:139:13) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:100:16) +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:32:9) +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:38:22) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) code: 'PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR', fatal: false } +explorer | [2017-12-14 09:34:44.093] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +explorer | [2017-12-14 09:34:44.094] [ERROR] Helper - admin enrollment failed +explorer | [2017-12-14 09:34:44.096] [ERROR] Query - Error: Missing userContext parameter +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | [2017-12-14 09:34:44.096] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 11): Error: Cannot save null userContext. +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:34:44.113] [ERROR] Query - Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:34:44.563] [ERROR] metricservice - { Error: Cannot enqueue Query after fatal error. +explorer | at Protocol._validateEnqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:201:16) +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:139:13) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:25:16) +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:64:31) +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 code: 'PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR', fatal: false } +explorer | error when connecting to db: { Error: connect ECONNREFUSED 172.21.0.2:3306 +explorer | at Object.exports._errnoException (util.js:1020:11) +explorer | at exports._exceptionWithHostPort (util.js:1043:20) +explorer | at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1090:14) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Protocol.handshake (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:52:23) +explorer | at Connection.connect (/blockchain-explorer/node_modules/mysql/lib/Connection.js:130:18) +explorer | at Timeout.handleDisconnect [as _onTimeout] (/blockchain-explorer/db/mysqlservice.js:39:16) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) +explorer | at Timer.listOnTimeout (timers.js:214:5) +explorer | code: 'ECONNREFUSED', +explorer | errno: 'ECONNREFUSED', +explorer | syscall: 'connect', +explorer | address: '172.21.0.2', +explorer | port: 3306, +explorer | fatal: true } +explorer | [2017-12-14 09:34:45.101] [ERROR] blockscanner - { Error: Cannot enqueue Query after fatal error. +explorer | at Protocol._validateEnqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:201:16) +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:139:13) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:100:16) +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:32:9) +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:38:22) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) code: 'PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR', fatal: false } +explorer | [2017-12-14 09:34:45.212] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +explorer | [2017-12-14 09:34:45.212] [ERROR] Helper - admin enrollment failed +explorer | [2017-12-14 09:34:45.212] [ERROR] Query - Error: Missing userContext parameter +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | [2017-12-14 09:34:45.213] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 14): Error: Cannot save null userContext. +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:34:45.235] [ERROR] Query - Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:34:45.564] [ERROR] metricservice - { Error: Cannot enqueue Query after fatal error. +explorer | at Protocol._validateEnqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:201:16) +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:139:13) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:25:16) +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:64:31) +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 code: 'PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR', fatal: false } +explorer | [2017-12-14 09:34:46.221] [ERROR] blockscanner - { Error: Cannot enqueue Query after fatal error. +explorer | at Protocol._validateEnqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:201:16) +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:139:13) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:100:16) +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:32:9) +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:38:22) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) code: 'PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR', fatal: false } +explorer | [2017-12-14 09:34:46.373] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +explorer | [2017-12-14 09:34:46.373] [ERROR] Helper - admin enrollment failed +explorer | [2017-12-14 09:34:46.374] [ERROR] Query - Error: Missing userContext parameter +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | [2017-12-14 09:34:46.375] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 17): Error: Cannot save null userContext. +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:34:46.418] [ERROR] Query - Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:34:46.564] [ERROR] metricservice - { Error: Cannot enqueue Query after fatal error. +explorer | at Protocol._validateEnqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:201:16) +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:139:13) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:25:16) +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:64:31) +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 code: 'PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR', fatal: false } +explorer | error when connecting to db: { Error: connect ECONNREFUSED 172.21.0.2:3306 +explorer | at Object.exports._errnoException (util.js:1020:11) +explorer | at exports._exceptionWithHostPort (util.js:1043:20) +explorer | at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1090:14) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Protocol.handshake (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:52:23) +explorer | at Connection.connect (/blockchain-explorer/node_modules/mysql/lib/Connection.js:130:18) +explorer | at Timeout.handleDisconnect [as _onTimeout] (/blockchain-explorer/db/mysqlservice.js:39:16) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) +explorer | at Timer.listOnTimeout (timers.js:214:5) +explorer | code: 'ECONNREFUSED', +explorer | errno: 'ECONNREFUSED', +explorer | syscall: 'connect', +explorer | address: '172.21.0.2', +explorer | port: 3306, +explorer | fatal: true } +explorer | [2017-12-14 09:34:47.383] [ERROR] blockscanner - { Error: Cannot enqueue Query after fatal error. +explorer | at Protocol._validateEnqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:201:16) +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:139:13) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:100:16) +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:32:9) +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:38:22) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) code: 'PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR', fatal: false } +explorer | [2017-12-14 09:34:47.552] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +explorer | [2017-12-14 09:34:47.555] [ERROR] Helper - admin enrollment failed +explorer | [2017-12-14 09:34:47.558] [ERROR] Query - Error: Missing userContext parameter +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | [2017-12-14 09:34:47.559] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 20): Error: Cannot save null userContext. +explorer | [2017-12-14 09:34:47.567] [ERROR] metricservice - { Error: Cannot enqueue Query after fatal error. +explorer | at Protocol._validateEnqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:201:16) +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:139:13) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:25:16) +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:64:31) +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 code: 'PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR', fatal: false } +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:34:47.641] [ERROR] Query - Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:34:48.569] [ERROR] blockscanner - { Error: Cannot enqueue Query after fatal error. +explorer | at Protocol._validateEnqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:201:16) +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:139:13) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:100:16) +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:32:9) +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:38:22) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) code: 'PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR', fatal: false } +explorer | [2017-12-14 09:34:48.571] [ERROR] metricservice - { Error: Cannot enqueue Query after fatal error. +explorer | at Protocol._validateEnqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:201:16) +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:139:13) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:25:16) +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:64:31) +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 code: 'PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR', fatal: false } +explorer | [2017-12-14 09:34:48.636] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +explorer | [2017-12-14 09:34:48.636] [ERROR] Helper - admin enrollment failed +explorer | [2017-12-14 09:34:48.637] [ERROR] Query - Error: Missing userContext parameter +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | [2017-12-14 09:34:48.637] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 23): Error: Cannot save null userContext. +explorer | error when connecting to db: { Error: connect ECONNREFUSED 172.21.0.2:3306 +explorer | at Object.exports._errnoException (util.js:1020:11) +explorer | at exports._exceptionWithHostPort (util.js:1043:20) +explorer | at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1090:14) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Protocol.handshake (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:52:23) +explorer | at Connection.connect (/blockchain-explorer/node_modules/mysql/lib/Connection.js:130:18) +explorer | at Timeout.handleDisconnect [as _onTimeout] (/blockchain-explorer/db/mysqlservice.js:39:16) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) +explorer | at Timer.listOnTimeout (timers.js:214:5) +explorer | code: 'ECONNREFUSED', +explorer | errno: 'ECONNREFUSED', +explorer | syscall: 'connect', +explorer | address: '172.21.0.2', +explorer | port: 3306, +explorer | fatal: true } +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:34:48.663] [ERROR] Query - Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:34:49.572] [ERROR] metricservice - { Error: Cannot enqueue Query after fatal error. +explorer | at Protocol._validateEnqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:201:16) +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:139:13) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:25:16) +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:64:31) +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 code: 'PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR', fatal: false } +explorer | [2017-12-14 09:34:49.645] [ERROR] blockscanner - { Error: Cannot enqueue Query after fatal error. +explorer | at Protocol._validateEnqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:201:16) +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:139:13) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:100:16) +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:32:9) +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:38:22) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) code: 'PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR', fatal: false } +explorer | [2017-12-14 09:34:49.799] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +explorer | [2017-12-14 09:34:49.804] [ERROR] Helper - admin enrollment failed +explorer | [2017-12-14 09:34:49.806] [ERROR] Query - Error: Missing userContext parameter +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | [2017-12-14 09:34:49.807] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 26): Error: Cannot save null userContext. +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:34:49.844] [ERROR] Query - Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:34:50.574] [ERROR] metricservice - { Error: Cannot enqueue Query after fatal error. +explorer | at Protocol._validateEnqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:201:16) +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:139:13) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:25:16) +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:64:31) +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 code: 'PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR', fatal: false } +explorer | error when connecting to db: { Error: connect ECONNREFUSED 172.21.0.2:3306 +explorer | at Object.exports._errnoException (util.js:1020:11) +explorer | at exports._exceptionWithHostPort (util.js:1043:20) +explorer | at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1090:14) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Protocol.handshake (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:52:23) +explorer | at Connection.connect (/blockchain-explorer/node_modules/mysql/lib/Connection.js:130:18) +explorer | at Timeout.handleDisconnect [as _onTimeout] (/blockchain-explorer/db/mysqlservice.js:39:16) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) +explorer | at Timer.listOnTimeout (timers.js:214:5) +explorer | code: 'ECONNREFUSED', +explorer | errno: 'ECONNREFUSED', +explorer | syscall: 'connect', +explorer | address: '172.21.0.2', +explorer | port: 3306, +explorer | fatal: true } +explorer | [2017-12-14 09:34:50.817] [ERROR] blockscanner - { Error: Cannot enqueue Query after fatal error. +explorer | at Protocol._validateEnqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:201:16) +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:139:13) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:100:16) +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:32:9) +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:38:22) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) code: 'PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR', fatal: false } +explorer | [2017-12-14 09:34:50.941] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +explorer | [2017-12-14 09:34:50.942] [ERROR] Helper - admin enrollment failed +explorer | [2017-12-14 09:34:50.943] [ERROR] Query - Error: Missing userContext parameter +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | [2017-12-14 09:34:50.944] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 29): Error: Cannot save null userContext. +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:34:50.974] [ERROR] Query - Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:34:51.575] [ERROR] metricservice - { Error: Cannot enqueue Query after fatal error. +explorer | at Protocol._validateEnqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:201:16) +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:139:13) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:25:16) +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:64:31) +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 code: 'PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR', fatal: false } +explorer | [2017-12-14 09:34:51.957] [ERROR] blockscanner - { Error: Cannot enqueue Query after fatal error. +explorer | at Protocol._validateEnqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:201:16) +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:139:13) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:100:16) +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:32:9) +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:38:22) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) code: 'PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR', fatal: false } +explorer | [2017-12-14 09:34:52.084] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +explorer | [2017-12-14 09:34:52.085] [ERROR] Helper - admin enrollment failed +explorer | [2017-12-14 09:34:52.086] [ERROR] Query - Error: Missing userContext parameter +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | [2017-12-14 09:34:52.086] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 32): Error: Cannot save null userContext. +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:34:52.103] [ERROR] Query - Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:34:52.576] [ERROR] metricservice - { Error: Cannot enqueue Query after fatal error. +explorer | at Protocol._validateEnqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:201:16) +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:139:13) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:25:16) +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:64:31) +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 code: 'PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR', fatal: false } +explorer | [2017-12-14 09:34:53.222] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +explorer | [2017-12-14 09:34:53.223] [ERROR] Helper - admin enrollment failed +explorer | [2017-12-14 09:34:53.224] [ERROR] Query - Error: Missing userContext parameter +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | [2017-12-14 09:34:53.225] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 35): Error: Cannot save null userContext. +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:34:53.246] [ERROR] Query - Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:34:54.327] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +explorer | [2017-12-14 09:34:54.328] [ERROR] Helper - admin enrollment failed +explorer | [2017-12-14 09:34:54.331] [ERROR] Query - Error: Missing userContext parameter +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | [2017-12-14 09:34:54.331] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer1.org2.example.com | [001 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer1.org2.example.com | Version: 1.0.5 +peer1.org2.example.com | Go version: go1.9.2 +peer1.org2.example.com | OS/Arch: linux/amd64 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | Chaincode: +orderer.example.com | 2017-12-14 09:34:34.201 UTC [orderer/main] main -> INFO 001 Starting orderer: +peer1.org2.example.com | Base Image Version: 0.3.2 +peer0.org2.example.com | [001 12-14 09:34:26.67 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +orderer.example.com | Version: 1.0.5 +peer1.org2.example.com | Base Docker Namespace: hyperledger +peer0.org2.example.com | Version: 1.0.5 +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 38): Error: Cannot save null userContext. orderer.example.com | Go version: go1.7.5 +peer1.org2.example.com | Base Docker Label: org.hyperledger.fabric +peer0.org2.example.com | Go version: go1.9.2 orderer.example.com | OS/Arch: linux/amd64 -orderer.example.com | [002 12-05 07:29:40.13 UTC] [main] main.initializeGrpcServer.initializeSecureServerConfig -> INFO Starting orderer with TLS enabled -orderer.example.com | [003 12-05 07:29:40.17 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.setFactories.initBCCSP.Get.NewFileBasedKeyStore.Init.openKeyStore -> DEBU KeyStore opened at [/var/hyperledger/orderer/msp/keystore]...done -orderer.example.com | [004 12-05 07:29:40.17 UTC] [github.com/hyperledger/fabric/bccsp/factory] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.setFactories.initBCCSP -> DEBU Initialize BCCSP [SW] -orderer.example.com | [005 12-05 07:29:40.17 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/signcerts -orderer.example.com | [006 12-05 07:29:40.17 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem -orderer.example.com | [007 12-05 07:29:40.18 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/cacerts -orderer.example.com | [008 12-05 07:29:40.18 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem -orderer.example.com | [009 12-05 07:29:40.18 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/admincerts -orderer.example.com | [00a 12-05 07:29:40.18 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem -orderer.example.com | [00b 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/intermediatecerts -orderer.example.com | [00c 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] -orderer.example.com | [00d 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlscacerts -orderer.example.com | [00e 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem -orderer.example.com | [00f 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts -orderer.example.com | [010 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/var/hyperledger/orderer/msp/tlsintermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/tlsintermediatecerts: no such file or directory] -orderer.example.com | [011 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/crls -orderer.example.com | [012 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/var/hyperledger/orderer/msp/crls]. Skipping. [stat /var/hyperledger/orderer/msp/crls: no such file or directory] -orderer.example.com | [013 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] -orderer.example.com | [014 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [015 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP -> DEBU Created new local MSP -orderer.example.com | [016 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [017 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | Docker Namespace: hyperledger +peer0.org2.example.com | OS/Arch: linux/amd64 +orderer.example.com | [002 12-14 09:34:34.22 UTC] [main] main.initializeGrpcServer.initializeSecureServerConfig -> INFO Starting orderer with TLS enabled +peer1.org2.example.com | +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org2.example.com | Chaincode: +orderer.example.com | [003 12-14 09:34:34.29 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.setFactories.initBCCSP.Get.NewFileBasedKeyStore.Init.openKeyStore -> DEBU KeyStore opened at [/var/hyperledger/orderer/msp/keystore]...done +peer1.org2.example.com | [002 12-14 09:34:27.60 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 | Base Image Version: 0.3.2 +orderer.example.com | [004 12-14 09:34:34.29 UTC] [github.com/hyperledger/fabric/bccsp/factory] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.setFactories.initBCCSP -> DEBU Initialize BCCSP [SW] +peer1.org2.example.com | [003 12-14 09:34:27.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | Base Docker Namespace: hyperledger +orderer.example.com | [005 12-14 09:34:34.29 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/signcerts +peer1.org2.example.com | [004 12-14 09:34:27.62 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 | [001 12-14 09:34:26.92 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer0.org2.example.com | Base Docker Label: org.hyperledger.fabric +orderer.example.com | [006 12-14 09:34:34.30 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem +peer1.org2.example.com | [005 12-14 09:34:27.62 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 | Version: 1.0.5 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | Docker Namespace: hyperledger +orderer.example.com | [007 12-14 09:34:34.30 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/cacerts +peer0.org1.example.com | Go version: go1.9.2 +explorer | [2017-12-14 09:34:54.410] [ERROR] Query - Error: Connect Failed +peer0.org2.example.com | +orderer.example.com | [008 12-14 09:34:34.31 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem +peer1.org2.example.com | [006 12-14 09:34:27.62 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 | OS/Arch: linux/amd64 +peer0.org2.example.com | [002 12-14 09:34:26.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 | [009 12-14 09:34:34.31 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/admincerts +peer1.org2.example.com | [007 12-14 09:34:27.66 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 | Chaincode: +peer0.org2.example.com | [003 12-14 09:34:26.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | [00a 12-14 09:34:34.32 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem +peer1.org2.example.com | [008 12-14 09:34:27.66 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 | Base Image Version: 0.3.2 +peer0.org2.example.com | [004 12-14 09:34:26.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 | [00b 12-14 09:34:34.32 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/intermediatecerts +peer1.org2.example.com | [009 12-14 09:34:27.66 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 | Base Docker Namespace: hyperledger +explorer | [2017-12-14 09:34:55.425] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +orderer.example.com | [00c 12-14 09:34:34.32 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU 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 | Base Docker Label: org.hyperledger.fabric +peer0.org2.example.com | [005 12-14 09:34:26.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.org2.example.com | [00a 12-14 09:34:34.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +orderer.example.com | [00d 12-14 09:34:34.32 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlscacerts +peer0.org1.example.com | Docker Namespace: hyperledger +peer0.org2.example.com | [006 12-14 09:34:26.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.org2.example.com | [00b 12-14 09:34:34.12 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 +explorer | at emitOne (events.js:96:13) +orderer.example.com | [00e 12-14 09:34:34.32 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem +peer0.org1.example.com | +peer0.org2.example.com | [007 12-14 09:34:26.68 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 | [00c 12-14 09:34:34.12 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 | [00f 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts +peer0.org1.example.com | [002 12-14 09:34:26.92 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 | [008 12-14 09:34:26.68 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 | [00d 12-14 09:34:34.12 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 | [010 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU 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.org1.example.com | [003 12-14 09:34:26.92 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 | [009 12-14 09:34:26.68 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 | [00e 12-14 09:34:34.12 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 | [011 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/crls +peer0.org1.example.com | [004 12-14 09:34:26.93 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 | [00a 12-14 09:34:26.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.org2.example.com | [00f 12-14 09:34:34.15 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 | [012 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU 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 | [005 12-14 09:34:26.93 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 | [010 12-14 09:34:34.15 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/] +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org1.example.com | [006 12-14 09:34:26.93 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 | [00b 12-14 09:34:26.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 | [013 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] +peer1.org2.example.com | [011 12-14 09:34:34.15 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 | [007 12-14 09:34:26.96 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 | [00c 12-14 09:34:26.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 | [014 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org2.example.com | [012 12-14 09:34:34.15 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 | [008 12-14 09:34:26.96 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 | [00d 12-14 09:34:26.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 | [015 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP -> DEBU Created new local MSP +peer1.org2.example.com | [013 12-14 09:34:34.16 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 | [009 12-14 09:34:26.96 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 | [00e 12-14 09:34:26.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 +peer1.org2.example.com | [014 12-14 09:34:34.16 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 | [00a 12-14 09:34:26.98 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 | [00f 12-14 09:34:26.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 +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [015 12-14 09:34:34.16 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 | [016 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup -> DEBU Setting up MSP instance OrdererMSP +peer0.org1.example.com | [00b 12-14 09:34:26.99 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 | [010 12-14 09:34:26.73 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 | [016 12-14 09:34:34.16 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 | [017 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer0.org2.example.com | [011 12-14 09:34:26.73 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 | [00c 12-14 09:34:26.99 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 | [017 12-14 09:34:34.22 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +explorer | at TLSSocket.emit (events.js:188:7) +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +peer0.org2.example.com | [012 12-14 09:34:26.73 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 | [00d 12-14 09:34:26.99 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.org2.example.com | [018 12-14 09:34:34.24 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK +explorer | at emitErrorNT (net.js:1281:8) +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer0.org2.example.com | [013 12-14 09:34:26.77 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 | [00e 12-14 09:34:26.99 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.org2.example.com | [019 12-14 09:34:34.24 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org2.example.com | [014 12-14 09:34:26.77 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 | [00f 12-14 09:34:27.02 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 +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer1.org2.example.com | [01a 12-14 09:34:34.24 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 | [001 12-14 09:34:27.32 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +peer0.org2.example.com | [015 12-14 09:34:26.77 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 | [010 12-14 09:34:27.02 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 | [01b 12-14 09:34:34.24 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org1.example.com | Version: 1.0.5 +orderer.example.com | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +peer0.org2.example.com | [016 12-14 09:34:26.77 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 12-14 09:34:26.79 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +peer0.org1.example.com | [011 12-14 09:34:27.02 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 | Go version: go1.9.2 +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +explorer | [2017-12-14 09:34:55.426] [ERROR] Helper - admin enrollment failed +peer1.org2.example.com | [01c 12-14 09:34:34.25 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +peer0.org2.example.com | [018 12-14 09:34:26.80 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 | [012 12-14 09:34:27.03 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 | OS/Arch: linux/amd64 +orderer.example.com | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +explorer | [2017-12-14 09:34:55.427] [ERROR] Query - Error: Missing userContext parameter +peer0.org2.example.com | [019 12-14 09:34:26.80 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +peer1.org2.example.com | [01d 12-14 09:34:34.28 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 | [013 12-14 09:34:27.06 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 | Chaincode: +orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org2.example.com | [01a 12-14 09:34:26.80 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 | [014 12-14 09:34:27.06 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.org1.example.com | Base Image Version: 0.3.2 +orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +peer0.org2.example.com | [01b 12-14 09:34:26.80 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org2.example.com | [01e 12-14 09:34:34.29 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 | [015 12-14 09:34:27.06 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 | Base Docker Namespace: hyperledger +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [01c 12-14 09:34:26.80 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer1.org1.example.com | Base Docker Label: org.hyperledger.fabric +peer0.org1.example.com | [016 12-14 09:34:27.06 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized +peer1.org2.example.com | [01f 12-14 09:34:34.29 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) +orderer.example.com | [018 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [01d 12-14 09:34:26.81 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 | Docker Namespace: hyperledger +peer0.org1.example.com | [017 12-14 09:34:27.12 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +peer1.org2.example.com | [020 12-14 09:34:34.29 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 | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +peer0.org2.example.com | [01e 12-14 09:34:26.82 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 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org1.example.com | +peer0.org1.example.com | [018 12-14 09:34:27.12 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [01f 12-14 09:34:26.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) +peer1.org2.example.com | [021 12-14 09:34:34.29 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 | [002 12-14 09:34:27.33 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt +explorer | [2017-12-14 09:34:55.427] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer0.org1.example.com | [019 12-14 09:34:27.12 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org2.example.com | [020 12-14 09:34:26.82 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 | [022 12-14 09:34:34.29 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 | [003 12-14 09:34:27.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +peer0.org1.example.com | [01a 12-14 09:34:27.12 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +peer0.org2.example.com | [021 12-14 09:34:26.82 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 | [004 12-14 09:34:27.33 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 | [01b 12-14 09:34:27.12 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org2.example.com | [022 12-14 09:34:26.82 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.org2.example.com | [023 12-14 09:34:34.29 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 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org1.example.com | [005 12-14 09:34:27.33 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 | [01c 12-14 09:34:27.12 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org2.example.com | [023 12-14 09:34:26.82 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.org2.example.com | [024 12-14 09:34:34.29 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 +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 41): Error: Cannot save null userContext. +peer1.org1.example.com | [006 12-14 09:34:27.38 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 | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +peer0.org2.example.com | [024 12-14 09:34:26.82 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 | [01d 12-14 09:34:27.17 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 12-14 09:34:27.19 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 +peer1.org2.example.com | [025 12-14 09:34:34.30 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 | [007 12-14 09:34:27.47 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/] +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org2.example.com | [025 12-14 09:34:26.82 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 +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org1.example.com | [01f 12-14 09:34:27.22 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 | [008 12-14 09:34:27.47 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 | [026 12-14 09:34:34.30 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/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +peer0.org2.example.com | [026 12-14 09:34:26.82 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 | [020 12-14 09:34:27.22 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 | [009 12-14 09:34:27.48 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 | [027 12-14 09:34:34.30 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 | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +peer0.org2.example.com | [027 12-14 09:34:26.82 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 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [00a 12-14 09:34:34.05 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 | [028 12-14 09:34:34.30 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +peer0.org2.example.com | [028 12-14 09:34:26.83 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +peer0.org2.example.com | [029 12-14 09:34:26.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [021 12-14 09:34:27.22 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 | [00b 12-14 09:34:34.05 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 | [029 12-14 09:34:34.30 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----- +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer0.org2.example.com | [02a 12-14 09:34:26.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [00c 12-14 09:34:34.05 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 | [019 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [022 12-14 09:34:27.23 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.org2.example.com | [02a 12-14 09:34:34.30 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 12-14 09:34:26.83 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [00d 12-14 09:34:34.10 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 | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [02c 12-14 09:34:26.83 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.org1.example.com | [023 12-14 09:34:27.23 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.org2.example.com | [02b 12-14 09:34:34.30 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +explorer | [2017-12-14 09:34:55.453] [ERROR] Query - Error: Connect Failed +peer1.org1.example.com | [00e 12-14 09:34:34.10 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 | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org2.example.com | [02d 12-14 09:34:26.83 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 | [02c 12-14 09:34:34.30 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 [peer1.org2.example.com:7051] +peer1.org1.example.com | [00f 12-14 09:34:34.17 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 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:34:56.549] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer0.org1.example.com | [024 12-14 09:34:27.24 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 | [02e 12-14 09:34:26.83 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 | [010 12-14 09:34:34.17 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 | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +peer1.org2.example.com | [02d 12-14 09:34:34.30 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 +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer0.org1.example.com | [025 12-14 09:34:27.24 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 | [02f 12-14 09:34:26.83 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 | [011 12-14 09:34:34.17 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 | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org2.example.com | MIICGTCCAcCgAwIBAgIRAJjiyHVTsSgex9IwiV/aHl4wCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [02e 12-14 09:34:34.30 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [026 12-14 09:34:27.26 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 | [012 12-14 09:34:34.17 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [02f 12-14 09:34:34.30 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----- +explorer | at ClientRequest.emit (events.js:188:7) +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org1.example.com | [013 12-14 09:34:35.17 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 | [027 12-14 09:34:27.28 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 | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | MIICGTCCAcCgAwIBAgIRAOVNWb4m/KE8qWnbs5oNCXEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +peer1.org1.example.com | [014 12-14 09:34:35.17 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 | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzIwWhcNMjcxMTI5MTM1NzIw +peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org1.example.com | [015 12-14 09:34:35.17 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 | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [028 12-14 09:34:27.28 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +peer1.org1.example.com | [016 12-14 09:34:35.17 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 | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [029 12-14 09:34:27.30 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzIwWhcNMjcxMTI5MTM1NzIw +explorer | at emitOne (events.js:96:13) +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +peer1.org1.example.com | [017 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJl7DHrIVTIgNYQmvF7wQg2MICyjyDM/ +peer0.org1.example.com | [02a 12-14 09:34:27.30 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [018 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org2.example.com | i5YOmx+dZMqKd223qOrMvsMip4Jmy7IN+KyTFBgnbTXsobpY0if0XeqjTTBLMA4G +peer0.org1.example.com | [02b 12-14 09:34:27.30 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [019 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +explorer | at emitErrorNT (net.js:1281:8) +peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIExdUk4NTXuv +peer0.org1.example.com | [02c 12-14 09:34:27.35 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 | [01a 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [01a 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org2.example.com | lhveBMr/kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICgvZ/Rj +peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABFueCejfkDPPRfvkDKSMdw+HDB66Blw+ +peer0.org1.example.com | [02d 12-14 09:34:27.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 +orderer.example.com | MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL +peer1.org1.example.com | [01b 12-14 09:34:35.19 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 | CiBmkLGi9TJAI+aPXjzlWzmwyqCREKX/88hLAiBWNGnR/+DqkceICFhw1Z9gk/zn +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer0.org1.example.com | [02e 12-14 09:34:27.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 +peer1.org2.example.com | e26xuVdBm1m1VhZAfsISGq9AqZh5TYSeAWcic9UJDpM6AF4uYyRW8QSjTTBLMA4G +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [01c 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +peer0.org2.example.com | gRjU2qWofvp40BbS6Q== +explorer | [2017-12-14 09:34:56.549] [ERROR] Helper - admin enrollment failed +peer0.org1.example.com | [02f 12-14 09:34:27.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----- +peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIExdUk4NTXuv +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer1.org1.example.com | [01d 12-14 09:34:35.21 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 | -----END CERTIFICATE----- +explorer | [2017-12-14 09:34:56.550] [ERROR] Query - Error: Missing userContext parameter +peer0.org1.example.com | MIICGTCCAb+gAwIBAgIQJgBYBKOHst//mfTjpUw1gzAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV +peer1.org2.example.com | lhveBMr/kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICxTVmuv +peer1.org1.example.com | [01e 12-14 09:34:35.21 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.org2.example.com | [030 12-14 09:34:26.83 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 +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer1.org2.example.com | 85tLV3IObyyAjMFJDOY9ZRvG6JrFk6Ip+5I2AiAt89sYWRll0VJn4LE9SnqLGynx +peer1.org1.example.com | [01f 12-14 09:34:35.22 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 | [031 12-14 09:34:26.83 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 +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer0.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +peer1.org2.example.com | k8e5ucZ3Jd6kEw76mA== +peer0.org2.example.com | [032 12-14 09:34:26.86 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 | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MTlaFw0yNzExMjkxMzU3MTla +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer1.org1.example.com | [020 12-14 09:34:35.22 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 | KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +peer0.org2.example.com | [033 12-14 09:34:26.86 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 | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org2.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [021 12-14 09:34:35.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org2.example.com | [034 12-14 09:34:26.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----- +orderer.example.com | gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +peer0.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw +explorer | [2017-12-14 09:34:56.550] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer1.org2.example.com | [030 12-14 09:34:34.30 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 | MIICGTCCAcCgAwIBAgIRAJjiyHVTsSgex9IwiV/aHl4wCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +peer0.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE2iZEUIvLgKANslGKRrDsQ67PZuvMBlD4 +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer1.org1.example.com | [022 12-14 09:34:35.22 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [031 12-14 09:34:34.30 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 +orderer.example.com | KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +peer0.org1.example.com | s0XhzjlArKmtSEGzhr1O43IKz4TR8B3viyT0jO6L1RVDUgtdCsH5AaNNMEswDgYD +peer0.org1.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgejjZ4+nTXyF3 +peer1.org1.example.com | [023 12-14 09:34:35.22 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 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +peer1.org2.example.com | [032 12-14 09:34:34.32 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 | xi1tKI3DL8VylH+vPkEFOLmgRS6hq/gwCgYIKoZIzj0EAwIDSAAwRQIhAPICTsf5 +peer1.org1.example.com | [024 12-14 09:34:35.22 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 | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzIwWhcNMjcxMTI5MTM1NzIw +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 44): Error: Cannot save null userContext. +orderer.example.com | Tg== +peer1.org2.example.com | [033 12-14 09:34:34.32 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity +peer1.org1.example.com | [025 12-14 09:34:35.22 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 | -----END CERTIFICATE----- +peer1.org2.example.com | [034 12-14 09:34:34.32 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 | Yr2bvGRg2G85IveggOvKM6+3IyhjSP4E3xH2AiBW4QjCDtZlYyGK5vilFR7hzeZV +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org1.example.com | [026 12-14 09:34:35.22 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 | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | [01b 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [de469e87081a65c13df76f2cc650d87e44f666f558897af7e2b194d67d48549b] at [/var/hyperledger/orderer/msp/keystore/de469e87081a65c13df76f2cc650d87e44f666f558897af7e2b194d67d48549b_sk]... +peer0.org1.example.com | ibHlRV1ViFqHbzF3ww== +peer0.org1.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | MIICGTCCAcCgAwIBAgIRAOVNWb4m/KE8qWnbs5oNCXEwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [027 12-14 09:34:35.22 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 | [01c 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [030 12-14 09:34:27.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 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJl7DHrIVTIgNYQmvF7wQg2MICyjyDM/ +peer1.org1.example.com | [028 12-14 09:34:35.22 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +orderer.example.com | MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL +peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [031 12-14 09:34:27.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 Org1MSP validating identity +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | i5YOmx+dZMqKd223qOrMvsMip4Jmy7IN+KyTFBgnbTXsobpY0if0XeqjTTBLMA4G +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [029 12-14 09:34:35.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [032 12-14 09:34:27.40 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 +explorer | [2017-12-14 09:34:56.569] [ERROR] Query - Error: Connect Failed +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIExdUk4NTXuv +peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzIwWhcNMjcxMTI5MTM1NzIw +peer0.org1.example.com | [033 12-14 09:34:27.42 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity +peer1.org1.example.com | [02a 12-14 09:34:35.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV +peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | lhveBMr/kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICgvZ/Rj +peer0.org1.example.com | [034 12-14 09:34:27.42 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----- +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [02b 12-14 09:34:35.22 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | MIICGTCCAb+gAwIBAgIQJgBYBKOHst//mfTjpUw1gzAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | CiBmkLGi9TJAI+aPXjzlWzmwyqCREKX/88hLAiBWNGnR/+DqkceICFhw1Z9gk/zn +explorer | [2017-12-14 09:34:57.672] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABFueCejfkDPPRfvkDKSMdw+HDB66Blw+ +peer0.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | [02c 12-14 09:34:35.22 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] +peer0.org2.example.com | gRjU2qWofvp40BbS6Q== +orderer.example.com | KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +peer1.org2.example.com | e26xuVdBm1m1VhZAfsISGq9AqZh5TYSeAWcic9UJDpM6AF4uYyRW8QSjTTBLMA4G +peer0.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer0.org2.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [02d 12-14 09:34:35.23 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 | gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIExdUk4NTXuv +peer0.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MTlaFw0yNzExMjkxMzU3MTla +orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +peer1.org1.example.com | [02e 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [035 12-14 09:34:26.87 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 [] [15 250 74 86 255 134 183 7 249 123 23 20 73 177 218 37 180 227 77 207 22 52 106 103 14 226 123 248 37 214 6 88] peer0.org2.example.com:7051} incTime is 1513244066872939700 +peer1.org2.example.com | lhveBMr/kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICxTVmuv +peer0.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +orderer.example.com | iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw +peer0.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE2iZEUIvLgKANslGKRrDsQ67PZuvMBlD4 +peer1.org2.example.com | 85tLV3IObyyAjMFJDOY9ZRvG6JrFk6Ip+5I2AiAt89sYWRll0VJn4LE9SnqLGynx +peer0.org2.example.com | [036 12-14 09:34:26.87 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 [] [15 250 74 86 255 134 183 7 249 123 23 20 73 177 218 37 180 227 77 207 22 52 106 103 14 226 123 248 37 214 6 88] peer0.org2.example.com:7051} +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org1.example.com | [02f 12-14 09:34:35.23 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 | Tg== +peer0.org1.example.com | s0XhzjlArKmtSEGzhr1O43IKz4TR8B3viyT0jO6L1RVDUgtdCsH5AaNNMEswDgYD +peer1.org2.example.com | k8e5ucZ3Jd6kEw76mA== +peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRAMrqxzKvFlh0UvCnX/54n68wCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgejjZ4+nTXyF3 +peer1.org2.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [037 12-14 09:34:26.87 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 +explorer | at emitOne (events.js:96:13) +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | xi1tKI3DL8VylH+vPkEFOLmgRS6hq/gwCgYIKoZIzj0EAwIDSAAwRQIhAPICTsf5 +peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [035 12-14 09:34:34.33 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 [] [226 174 119 96 31 63 126 236 5 76 122 34 73 219 183 195 65 107 241 172 223 68 46 149 61 40 21 69 107 230 76 36] peer1.org2.example.com:7051} incTime is 1513244074329387500 +orderer.example.com | [01d 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org1.example.com | Yr2bvGRg2G85IveggOvKM6+3IyhjSP4E3xH2AiBW4QjCDtZlYyGK5vilFR7hzeZV +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org2.example.com | [038 12-14 09:34:26.87 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 | [036 12-14 09:34:34.33 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 [] [226 174 119 96 31 63 126 236 5 76 122 34 73 219 183 195 65 107 241 172 223 68 46 149 61 40 21 69 107 230 76 36] peer1.org2.example.com:7051} +peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | [01e 12-14 09:34:34.35 UTC] [main] main.initializeMultiChainManager.createLedgerFactory -> DEBU Ledger dir: /var/hyperledger/production/orderer +peer0.org1.example.com | ibHlRV1ViFqHbzF3ww== +explorer | at emitErrorNT (net.js:1281:8) +peer1.org2.example.com | [037 12-14 09:34:34.33 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 | [039 12-14 09:34:26.87 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 | MIICGTCCAcCgAwIBAgIRAJjiyHVTsSgex9IwiV/aHl4wCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzIwWhcNMjcxMTI5MTM1NzIw +orderer.example.com | [01f 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/index/] +peer1.org2.example.com | [038 12-14 09:34:34.33 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 | -----END CERTIFICATE----- +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | [020 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/index/] does not exist +peer1.org2.example.com | [039 12-14 09:34:34.33 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 | [035 12-14 09:34:27.43 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 [] [87 254 40 172 224 130 233 118 32 0 101 135 155 98 10 13 107 42 197 18 142 226 92 151 20 251 18 179 182 138 173 181] peer0.org1.example.com:7051} incTime is 1513244067435477900 +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | [021 12-14 09:34:34.93 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/index/] exists +peer1.org2.example.com | MIICGTCCAcCgAwIBAgIRAOVNWb4m/KE8qWnbs5oNCXEwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [036 12-14 09:34:27.43 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 [] [87 254 40 172 224 130 233 118 32 0 101 135 155 98 10 13 107 42 197 18 142 226 92 151 20 251 18 179 182 138 173 181] peer0.org1.example.com:7051} +explorer | [2017-12-14 09:34:57.673] [ERROR] Helper - admin enrollment failed +peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | [022 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: testchainid +peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [038 12-14 09:34:27.44 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 +explorer | [2017-12-14 09:34:57.673] [ERROR] Query - Error: Missing userContext parameter +orderer.example.com | [023 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/testchainid/] +peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJl7DHrIVTIgNYQmvF7wQg2MICyjyDM/ +peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABPwIqxJIf4OM52kaDdkuPqyFszdT9B2q +peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [039 12-14 09:34:27.44 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 | [03a 12-14 09:34:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +orderer.example.com | [024 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] does not exist +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org2.example.com | i5YOmx+dZMqKd223qOrMvsMip4Jmy7IN+KyTFBgnbTXsobpY0if0XeqjTTBLMA4G +peer1.org1.example.com | bAvKnGiSZ5GzENmJWkdjih0F1otzYiW2f4va4ENGtB102yiHuNT60wWjTTBLMA4G +peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzIwWhcNMjcxMTI5MTM1NzIw +orderer.example.com | [025 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] exists +peer0.org1.example.com | [03b 12-14 09:34:27.44 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----- +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIExdUk4NTXuv +orderer.example.com | [026 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | MIICGTCCAb+gAwIBAgIQJgBYBKOHst//mfTjpUw1gzAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | lhveBMr/kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICgvZ/Rj +orderer.example.com | [027 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +peer1.org1.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIFq99nPm +peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ +explorer | [2017-12-14 09:34:57.673] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer0.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | CiBmkLGi9TJAI+aPXjzlWzmwyqCREKX/88hLAiBWNGnR/+DqkceICFhw1Z9gk/zn +peer1.org1.example.com | kYRt5bb4Q7Z+TzE3BYFLJ6TgjNH32jghysAAAiAA17wE653uOW1/uO3Gr8FUZN31 +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +orderer.example.com | [028 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +peer1.org1.example.com | pBtbXEZm+WoA1Hjp7A== +peer0.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org2.example.com | gRjU2qWofvp40BbS6Q== +peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABFueCejfkDPPRfvkDKSMdw+HDB66Blw+ +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +orderer.example.com | [029 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +peer1.org1.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | e26xuVdBm1m1VhZAfsISGq9AqZh5TYSeAWcic9UJDpM6AF4uYyRW8QSjTTBLMA4G +peer0.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MTlaFw0yNzExMjkxMzU3MTla +orderer.example.com | [02a 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +peer0.org2.example.com | [03a 12-14 09:34:26.87 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 +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 47): Error: Cannot save null userContext. +peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIExdUk4NTXuv +peer0.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org1.example.com | [030 12-14 09:34:35.23 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 | [02b 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +peer0.org2.example.com | [03b 12-14 09:34:26.87 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 +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org2.example.com | lhveBMr/kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICxTVmuv +peer0.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw +peer0.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE2iZEUIvLgKANslGKRrDsQ67PZuvMBlD4 +peer0.org1.example.com | s0XhzjlArKmtSEGzhr1O43IKz4TR8B3viyT0jO6L1RVDUgtdCsH5AaNNMEswDgYD +orderer.example.com | [02c 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4203ba780)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [031 12-14 09:34:35.23 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 | 85tLV3IObyyAjMFJDOY9ZRvG6JrFk6Ip+5I2AiAt89sYWRll0VJn4LE9SnqLGynx +peer0.org2.example.com | [03c 12-14 09:34:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgejjZ4+nTXyF3 +orderer.example.com | [02d 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] +peer1.org1.example.com | [032 12-14 09:34:35.25 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 | k8e5ucZ3Jd6kEw76mA== +peer0.org1.example.com | xi1tKI3DL8VylH+vPkEFOLmgRS6hq/gwCgYIKoZIzj0EAwIDSAAwRQIhAPICTsf5 +orderer.example.com | [02e 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x3f, 0x49, 0xd1, 0xc, 0x1a, 0x11, 0x10, 0x17, 0x73, 0x55, 0x3c, 0xb9, 0x1b, 0x7, 0x1c, 0x86, 0x74, 0x3a, 0xc8, 0x6f, 0xa1, 0x91, 0x5f, 0x0, 0x71, 0x3, 0xe3, 0x9, 0x92, 0xa4, 0x56, 0x14} txOffsets= +peer1.org1.example.com | [033 12-14 09:34:35.26 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 | -----END CERTIFICATE----- +peer1.org2.example.com | [03a 12-14 09:34:34.33 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 12-14 09:34:26.87 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 | txId=d8a16e3a703f1e3b77880d94d15bdbb9db3899ac6817d959660f658bb9543aef locPointer=offset=38, bytesLength=9043 +peer0.org1.example.com | Yr2bvGRg2G85IveggOvKM6+3IyhjSP4E3xH2AiBW4QjCDtZlYyGK5vilFR7hzeZV +peer1.org1.example.com | [034 12-14 09:34:35.26 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----- +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer1.org2.example.com | [03b 12-14 09:34:34.33 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 | [03e 12-14 09:34:26.87 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 | ibHlRV1ViFqHbzF3ww== +orderer.example.com | ] +peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRAMrqxzKvFlh0UvCnX/54n68wCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [03c 12-14 09:34:34.33 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 | -----END CERTIFICATE----- +orderer.example.com | [02f 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[9086], isChainEmpty=[false], lastBlockNumber=[0] +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [03d 12-14 09:34:34.33 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [03f 12-14 09:34:26.87 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: 1801AA01B1060A200FFA4A56FF86B707...0A2D2D2D2D2D454E44202D2D2D2D2D0A +peer0.org1.example.com | [037 12-14 09:34:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [03e 12-14 09:34:34.33 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: 1801AA01B1060A20E2AE77601F3F7EEC...0A2D2D2D2D2D454E44202D2D2D2D2D0A +explorer | [2017-12-14 09:34:57.685] [ERROR] Query - Error: Connect Failed +peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [03f 12-14 09:34:34.33 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: F5EA84B421FA7D79BA5595F92B0A73310DB8AC1171DBBE2505A5F4BB289086F5 +peer0.org1.example.com | [03c 12-14 09:34:27.44 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 +orderer.example.com | [030 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +peer0.org2.example.com | [040 12-14 09:34:26.87 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: 37DE87CCCB482F34058EA43D79BE4C0AE0B08170A8B5E0ECAB3EFC6FFD25BF06 +peer1.org2.example.com | [040 12-14 09:34:34.33 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.5,txid=68113f69-3274-4c67-a610-c07d320c4800,syscc=true,proposal=0x0,canname=cscc:1.0.5 +peer0.org1.example.com | [03d 12-14 09:34:27.44 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 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | [031 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +peer0.org2.example.com | [041 12-14 09:34:26.87 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.5,txid=9ffaec33-d22b-453d-9aad-d3f569d0c858,syscc=true,proposal=0x0,canname=cscc:1.0.5 +peer0.org1.example.com | [03e 12-14 09:34:27.45 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 +explorer | [2017-12-14 09:34:58.778] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer1.org2.example.com | [041 12-14 09:34:34.33 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.5 is being launched +peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | [032 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9086], Going to peek [8] bytes +peer0.org1.example.com | [03f 12-14 09:34:27.45 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 | [042 12-14 09:34:26.87 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.5 is being launched +peer1.org2.example.com | [042 12-14 09:34:34.33 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 | [033 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9084], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer0.org1.example.com | [040 12-14 09:34:27.45 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: 1801AA01B1060A2057FE28ACE082E976...0A2D2D2D2D2D454E44202D2D2D2D2D0A +peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [043 12-14 09:34:26.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 | [034 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [041 12-14 09:34:27.45 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: FAB80B0E7011C864E8AD9AED2F6711087CF755E09B33858AA16743A6B6442CDF +peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABPwIqxJIf4OM52kaDdkuPqyFszdT9B2q +peer1.org2.example.com | [043 12-14 09:34:34.33 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 | [044 12-14 09:34:26.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] +orderer.example.com | [035 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +peer0.org1.example.com | [042 12-14 09:34:27.45 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.5,txid=257af516-8e37-4377-a8db-29d9b33a38e9,syscc=true,proposal=0x0,canname=cscc:1.0.5 +peer1.org1.example.com | bAvKnGiSZ5GzENmJWkdjih0F1otzYiW2f4va4ENGtB102yiHuNT60wWjTTBLMA4G +peer0.org2.example.com | [045 12-14 09:34:26.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: cscc:1.0.5(networkid:dev,peerid:peer0.org2.example.com) +orderer.example.com | [036 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9086], Going to peek [8] bytes +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org1.example.com | [043 12-14 09:34:27.46 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.5 is being launched +peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +peer0.org2.example.com | [046 12-14 09:34:26.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.org2.example.com | [044 12-14 09:34:34.33 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.5(networkid:dev,peerid:peer1.org2.example.com) +orderer.example.com | [037 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9084], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +peer0.org1.example.com | [044 12-14 09:34:27.46 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 | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIFq99nPm +peer1.org1.example.com | kYRt5bb4Q7Z+TzE3BYFLJ6TgjNH32jghysAAAiAA17wE653uOW1/uO3Gr8FUZN31 +peer0.org2.example.com | [047 12-14 09:34:26.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: +peer1.org2.example.com | [045 12-14 09:34:34.33 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 | [038 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [039 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [045 12-14 09:34:27.46 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] +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org1.example.com | pBtbXEZm+WoA1Hjp7A== +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.5 +peer1.org2.example.com | [046 12-14 09:34:34.33 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 | [03a 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [047 12-14 09:34:27.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.5 +peer1.org1.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [036 12-14 09:34:35.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [037 12-14 09:34:35.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer1.org1.example.com | [035 12-14 09:34:35.26 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 [] [139 153 136 195 167 130 29 112 214 77 217 19 124 247 87 101 191 198 34 210 49 115 58 117 107 126 254 48 183 144 116 67] peer1.org1.example.com:7051} incTime is 1513244075263117500 +orderer.example.com | [03b 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [046 12-14 09:34:27.46 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.5(networkid:dev,peerid:peer0.org1.example.com) +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | [038 12-14 09:34:35.27 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 [] [139 153 136 195 167 130 29 112 214 77 217 19 124 247 87 101 191 198 34 210 49 115 58 117 107 126 254 48 183 144 116 67] peer1.org1.example.com:7051} +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org1.example.com | [049 12-14 09:34:27.47 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_SHIM=warning +orderer.example.com | [03c 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [04a 12-14 09:34:27.47 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: +explorer | at emitErrorNT (net.js:1281:8) +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 | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.5 +peer0.org2.example.com | [048 12-14 09:34:26.87 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.5) lock +peer1.org1.example.com | [039 12-14 09:34:35.27 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 | [03d 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +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 | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | [049 12-14 09:34:26.87 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.5) lock +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org2.example.com | [047 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.5) lock +peer1.org1.example.com | [03a 12-14 09:34:35.27 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 | [03e 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org2.example.com | [04a 12-14 09:34:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer1.org2.example.com | [048 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.5) lock +orderer.example.com | [03f 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium +peer1.org1.example.com | [03b 12-14 09:34:35.27 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 | CORE_CHAINCODE_LOGGING_SHIM=warning +explorer | [2017-12-14 09:34:58.779] [ERROR] Helper - admin enrollment failed +peer1.org2.example.com | [049 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.5 +peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRAMrqxzKvFlh0UvCnX/54n68wCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | [040 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org1MSP +peer0.org2.example.com | [04b 12-14 09:34:26.87 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.5 +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 | [04a 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.5) +peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | [041 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP +peer0.org2.example.com | [04c 12-14 09:34:26.87 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.5) +peer0.org1.example.com | [04b 12-14 09:34:27.47 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.5) lock +explorer | [2017-12-14 09:34:58.779] [ERROR] Query - Error: Missing userContext parameter +peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | [042 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins +peer1.org2.example.com | [04b 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [04c 12-14 09:34:27.48 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.5) lock +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABPwIqxJIf4OM52kaDdkuPqyFszdT9B2q +orderer.example.com | [043 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers +peer0.org2.example.com | [04d 12-14 09:34:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org2.example.com:7051 started +peer1.org2.example.com | [04c 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org2.example.com:7051 started +peer0.org1.example.com | [04d 12-14 09:34:27.48 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.5 +peer1.org1.example.com | bAvKnGiSZ5GzENmJWkdjih0F1otzYiW2f4va4ENGtB102yiHuNT60wWjTTBLMA4G +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +orderer.example.com | [044 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers +peer0.org2.example.com | [04e 12-14 09:34:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself +peer1.org2.example.com | [04d 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself +peer0.org1.example.com | [04e 12-14 09:34:27.48 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.5) +peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +orderer.example.com | [045 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org2MSP +peer0.org1.example.com | [04f 12-14 09:34:27.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself +peer0.org2.example.com | [04f 12-14 09:34:26.87 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.5 +peer1.org1.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIFq99nPm +peer1.org2.example.com | [04e 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.5 +explorer | [2017-12-14 09:34:58.780] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer0.org1.example.com | [050 12-14 09:34:27.49 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.5 +orderer.example.com | [046 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP +peer0.org2.example.com | [050 12-14 09:34:26.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.org1.example.com | kYRt5bb4Q7Z+TzE3BYFLJ6TgjNH32jghysAAAiAA17wE653uOW1/uO3Gr8FUZN31 +peer1.org2.example.com | [04f 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer0.org1.example.com | [051 12-14 09:34:27.50 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 | [052 12-14 09:34:27.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [048 12-14 09:34:27.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +orderer.example.com | [047 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers +peer0.org2.example.com | [051 12-14 09:34:26.87 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [050 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | pBtbXEZm+WoA1Hjp7A== +peer1.org1.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [054 12-14 09:34:27.51 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [048 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 50): Error: Cannot save null userContext. +peer1.org2.example.com | [051 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +peer0.org2.example.com | [052 12-14 09:34:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +peer1.org1.example.com | [03c 12-14 09:34:35.28 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 | [055 12-14 09:34:27.51 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [049 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org2.example.com | [053 12-14 09:34:26.88 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 | [054 12-14 09:34:26.88 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [055 12-14 09:34:26.88 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572302E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +peer1.org2.example.com | [052 12-14 09:34:34.33 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 | [053 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org2.example.com | [054 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572312E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +peer0.org1.example.com | [056 12-14 09:34:27.51 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572302E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +peer1.org1.example.com | [03d 12-14 09:34:35.28 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 | [056 12-14 09:34:26.88 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 7403BCC2AD0D0AF6822FBCEBE23E2B7E152154942BE6D9352CCC8F4B24237D3E +peer1.org2.example.com | [055 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 54E8DC5F06A554ED11321EFF878EE07ABFE3E1ABA2DC7D0A480C52909BA0C911 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [03e 12-14 09:34:35.28 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 | [04a 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy +peer0.org2.example.com | [057 12-14 09:34:26.88 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 | [057 12-14 09:34:27.51 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: D9032045B47DCF4D572EE0E2FC6147723954744832584ADBE31F2272725E168E +peer1.org1.example.com | [03f 12-14 09:34:35.28 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 | [056 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer0.org2.example.com | [058 12-14 09:34:26.88 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [04b 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/Admins +peer1.org1.example.com | [040 12-14 09:34:35.28 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: 1801AA01B1060A208B9988C3A7821D70...0A2D2D2D2D2D454E44202D2D2D2D2D0A +peer0.org1.example.com | [053 12-14 09:34:27.51 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.5 +peer1.org2.example.com | [057 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [059 12-14 09:34:26.88 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267322E6578616D706C652E636F6D3A37303531 +peer1.org1.example.com | [041 12-14 09:34:35.28 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: 6D69B846851639928573C68D301443570B90AC4963C3DA119B18E3F5F8AE9281 +orderer.example.com | [04c 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer0.org1.example.com | [059 12-14 09:34:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +explorer | [2017-12-14 09:34:58.801] [ERROR] Query - Error: Connect Failed +peer0.org2.example.com | [05a 12-14 09:34:26.88 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 31AA5BDA348977D7C004285715D545FB004C7F32E9BB02A9710DB7C2282B8EA6 +peer1.org2.example.com | [058 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267322E6578616D706C652E636F6D3A37303531 +peer1.org1.example.com | [042 12-14 09:34:35.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org1.example.com:7051 started +orderer.example.com | [04d 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [05a 12-14 09:34:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.5 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [05b 12-14 09:34:26.88 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.5 +peer1.org2.example.com | [059 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 84DCB4760C577E9B4E2A280CB22EA6979C16748D7FD46DCFD4002D8650CAD285 +peer1.org1.example.com | [043 12-14 09:34:35.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +orderer.example.com | [04e 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [05b 12-14 09:34:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +explorer | [2017-12-14 09:34:59.954] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer0.org2.example.com | [05c 12-14 09:34:26.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +peer1.org1.example.com | [044 12-14 09:34:35.28 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [04f 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [05c 12-14 09:34:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | [05a 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.5 +peer1.org1.example.com | [045 12-14 09:34:35.28 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [05d 12-14 09:34:26.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.5 +peer0.org1.example.com | [05d 12-14 09:34:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +orderer.example.com | [050 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org1.example.com | [046 12-14 09:34:35.28 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572312E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +peer0.org1.example.com | [05e 12-14 09:34:27.52 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 | [05b 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +orderer.example.com | [051 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [05e 12-14 09:34:26.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [047 12-14 09:34:35.28 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 4E8872CE37D32CCD42E634505078CA60F06C336CF91D80DD0D650BD3B5742F77 +peer0.org1.example.com | [05f 12-14 09:34:27.52 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.5 +orderer.example.com | [052 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [05f 12-14 09:34:26.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | [048 12-14 09:34:35.28 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 | [05c 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.5 +peer0.org1.example.com | [060 12-14 09:34:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.5" , sending back REGISTERED +peer0.org1.example.com | [061 12-14 09:34:27.52 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 | [062 12-14 09:34:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org1.example.com | [063 12-14 09:34:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [058 12-14 09:34:27.51 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 | [065 12-14 09:34:27.52 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [066 12-14 09:34:27.52 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 +peer0.org1.example.com | [067 12-14 09:34:27.52 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 +peer0.org1.example.com | [068 12-14 09:34:27.52 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.5 launch seq completed +peer0.org1.example.com | [069 12-14 09:34:27.52 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 | [06a 12-14 09:34:27.52 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 | [06b 12-14 09:34:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [257af516]Move state message READY +peer0.org1.example.com | [06c 12-14 09:34:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [257af516]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [06d 12-14 09:34:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [257af516]Entered state ready +peer0.org1.example.com | [06e 12-14 09:34:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:257af516-8e37-4377-a8db-29d9b33a38e9 +peer0.org1.example.com | [06f 12-14 09:34:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [257af516]sending state message READY +peer0.org1.example.com | [070 12-14 09:34:27.52 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 | [071 12-14 09:34:27.52 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 | [072 12-14 09:34:27.52 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 | [073 12-14 09:34:27.52 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.5 +peer0.org1.example.com | [074 12-14 09:34:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [257af516]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [075 12-14 09:34:27.52 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 | [076 12-14 09:34:27.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [257af516]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [064 12-14 09:34:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [077 12-14 09:34:27.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [257af516]Received message READY from shim +peer0.org1.example.com | [078 12-14 09:34:27.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [257af516]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [079 12-14 09:34:27.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [257af516]Move state message INIT +peer0.org1.example.com | [07a 12-14 09:34:27.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [257af516]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [07b 12-14 09:34:27.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [07c 12-14 09:34:27.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [257af516]sending state message INIT +peer0.org1.example.com | [07d 12-14 09:34:27.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [257af516]Received message INIT from shim +peer0.org1.example.com | [07e 12-14 09:34:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [257af516]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | [053 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [05d 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [049 12-14 09:34:35.28 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [04a 12-14 09:34:35.28 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267312E6578616D706C652E636F6D3A37303531 +peer1.org1.example.com | [04b 12-14 09:34:35.28 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 5E1207E32E2709D3C49FD6E4E42EA75E054BF7CAB0517372323BB60EB639719F +peer1.org1.example.com | [04c 12-14 09:34:35.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051} +peer1.org1.example.com | [04d 12-14 09:34:35.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Exiting +peer1.org1.example.com | [04e 12-14 09:34:35.28 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.5,txid=a51bd27d-b4ae-408c-a857-e3559df21e8c,syscc=true,proposal=0x0,canname=cscc:1.0.5 +peer1.org1.example.com | [04f 12-14 09:34:35.28 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.5 is being launched +peer1.org1.example.com | [050 12-14 09:34:35.28 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 12-14 09:34:35.28 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 12-14 09:34:35.28 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.5(networkid:dev,peerid:peer1.org1.example.com) +peer1.org1.example.com | [053 12-14 09:34:35.28 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 12-14 09:34:35.28 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.5 +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 12-14 09:34:35.28 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.5) lock +peer1.org1.example.com | [056 12-14 09:34:35.28 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.5) lock +peer1.org1.example.com | [057 12-14 09:34:35.28 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.5 +peer1.org1.example.com | [058 12-14 09:34:35.28 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.5) +peer1.org1.example.com | [05a 12-14 09:34:35.28 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.5 +peer0.org1.example.com | [07f 12-14 09:34:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [060 12-14 09:34:26.88 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 | [061 12-14 09:34:26.88 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 12-14 09:34:26.88 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.5 +peer0.org2.example.com | [063 12-14 09:34:26.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.5" , sending back REGISTERED +peer0.org2.example.com | [064 12-14 09:34:26.88 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 12-14 09:34:26.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org2.example.com | [067 12-14 09:34:26.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [066 12-14 09:34:26.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 cscc:1.0.5 launch seq completed +peer1.org2.example.com | [05e 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | [054 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [05b 12-14 09:34:35.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +explorer | at ClientRequest.emit (events.js:188:7) +peer1.org2.example.com | [05f 12-14 09:34:34.33 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 12-14 09:34:26.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 +peer0.org1.example.com | [080 12-14 09:34:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [257af516]Received INIT, initializing chaincode +peer1.org1.example.com | [05c 12-14 09:34:35.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.5 +orderer.example.com | [055 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer0.org2.example.com | [068 12-14 09:34:26.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org2.example.com | [060 12-14 09:34:34.33 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 | [061 12-14 09:34:34.33 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.5 +peer1.org2.example.com | [062 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.5" , sending back REGISTERED +peer1.org2.example.com | [063 12-14 09:34:34.33 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 | [064 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [065 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [081 12-14 09:34:27.56 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org1.example.com | [082 12-14 09:34:27.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [083 12-14 09:34:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [257af516]Init get response status: 200 +peer0.org1.example.com | [084 12-14 09:34:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [257af516]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [085 12-14 09:34:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [257af516]Move state message COMPLETED +peer0.org1.example.com | [086 12-14 09:34:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [257af516]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [087 12-14 09:34:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [257af516]send state message COMPLETED +peer0.org1.example.com | [088 12-14 09:34:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [257af516]Received message COMPLETED from shim +peer0.org1.example.com | [089 12-14 09:34:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [257af516]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [08a 12-14 09:34:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [257af516-8e37-4377-a8db-29d9b33a38e9]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [08b 12-14 09:34:27.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:257af516-8e37-4377-a8db-29d9b33a38e9 +orderer.example.com | [056 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [057 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [058 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [059 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [05a 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | [05b 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer0.org2.example.com | [06a 12-14 09:34:26.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... +peer0.org2.example.com | [06b 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ffaec33]Move state message READY +peer0.org2.example.com | [06c 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9ffaec33]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org2.example.com | [06d 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [9ffaec33]Entered state ready +peer0.org2.example.com | [06e 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:9ffaec33-d22b-453d-9aad-d3f569d0c858 +peer0.org2.example.com | [06f 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ffaec33]sending state message READY +peer0.org2.example.com | [070 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ffaec33]Received message READY from shim +peer1.org1.example.com | [05d 12-14 09:34:35.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [059 12-14 09:34:35.28 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.5 +peer1.org1.example.com | [05e 12-14 09:34:35.28 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 | [05f 12-14 09:34:35.28 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [060 12-14 09:34:35.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | [061 12-14 09:34:35.28 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 | [062 12-14 09:34:35.29 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 | [066 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [08c 12-14 09:34:27.57 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 | [08d 12-14 09:34:27.57 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.org1.example.com | [08e 12-14 09:34:27.57 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.5,txid=8233d972-ceaf-4301-a12b-09286a8e27d1,syscc=true,proposal=0x0,canname=lscc:1.0.5 +peer0.org1.example.com | [08f 12-14 09:34:27.59 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.5 is being launched +peer0.org1.example.com | [090 12-14 09:34:27.59 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 | [05c 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | [05d 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [05e 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [05f 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [060 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig -> DEBU Beginning new config for channel testchainid +orderer.example.com | [061 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [062 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [063 12-14 09:34:35.29 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.5 +peer0.org2.example.com | [072 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9ffaec33]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [091 12-14 09:34:27.59 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] +explorer | at emitOne (events.js:96:13) +orderer.example.com | [063 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [064 12-14 09:34:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.5" , sending back REGISTERED +peer1.org2.example.com | [067 12-14 09:34:34.33 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.5 launch seq completed +peer1.org2.example.com | [068 12-14 09:34:34.33 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 | [069 12-14 09:34:34.33 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 | [06a 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [68113f69]Move state message READY +peer1.org2.example.com | [06b 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [68113f69]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [06c 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [68113f69]Entered state ready +peer1.org2.example.com | [06d 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:68113f69-3274-4c67-a610-c07d320c4800 +peer1.org2.example.com | [06e 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [68113f69]sending state message READY +peer1.org2.example.com | [06f 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [68113f69]Received message READY from shim +peer0.org2.example.com | [071 12-14 09:34:26.89 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 | [073 12-14 09:34:26.89 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 | [074 12-14 09:34:26.89 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 | [075 12-14 09:34:26.89 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.5 +peer0.org2.example.com | [076 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9ffaec33]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [077 12-14 09:34:26.89 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 | [078 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9ffaec33]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [092 12-14 09:34:27.59 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.5(networkid:dev,peerid:peer0.org1.example.com) +orderer.example.com | [064 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [066 12-14 09:34:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [070 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [68113f69]Handling ChaincodeMessage of type: READY(state:established) +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org2.example.com | [079 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ffaec33]Move state message INIT +orderer.example.com | [065 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [093 12-14 09:34:27.59 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 | [071 12-14 09:34:34.33 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 | [072 12-14 09:34:34.33 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 | [067 12-14 09:34:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +orderer.example.com | [066 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +peer0.org2.example.com | [07a 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9ffaec33]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [094 12-14 09:34:27.59 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: +explorer | at emitErrorNT (net.js:1281:8) +peer1.org2.example.com | [073 12-14 09:34:34.33 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 | [068 12-14 09:34:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.5 +peer0.org2.example.com | [07b 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [067 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +peer1.org2.example.com | [074 12-14 09:34:34.33 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.5 +peer1.org1.example.com | [065 12-14 09:34:35.29 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 | [07c 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ffaec33]sending state message INIT +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +orderer.example.com | [068 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +peer1.org2.example.com | [075 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [68113f69]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [069 12-14 09:34:35.29 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.5 launch seq completed +peer0.org2.example.com | [07d 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ffaec33]Received message INIT from shim +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +orderer.example.com | [069 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Consortiums +peer1.org2.example.com | [076 12-14 09:34:34.33 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 | [06a 12-14 09:34:35.29 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 | [07e 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9ffaec33]Handling ChaincodeMessage of type: INIT(state:ready) +explorer | [2017-12-14 09:34:59.960] [ERROR] Helper - admin enrollment failed +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | [077 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [68113f69]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [06b 12-14 09:34:35.29 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 | [06a 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.BeginValueProposals.Allocate.NewConsortiumConfig.NewStandardValues -> DEBU Initializing protos for *config.ConsortiumProtos +peer0.org2.example.com | [07f 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +explorer | [2017-12-14 09:34:59.963] [ERROR] Query - Error: Missing userContext parameter +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 | [078 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [68113f69]Move state message INIT +peer1.org1.example.com | [06d 12-14 09:34:35.29 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 | [080 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [9ffaec33]Received INIT, initializing chaincode +peer0.org2.example.com | [081 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer1.org2.example.com | [079 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [68113f69]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | [06b 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.BeginValueProposals.Allocate.NewConsortiumConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelCreationPolicy +peer0.org1.example.com | [095 12-14 09:34:27.59 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.5) lock +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer1.org1.example.com | [06e 12-14 09:34:35.29 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [082 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [07a 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [06c 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [096 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.5) lock +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer0.org2.example.com | [083 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ffaec33]Init get response status: 200 +peer1.org1.example.com | [06f 12-14 09:34:35.29 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 180172D3060A208B9988C3A7821D70D6...ED43B93F453D936E40E406E284A986F4 +peer1.org2.example.com | [07b 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [68113f69]sending state message INIT +orderer.example.com | [06d 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer0.org1.example.com | [097 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.5 +peer0.org2.example.com | [084 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ffaec33]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [070 12-14 09:34:35.29 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: E36D94C08E891CD267238A2155A1FAF304715213253B97A9345799726D4EE5E4 +orderer.example.com | [06e 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +peer1.org2.example.com | [07c 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [68113f69]Received message INIT from shim +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [098 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.5) +peer0.org2.example.com | [085 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ffaec33]Move state message COMPLETED +peer1.org1.example.com | [071 12-14 09:34:35.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 856 bytes, Signature: 71 bytes to 172.21.0.4:7051 +orderer.example.com | [06f 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +peer1.org2.example.com | [07d 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [68113f69]Handling ChaincodeMessage of type: INIT(state:ready) +explorer | [2017-12-14 09:34:59.963] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer0.org1.example.com | [099 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.5 +peer0.org2.example.com | [086 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9ffaec33]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [072 12-14 09:34:35.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"W\376(\254\340\202\351v \000e\207\233b\n\rk*\305\022\216\342\\\227\024\373\022\263\266\212\255\265" identity:"\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQJgBYBKOHst//mfTjpUw1gzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MTlaFw0yNzExMjkxMzU3MTla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE2iZEUIvLgKANslGKRrDsQ67PZuvMBlD4\ns0XhzjlArKmtSEGzhr1O43IKz4TR8B3viyT0jO6L1RVDUgtdCsH5AaNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgejjZ4+nTXyF3\nxi1tKI3DL8VylH+vPkEFOLmgRS6hq/gwCgYIKoZIzj0EAwIDSAAwRQIhAPICTsf5\nYr2bvGRg2G85IveggOvKM6+3IyhjSP4E3xH2AiBW4QjCDtZlYyGK5vilFR7hzeZV\nibHlRV1ViFqHbzF3ww==\n-----END -----\n" tls_cert_hash:"u\307~\373FH\215X/ \026\354\021\r\014\347d~\377\240\341\\\242\007\236@y\277\217bf\276" from 172.21.0.4:7051 +orderer.example.com | [070 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +peer1.org2.example.com | [07e 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer0.org1.example.com | [09a 12-14 09:34:27.60 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 | [087 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ffaec33]send state message COMPLETED +peer1.org2.example.com | [07f 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [68113f69]Received INIT, initializing chaincode +orderer.example.com | [071 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [09b 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [09c 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.5 +peer1.org1.example.com | [073 12-14 09:34:35.29 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [074 12-14 09:34:35.29 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +peer1.org2.example.com | [080 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org2.example.com | [088 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ffaec33]Received message COMPLETED from shim +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 53): Error: Cannot save null userContext. +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [075 12-14 09:34:35.29 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [089 12-14 09:34:26.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9ffaec33]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [09d 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +orderer.example.com | [072 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer1.org2.example.com | [081 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | MIICGTCCAb+gAwIBAgIQJgBYBKOHst//mfTjpUw1gzAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | [09e 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.5 +peer0.org2.example.com | [08a 12-14 09:34:26.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9ffaec33-d22b-453d-9aad-d3f569d0c858]HandleMessage- COMPLETED. Notify +orderer.example.com | [073 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [082 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [68113f69]Init get response status: 200 +peer1.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [08b 12-14 09:34:26.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9ffaec33-d22b-453d-9aad-d3f569d0c858 +orderer.example.com | [074 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [075 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +peer0.org1.example.com | [09f 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org2.example.com | [083 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [68113f69]Init succeeded. Sending COMPLETED +peer1.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org2.example.com | [08c 12-14 09:34:26.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +explorer | [2017-12-14 09:35:00.002] [ERROR] Query - Error: Connect Failed +orderer.example.com | [076 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer0.org1.example.com | [0a0 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | [084 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer1.org2.example.com | [085 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [68113f69]Move state message COMPLETED +peer1.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MTlaFw0yNzExMjkxMzU3MTla +peer0.org2.example.com | [08d 12-14 09:34:26.90 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 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:35:01.122] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +orderer.example.com | [077 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [078 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw +peer1.org2.example.com | [086 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [68113f69]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [087 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [68113f69]send state message COMPLETED +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +orderer.example.com | [079 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [08e 12-14 09:34:26.90 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.5,txid=055d1d0a-d6b0-4046-9906-c30359cfdb34,syscc=true,proposal=0x0,canname=lscc:1.0.5 +peer1.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE2iZEUIvLgKANslGKRrDsQ67PZuvMBlD4 +peer0.org1.example.com | [0a1 12-14 09:34:27.60 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 | [0a2 12-14 09:34:27.60 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 | [088 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [68113f69]Received message COMPLETED from shim +orderer.example.com | [07a 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | s0XhzjlArKmtSEGzhr1O43IKz4TR8B3viyT0jO6L1RVDUgtdCsH5AaNNMEswDgYD +peer0.org1.example.com | [0a3 12-14 09:34:27.60 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.5 +peer1.org2.example.com | [089 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [68113f69]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [08a 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [68113f69-3274-4c67-a610-c07d320c4800]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [08f 12-14 09:34:26.90 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.5 is being launched +peer0.org2.example.com | [090 12-14 09:34:26.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.org2.example.com | [091 12-14 09:34:26.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] +peer1.org1.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgejjZ4+nTXyF3 +orderer.example.com | [07b 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +peer1.org2.example.com | [08b 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:68113f69-3274-4c67-a610-c07d320c4800 +peer0.org2.example.com | [092 12-14 09:34:26.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: lscc:1.0.5(networkid:dev,peerid:peer0.org2.example.com) +peer1.org1.example.com | xi1tKI3DL8VylH+vPkEFOLmgRS6hq/gwCgYIKoZIzj0EAwIDSAAwRQIhAPICTsf5 +orderer.example.com | [07c 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [07d 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [07e 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [07f 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [080 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [0a4 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.5" , sending back REGISTERED +peer1.org1.example.com | Yr2bvGRg2G85IveggOvKM6+3IyhjSP4E3xH2AiBW4QjCDtZlYyGK5vilFR7hzeZV +peer1.org2.example.com | [08c 12-14 09:34:34.34 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 | [093 12-14 09:34:26.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 +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +orderer.example.com | [081 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [082 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +peer1.org1.example.com | ibHlRV1ViFqHbzF3ww== +peer1.org1.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [094 12-14 09:34:26.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: +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.5 +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org1.example.com | [0a5 12-14 09:34:27.60 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 | [076 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +orderer.example.com | [083 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +peer1.org2.example.com | [08d 12-14 09:34:34.34 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 +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer0.org1.example.com | [0a6 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org1.example.com | [0a7 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [077 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [084 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +peer1.org2.example.com | [08e 12-14 09:34:34.34 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.5,txid=8b8e66a8-c727-44c4-bae8-6ad54121f62d,syscc=true,proposal=0x0,canname=lscc:1.0.5 +explorer | [2017-12-14 09:35:01.128] [ERROR] Helper - admin enrollment failed +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [0a8 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +orderer.example.com | [085 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [08f 12-14 09:34:34.34 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.5 is being launched +peer1.org1.example.com | [078 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +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 | [095 12-14 09:34:26.90 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.5) lock +peer0.org2.example.com | [096 12-14 09:34:26.90 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.5) lock +peer0.org2.example.com | [097 12-14 09:34:26.90 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.5 +peer0.org2.example.com | [098 12-14 09:34:26.90 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.5) +peer0.org2.example.com | [099 12-14 09:34:26.90 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.5 +peer0.org2.example.com | [09a 12-14 09:34:26.90 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 | [09b 12-14 09:34:26.90 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [086 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org1.example.com | [079 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org1.example.com | [0a9 12-14 09:34:27.60 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.5 launch seq completed +peer0.org2.example.com | [09c 12-14 09:34:26.90 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.5 +peer1.org2.example.com | [090 12-14 09:34:34.34 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 | [091 12-14 09:34:34.34 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.org2.example.com | [092 12-14 09:34:34.34 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.5(networkid:dev,peerid:peer1.org2.example.com) +orderer.example.com | [087 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +peer0.org1.example.com | [0aa 12-14 09:34:27.60 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 | [09d 12-14 09:34:26.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 | [07a 12-14 09:34:35.30 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----- +explorer | [2017-12-14 09:35:01.130] [ERROR] Query - Error: Missing userContext parameter +orderer.example.com | [088 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [09e 12-14 09:34:26.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.5 +peer1.org2.example.com | [093 12-14 09:34:34.34 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 | MIICGTCCAb+gAwIBAgIQJgBYBKOHst//mfTjpUw1gzAKBggqhkjOPQQDAjBzMQsw +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org1.example.com | [0ab 12-14 09:34:27.60 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 | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [09f 12-14 09:34:26.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org2.example.com | [094 12-14 09:34:34.34 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 | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [0ac 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8233d972]Move state message READY +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [0a0 12-14 09:34:26.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.5 +peer1.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +peer0.org2.example.com | [0a1 12-14 09:34:26.90 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 | [0ad 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8233d972]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MTlaFw0yNzExMjkxMzU3MTla +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [0a2 12-14 09:34:26.90 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 | [0ae 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [8233d972]Entered state ready +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +peer0.org2.example.com | [0a3 12-14 09:34:26.90 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.5 +peer0.org1.example.com | [0af 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:8233d972-ceaf-4301-a12b-09286a8e27d1 +peer0.org1.example.com | [0b0 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8233d972]sending state message READY +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer0.org2.example.com | [0a4 12-14 09:34:26.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.5" , sending back REGISTERED +peer0.org2.example.com | [0a6 12-14 09:34:26.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org2.example.com | [0a7 12-14 09:34:26.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [0a8 12-14 09:34:26.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org2.example.com | [0a5 12-14 09:34:26.90 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 | [0a9 12-14 09:34:26.90 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.5 launch seq completed +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 | [095 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.5) lock +peer1.org2.example.com | [096 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.5) lock +peer1.org2.example.com | [097 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.5 +peer1.org2.example.com | [098 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.5) +peer1.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw +peer1.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE2iZEUIvLgKANslGKRrDsQ67PZuvMBlD4 +peer0.org1.example.com | [0b1 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8233d972]Received message READY from shim +peer0.org1.example.com | [0b2 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8233d972]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [0b3 12-14 09:34:27.60 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 | [0aa 12-14 09:34:26.90 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 | [0ab 12-14 09:34:26.90 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 12-14 09:34:26.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [055d1d0a]Move state message READY +peer1.org2.example.com | [099 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.5 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [0b4 12-14 09:34:27.60 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 | BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 +peer1.org1.example.com | s0XhzjlArKmtSEGzhr1O43IKz4TR8B3viyT0jO6L1RVDUgtdCsH5AaNNMEswDgYD +peer0.org2.example.com | [0ad 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [055d1d0a]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [09a 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +explorer | [2017-12-14 09:35:01.131] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +orderer.example.com | +/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer0.org2.example.com | [0ae 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [055d1d0a]Entered state ready +peer0.org2.example.com | [0af 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:055d1d0a-d6b0-4046-9906-c30359cfdb34 +peer0.org1.example.com | [0b5 12-14 09:34:27.60 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 | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgejjZ4+nTXyF3 +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN +peer0.org2.example.com | [0b0 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [055d1d0a]sending state message READY +peer0.org1.example.com | [0b6 12-14 09:34:27.60 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.5 +peer1.org1.example.com | xi1tKI3DL8VylH+vPkEFOLmgRS6hq/gwCgYIKoZIzj0EAwIDSAAwRQIhAPICTsf5 +peer1.org2.example.com | [09b 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 56): Error: Cannot save null userContext. +orderer.example.com | wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 +peer0.org1.example.com | [0b7 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8233d972]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [0b1 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [055d1d0a]Received message READY from shim +peer1.org1.example.com | Yr2bvGRg2G85IveggOvKM6+3IyhjSP4E3xH2AiBW4QjCDtZlYyGK5vilFR7hzeZV +orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL +peer1.org2.example.com | [09c 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.5 +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org2.example.com | [0b2 12-14 09:34:26.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 +peer1.org1.example.com | ibHlRV1ViFqHbzF3ww== +orderer.example.com | liPpNxLSsBU= +peer1.org2.example.com | [09d 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org1.example.com | [0b8 12-14 09:34:27.60 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 | [0b3 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [055d1d0a]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | -----END CERTIFICATE----- +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [09e 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.5 +peer0.org1.example.com | [0b9 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8233d972]sendExecuteMsg trigger event INIT +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +orderer.example.com | [089 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [0b4 12-14 09:34:26.91 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 | [09f 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [07b 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [0ba 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8233d972]Move state message INIT +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [0b5 12-14 09:34:26.91 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 | [0bb 12-14 09:34:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8233d972]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [0a0 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | [07c 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +explorer | [2017-12-14 09:35:01.155] [ERROR] Query - Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [0bc 12-14 09:34:27.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [0b6 12-14 09:34:26.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: lscc:1.0.5 +peer1.org1.example.com | [07d 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.Verify -> DEBU Verify: digest = 00000000 05 d5 86 63 9d e4 be 97 e4 bd 00 ae e9 03 36 9f |...c..........6.| +peer1.org2.example.com | [0a1 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +explorer | [2017-12-14 09:35:02.265] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +peer0.org2.example.com | [0b7 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [055d1d0a]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [0bd 12-14 09:34:27.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8233d972]sending state message INIT +peer1.org1.example.com | 00000010 5a cb 59 e1 66 c4 51 bf 0e fc 26 05 93 e9 e1 8e |Z.Y.f.Q...&.....| +peer1.org2.example.com | [0a2 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +peer0.org2.example.com | [0b8 12-14 09:34:26.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... +peer1.org2.example.com | [0a3 12-14 09:34:34.34 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.5 +peer0.org1.example.com | [0be 12-14 09:34:27.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8233d972]Received message INIT from shim +peer1.org1.example.com | [07e 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f3 d9 2a 1d eb d8 43 60 3b 9b 99 |0E.!...*...C`;..| +peer0.org2.example.com | [0b9 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [055d1d0a]sendExecuteMsg trigger event INIT +explorer | at emitErrorNT (net.js:1281:8) +peer1.org2.example.com | [0a4 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.5" , sending back REGISTERED +orderer.example.com | zekLSULI9G2UUYA77A== +peer0.org1.example.com | [0bf 12-14 09:34:27.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8233d972]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | 00000010 e4 0c 34 39 49 54 eb b7 99 c9 ef be 12 c2 39 09 |..49IT........9.| +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [0c0 12-14 09:34:27.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [0ba 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [055d1d0a]Move state message INIT +peer1.org2.example.com | [0a5 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +orderer.example.com | [08a 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | 00000020 46 b6 19 97 79 02 20 0c 8c 02 0e 23 78 53 d4 16 |F...y. ....#xS..| +peer0.org1.example.com | [0c1 12-14 09:34:27.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [8233d972]Received INIT, initializing chaincode +peer0.org2.example.com | [0bb 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [055d1d0a]Fabric side Handling ChaincodeMessage of type: INIT in state ready +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org2.example.com | [0a6 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | 00000030 29 b2 31 e2 14 35 e4 79 2f 8d de 13 2f b3 f2 3f |).1..5.y/.../..?| +peer0.org2.example.com | [0bc 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [0a7 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [0c2 12-14 09:34:27.64 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +explorer | [2017-12-14 09:35:02.266] [ERROR] Helper - admin enrollment failed +peer1.org1.example.com | 00000040 06 3e 78 ea bb 15 46 |.>x...F| +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [0c3 12-14 09:34:27.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8233d972]Init get response status: 200 +peer1.org2.example.com | [0a8 12-14 09:34:34.34 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 | [0bd 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [055d1d0a]sending state message INIT +explorer | [2017-12-14 09:35:02.268] [ERROR] Query - Error: Missing userContext parameter +peer1.org2.example.com | [0a9 12-14 09:34:34.34 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.5 launch seq completed +peer1.org1.example.com | [07f 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.21.0.4:7051 +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [0be 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [055d1d0a]Received message INIT from shim +peer1.org1.example.com | [080 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [0c4 12-14 09:34:27.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8233d972]Init succeeded. Sending COMPLETED +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org2.example.com | [0aa 12-14 09:34:34.34 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 | [0c5 12-14 09:34:27.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8233d972]Move state message COMPLETED +peer1.org1.example.com | [081 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp] func1.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org2.example.com | [0bf 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [055d1d0a]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer1.org1.example.com | [082 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp] func1.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [0ab 12-14 09:34:34.35 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 | [0c6 12-14 09:34:27.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8233d972]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [0c0 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [0ac 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8b8e66a8]Move state message READY +peer1.org1.example.com | MIICGTCCAb+gAwIBAgIQJgBYBKOHst//mfTjpUw1gzAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [0c7 12-14 09:34:27.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8233d972]send state message COMPLETED +peer0.org2.example.com | [0c1 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [055d1d0a]Received INIT, initializing chaincode +peer1.org2.example.com | [0ad 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8b8e66a8]Fabric side Handling ChaincodeMessage of type: READY in state established +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +explorer | [2017-12-14 09:35:02.269] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer0.org1.example.com | [0c8 12-14 09:34:27.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8233d972]Received message COMPLETED from shim +peer1.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [0ae 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [8b8e66a8]Entered state ready +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +peer0.org2.example.com | [0c2 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | [0c9 12-14 09:34:27.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8233d972]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +peer1.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MTlaFw0yNzExMjkxMzU3MTla +peer1.org2.example.com | [0af 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:8b8e66a8-c727-44c4-bae8-6ad54121f62d +peer0.org2.example.com | [0c3 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [055d1d0a]Init get response status: 200 +peer0.org1.example.com | [0ca 12-14 09:34:27.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8233d972-ceaf-4301-a12b-09286a8e27d1]HandleMessage- COMPLETED. Notify +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org2.example.com | [0b0 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8b8e66a8]sending state message READY +peer0.org2.example.com | [0c4 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [055d1d0a]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [0cb 12-14 09:34:27.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8233d972-ceaf-4301-a12b-09286a8e27d1 +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 59): Error: Cannot save null userContext. +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +peer0.org2.example.com | [0c5 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [055d1d0a]Move state message COMPLETED +peer1.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw +peer1.org2.example.com | [0b1 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8b8e66a8]Received message READY from shim +peer0.org1.example.com | [0cc 12-14 09:34:27.64 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 | [0cd 12-14 09:34:27.64 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 | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +peer1.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE2iZEUIvLgKANslGKRrDsQ67PZuvMBlD4 +peer1.org1.example.com | s0XhzjlArKmtSEGzhr1O43IKz4TR8B3viyT0jO6L1RVDUgtdCsH5AaNNMEswDgYD +peer1.org1.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgejjZ4+nTXyF3 +peer1.org1.example.com | xi1tKI3DL8VylH+vPkEFOLmgRS6hq/gwCgYIKoZIzj0EAwIDSAAwRQIhAPICTsf5 +peer1.org2.example.com | [0b2 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8b8e66a8]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [0ce 12-14 09:34:27.64 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.5,txid=3b700963-472d-4a99-9f21-b70c2d0c791f,syscc=true,proposal=0x0,canname=escc:1.0.5 +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +peer0.org2.example.com | [0c6 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [055d1d0a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | Yr2bvGRg2G85IveggOvKM6+3IyhjSP4E3xH2AiBW4QjCDtZlYyGK5vilFR7hzeZV +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [08b 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [08c 12-14 09:34:35.21 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [08d 12-14 09:34:35.21 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [0cf 12-14 09:34:27.64 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.5 is being launched +peer0.org1.example.com | [0d0 12-14 09:34:27.64 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 | ibHlRV1ViFqHbzF3ww== +peer1.org2.example.com | [0b3 12-14 09:34:34.35 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 | [0b4 12-14 09:34:34.35 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 | [0b5 12-14 09:34:34.35 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 | [0b6 12-14 09:34:34.35 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.5 +peer1.org2.example.com | [0b7 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8b8e66a8]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [0b8 12-14 09:34:34.35 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 | [0b9 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8b8e66a8]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [0ba 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8b8e66a8]Move state message INIT +peer1.org2.example.com | [0bb 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8b8e66a8]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [0bc 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [0bd 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8b8e66a8]sending state message INIT +orderer.example.com | [08e 12-14 09:34:35.21 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +peer0.org2.example.com | [0c7 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [055d1d0a]send state message COMPLETED +peer0.org1.example.com | [0d1 12-14 09:34:27.64 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] +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer1.org2.example.com | [0be 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8b8e66a8]Received message INIT from shim +peer1.org1.example.com | -----END CERTIFICATE----- +orderer.example.com | [08f 12-14 09:34:35.21 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [0c8 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [055d1d0a]Received message COMPLETED from shim +peer0.org1.example.com | [0d2 12-14 09:34:27.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: escc:1.0.5(networkid:dev,peerid:peer0.org1.example.com) +peer0.org1.example.com | [0d3 12-14 09:34:27.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 args: chaincode -peer.address=peer0.org1.example.com:7052 +peer0.org1.example.com | [0d4 12-14 09:34:27.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: +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.5 +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +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.org1.example.com | [0d5 12-14 09:34:27.66 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.5) lock +peer0.org1.example.com | [0d6 12-14 09:34:27.66 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.5) lock +peer1.org2.example.com | [0bf 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8b8e66a8]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [083 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp/mgmt] createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [0c9 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [055d1d0a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [0d7 12-14 09:34:27.66 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.5 +peer1.org2.example.com | [0c0 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [084 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +explorer | [2017-12-14 09:35:02.293] [ERROR] Query - Error: Connect Failed +peer0.org2.example.com | [0ca 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [055d1d0a-d6b0-4046-9906-c30359cfdb34]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [0c1 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [8b8e66a8]Received INIT, initializing chaincode +peer1.org2.example.com | [0c2 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [0c3 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8b8e66a8]Init get response status: 200 +peer1.org2.example.com | [0c4 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8b8e66a8]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [0c5 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8b8e66a8]Move state message COMPLETED +peer1.org2.example.com | [0c6 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8b8e66a8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [0c7 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8b8e66a8]send state message COMPLETED +peer1.org2.example.com | [0c8 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8b8e66a8]Received message COMPLETED from shim +peer1.org2.example.com | [0c9 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8b8e66a8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [0ca 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8b8e66a8-c727-44c4-bae8-6ad54121f62d]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [0cb 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8b8e66a8-c727-44c4-bae8-6ad54121f62d +peer1.org2.example.com | [0cc 12-14 09:34:34.35 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 | [0cd 12-14 09:34:34.35 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 | [0ce 12-14 09:34:34.35 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.5,txid=d38e0435-d6b9-49df-9d0d-1ae67c2d684b,syscc=true,proposal=0x0,canname=escc:1.0.5 +peer1.org2.example.com | [0cf 12-14 09:34:34.35 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.5 is being launched +peer1.org2.example.com | [0d0 12-14 09:34:34.35 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 | [0d1 12-14 09:34:34.35 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.org2.example.com | [0d2 12-14 09:34:34.35 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.5(networkid:dev,peerid:peer1.org2.example.com) +peer1.org2.example.com | [0d3 12-14 09:34:34.35 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 | [0d4 12-14 09:34:34.35 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 | [0d8 12-14 09:34:27.66 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.5) +peer1.org1.example.com | [085 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572312E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [0cb 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:055d1d0a-d6b0-4046-9906-c30359cfdb34 +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.5 +peer1.org1.example.com | [086 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 852B96F443FF0CF789C1F663B87F3E422FF40E5F8C28606855A7B5861AE54CDA +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +peer0.org1.example.com | [0d9 12-14 09:34:27.66 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.5 +explorer | [2017-12-14 09:35:03.382] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer0.org2.example.com | [0cc 12-14 09:34:26.91 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 | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | [087 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp/mgmt] createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer0.org1.example.com | [0db 12-14 09:34:27.67 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.5 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [0cd 12-14 09:34:26.91 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 | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | [088 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [0ce 12-14 09:34:26.91 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.5,txid=5f897236-b813-4a86-be28-27e2fe949ffb,syscc=true,proposal=0x0,canname=escc:1.0.5 +peer0.org1.example.com | [0dc 12-14 09:34:27.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org1.example.com | [089 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267312E6578616D706C652E636F6D3A37303531 +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org2.example.com | [0cf 12-14 09:34:26.91 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.5 is being launched +peer0.org1.example.com | [0dd 12-14 09:34:27.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.5 +peer1.org1.example.com | [08a 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 5E1207E32E2709D3C49FD6E4E42EA75E054BF7CAB0517372323BB60EB639719F +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} +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer0.org1.example.com | [0de 12-14 09:34:27.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [0d0 12-14 09:34:26.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 +peer1.org1.example.com | [08b 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp/mgmt] SendToPeer.disclosurePolicy)-fm.disclosurePolicy.getOrgOfPeer.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [0d5 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.5) lock +orderer.example.com | BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [08c 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp] SendToPeer.disclosurePolicy)-fm.disclosurePolicy.getOrgOfPeer.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org1.example.com | [0da 12-14 09:34:27.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 | [0d1 12-14 09:34:26.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 | [08d 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp] SendToPeer.disclosurePolicy)-fm.disclosurePolicy.getOrgOfPeer.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer0.org1.example.com | [0df 12-14 09:34:27.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +explorer | at TLSSocket.emit (events.js:188:7) +peer1.org2.example.com | [0d6 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.5) lock +peer0.org2.example.com | [0d2 12-14 09:34:26.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: escc:1.0.5(networkid:dev,peerid:peer0.org2.example.com) +peer0.org1.example.com | [0e0 12-14 09:34:27.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +explorer | at emitErrorNT (net.js:1281:8) +peer1.org2.example.com | [0d7 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.5 +peer1.org1.example.com | MIICGTCCAb+gAwIBAgIQJgBYBKOHst//mfTjpUw1gzAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | [0d3 12-14 09:34:26.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 +peer0.org1.example.com | [0e1 12-14 09:34:27.68 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 | kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +peer0.org2.example.com | [0d4 12-14 09:34:26.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.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [0d8 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.5) +peer0.org1.example.com | [0e2 12-14 09:34:27.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 | CORE_CHAINCODE_ID_NAME=escc:1.0.5 +orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +peer1.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org2.example.com | [0d9 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.5 +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +orderer.example.com | VA7fF8MfGA== +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | [0e3 12-14 09:34:27.68 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.5 +peer1.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MTlaFw0yNzExMjkxMzU3MTla +peer1.org2.example.com | [0da 12-14 09:34:34.35 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 | -----END CERTIFICATE----- +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [0e4 12-14 09:34:27.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.5" , sending back REGISTERED +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | [090 12-14 09:34:35.21 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [0db 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | [0e5 12-14 09:34:27.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 | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw +peer0.org1.example.com | [0e6 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [0dc 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.5 +peer0.org1.example.com | [0e7 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [0dd 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +explorer | [2017-12-14 09:35:03.382] [ERROR] Helper - admin enrollment failed +peer1.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE2iZEUIvLgKANslGKRrDsQ67PZuvMBlD4 +peer0.org1.example.com | [0e8 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +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} +explorer | [2017-12-14 09:35:03.382] [ERROR] Query - Error: Missing userContext parameter +peer1.org2.example.com | [0de 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.5 +peer0.org1.example.com | [0e9 12-14 09:34:27.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 escc:1.0.5 launch seq completed +peer1.org1.example.com | s0XhzjlArKmtSEGzhr1O43IKz4TR8B3viyT0jO6L1RVDUgtdCsH5AaNNMEswDgYD +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org2.example.com | [0d5 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.5) lock +peer0.org1.example.com | [0ea 12-14 09:34:27.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 +peer1.org1.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgejjZ4+nTXyF3 +peer1.org2.example.com | [0df 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [0eb 12-14 09:34:27.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... +peer0.org1.example.com | [0ec 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b700963]Move state message READY +peer0.org1.example.com | [0ed 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b700963]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org2.example.com | [0d6 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.5) lock +explorer | [2017-12-14 09:35:03.383] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer1.org2.example.com | [0e0 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +peer0.org1.example.com | [0ee 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [3b700963]Entered state ready +peer0.org2.example.com | [0d7 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.5 +peer1.org1.example.com | xi1tKI3DL8VylH+vPkEFOLmgRS6hq/gwCgYIKoZIzj0EAwIDSAAwRQIhAPICTsf5 +peer1.org1.example.com | Yr2bvGRg2G85IveggOvKM6+3IyhjSP4E3xH2AiBW4QjCDtZlYyGK5vilFR7hzeZV +peer1.org2.example.com | [0e1 12-14 09:34:34.35 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 | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org1.example.com | [0ef 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:3b700963-472d-4a99-9f21-b70c2d0c791f +peer0.org2.example.com | [0d8 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.5) +peer1.org1.example.com | ibHlRV1ViFqHbzF3ww== +peer0.org1.example.com | [0f0 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b700963]sending state message READY +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [0e2 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +peer0.org2.example.com | [0d9 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.5 +peer1.org1.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [0f1 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b700963]Received message READY from shim +peer0.org1.example.com | [0f2 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3b700963]Handling ChaincodeMessage of type: READY(state:established) +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +peer0.org2.example.com | [0da 12-14 09:34:26.91 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 | [08e 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:8318360770093732510 tag:EMPTY mem_req: > > , Envelope: 1065 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [0e3 12-14 09:34:34.35 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.5 +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 62): Error: Cannot save null userContext. +peer0.org1.example.com | [0f3 12-14 09:34:27.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 +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +peer0.org2.example.com | [0db 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [0e4 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.5" , sending back REGISTERED +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org1.example.com | [0f4 12-14 09:34:27.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.org2.example.com | [0dc 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.5 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [08f 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:8318360770093732510 tag:EMPTY mem_req: > > , Envelope: 1065 bytes, Signature: 0 bytes +peer1.org2.example.com | [0e5 12-14 09:34:34.35 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 | [0f5 12-14 09:34:27.69 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 | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +peer0.org2.example.com | [0dd 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer0.org1.example.com | [0f6 12-14 09:34:27.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: escc:1.0.5 +peer0.org2.example.com | [0de 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.5 +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [0f7 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3b700963]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [0e6 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org2.example.com | [0df 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [090 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org1.example.com:7051 [87 254 40 172 224 130 233 118 32 0 101 135 155 98 10 13 107 42 197 18 142 226 92 151 20 251 18 179 182 138 173 181] +explorer | [2017-12-14 09:35:03.415] [ERROR] Query - Error: Connect Failed +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +peer0.org1.example.com | [0f8 12-14 09:34:27.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... +peer1.org2.example.com | [0e7 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [0e0 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [0f9 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3b700963]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [0e8 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org2.example.com | [0e1 12-14 09:34:26.91 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 | [06c 12-14 09:34:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a51bd27d]Move state message READY +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +explorer | [2017-12-14 09:35:04.465] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer0.org1.example.com | [0fa 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b700963]Move state message INIT +peer0.org2.example.com | [0e2 12-14 09:34:26.91 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 | [091 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a51bd27d]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [0e9 12-14 09:34:34.35 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.5 launch seq completed +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer0.org1.example.com | [0fb 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b700963]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [0e3 12-14 09:34:26.91 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.5 +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [092 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [a51bd27d]Entered state ready +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [0ea 12-14 09:34:34.35 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 | [0fc 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [0e4 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.5" , sending back REGISTERED +explorer | at ClientRequest.emit (events.js:188:7) +peer1.org1.example.com | [093 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:a51bd27d-b4ae-408c-a857-e3559df21e8c +peer0.org1.example.com | [0fd 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b700963]sending state message INIT +peer0.org2.example.com | [0e5 12-14 09:34:26.91 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 | [091 12-14 09:34:35.22 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [0eb 12-14 09:34:34.35 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... +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org1.example.com | [094 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a51bd27d]sending state message READY +peer0.org1.example.com | [0fe 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b700963]Received message INIT from shim +peer0.org2.example.com | [0e6 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [095 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a51bd27d]Received message READY from shim +peer1.org2.example.com | [0ec 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d38e0435]Move state message READY +peer0.org1.example.com | [0ff 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3b700963]Handling ChaincodeMessage of type: INIT(state:ready) +explorer | at TLSSocket.emit (events.js:188:7) +peer1.org1.example.com | [096 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a51bd27d]Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [0e7 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [100 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +peer1.org2.example.com | [0ed 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d38e0435]Fabric side Handling ChaincodeMessage of type: READY in state established +explorer | at emitErrorNT (net.js:1281:8) +peer0.org2.example.com | [0e8 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org1.example.com | [097 12-14 09:34:35.30 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 | [101 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [3b700963]Received INIT, initializing chaincode +peer0.org2.example.com | [0e9 12-14 09:34:26.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 escc:1.0.5 launch seq completed +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org1.example.com | [102 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | [098 12-14 09:34:35.30 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 | [0ee 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [d38e0435]Entered state ready +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +explorer | [2017-12-14 09:35:04.465] [ERROR] Helper - admin enrollment failed +peer0.org1.example.com | [103 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b700963]Init get response status: 200 +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +explorer | [2017-12-14 09:35:04.466] [ERROR] Query - Error: Missing userContext parameter +peer0.org1.example.com | [104 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b700963]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [099 12-14 09:34:35.30 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 | [0ef 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:d38e0435-d6b9-49df-9d0d-1ae67c2d684b +peer0.org2.example.com | [0ea 12-14 09:34:26.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 +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +peer0.org1.example.com | [105 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b700963]Move state message COMPLETED +peer0.org2.example.com | [0eb 12-14 09:34:26.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... +peer1.org2.example.com | [0f0 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d38e0435]sending state message READY +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org1.example.com | [106 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3b700963]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [0ec 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f897236]Move state message READY +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer1.org1.example.com | [09a 12-14 09:34:35.30 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.5 +peer1.org2.example.com | [0f1 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d38e0435]Received message READY from shim +peer0.org1.example.com | [107 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b700963]send state message COMPLETED +peer0.org2.example.com | [0ed 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5f897236]Fabric side Handling ChaincodeMessage of type: READY in state established +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org1.example.com | [09b 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a51bd27d]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [0f2 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d38e0435]Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [0ee 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [5f897236]Entered state ready +explorer | [2017-12-14 09:35:04.469] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer1.org1.example.com | [09c 12-14 09:34:35.30 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 | [108 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b700963]Received message COMPLETED from shim +peer1.org2.example.com | [0f3 12-14 09:34:34.35 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 | [0ef 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:5f897236-b813-4a86-be28-27e2fe949ffb +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer1.org1.example.com | [09d 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a51bd27d]sendExecuteMsg trigger event INIT +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +peer1.org2.example.com | [0f4 12-14 09:34:34.35 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 | [109 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b700963]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [0f0 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f897236]sending state message READY +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org1.example.com | [09e 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a51bd27d]Move state message INIT +peer0.org1.example.com | [10a 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b700963-472d-4a99-9f21-b70c2d0c791f]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [10b 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3b700963-472d-4a99-9f21-b70c2d0c791f +peer0.org2.example.com | [0f1 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f897236]Received message READY from shim +peer0.org2.example.com | [0f2 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f897236]Handling ChaincodeMessage of type: READY(state:established) +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +peer1.org2.example.com | [0f5 12-14 09:34:34.35 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 | [0f6 12-14 09:34:34.35 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.5 +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 65): Error: Cannot save null userContext. +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer1.org1.example.com | [09f 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a51bd27d]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [10c 12-14 09:34:27.69 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 | [10d 12-14 09:34:27.69 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 | [10e 12-14 09:34:27.69 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.5,txid=1e0767b8-577a-4862-a13c-9df7347f313e,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer0.org1.example.com | [10f 12-14 09:34:27.69 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.5 is being launched +peer1.org2.example.com | [0f7 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d38e0435]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [0f8 12-14 09:34:34.35 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 | [0f9 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d38e0435]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [0fa 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d38e0435]Move state message INIT +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [110 12-14 09:34:27.69 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 | [0a0 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [0f3 12-14 09:34:26.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.org2.example.com | [0f4 12-14 09:34:26.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 | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +peer0.org1.example.com | [111 12-14 09:34:27.69 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 | [0a1 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a51bd27d]sending state message INIT +peer1.org2.example.com | [0fb 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d38e0435]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [0f5 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +explorer | [2017-12-14 09:35:04.500] [ERROR] Query - Error: Connect Failed +peer0.org1.example.com | [112 12-14 09:34:27.69 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.5(networkid:dev,peerid:peer0.org1.example.com) +peer1.org1.example.com | [0a2 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a51bd27d]Received message INIT from shim +peer1.org2.example.com | [0fc 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [0f6 12-14 09:34:26.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: escc:1.0.5 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +peer0.org1.example.com | [113 12-14 09:34:27.69 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 | [0fd 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d38e0435]sending state message INIT +peer1.org2.example.com | [0fe 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d38e0435]Received message INIT from shim +peer1.org2.example.com | [0ff 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d38e0435]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [0f7 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5f897236]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [0f8 12-14 09:34:26.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... +peer1.org1.example.com | [0a3 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a51bd27d]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [0a4 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [0a5 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [a51bd27d]Received INIT, initializing chaincode +explorer | [2017-12-14 09:35:05.542] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer0.org1.example.com | [114 12-14 09:34:27.69 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 | CORE_CHAINCODE_ID_NAME=vscc:1.0.5 +peer0.org2.example.com | [0f9 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5f897236]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [0fa 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f897236]Move state message INIT +peer1.org1.example.com | [0a6 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer1.org1.example.com | [0a7 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [100 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | [0fb 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5f897236]Fabric side Handling ChaincodeMessage of type: INIT in state ready +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer1.org1.example.com | [0a8 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a51bd27d]Init get response status: 200 +peer1.org2.example.com | [101 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d38e0435]Received INIT, initializing chaincode +orderer.example.com | [092 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [093 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [0a9 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a51bd27d]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [0fc 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [102 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +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 | [0aa 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a51bd27d]Move state message COMPLETED +orderer.example.com | [094 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org2.example.com | [103 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d38e0435]Init get response status: 200 +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org2.example.com | [0fd 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f897236]sending state message INIT +peer0.org2.example.com | [0fe 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f897236]Received message INIT from shim +peer0.org2.example.com | [0ff 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f897236]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | [095 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +peer0.org1.example.com | [115 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.5) lock +peer1.org1.example.com | [0ab 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a51bd27d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at emitErrorNT (net.js:1281:8) +peer1.org2.example.com | [104 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d38e0435]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [100 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | [096 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [116 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.5) lock +peer0.org1.example.com | [117 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.5 +peer0.org1.example.com | [118 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.5) +peer0.org1.example.com | [119 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.5 +peer0.org1.example.com | [11a 12-14 09:34:27.69 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 | [11b 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [0ac 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a51bd27d]send state message COMPLETED +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer1.org2.example.com | [105 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d38e0435]Move state message COMPLETED +peer1.org2.example.com | [106 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d38e0435]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [107 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d38e0435]send state message COMPLETED +peer0.org2.example.com | [101 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [5f897236]Received INIT, initializing chaincode +peer0.org1.example.com | [11c 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.5 +peer1.org1.example.com | [0ad 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a51bd27d]Received message COMPLETED from shim +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +peer1.org2.example.com | [108 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d38e0435]Received message COMPLETED from shim +peer0.org1.example.com | [11d 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org1.example.com | [11e 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.5 +peer1.org1.example.com | [0ae 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a51bd27d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [102 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer1.org2.example.com | [109 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d38e0435]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [10a 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d38e0435-d6b9-49df-9d0d-1ae67c2d684b]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [10b 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d38e0435-d6b9-49df-9d0d-1ae67c2d684b +peer1.org2.example.com | [10c 12-14 09:34:34.35 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 | [10d 12-14 09:34:34.35 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.org2.example.com | [10e 12-14 09:34:34.35 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.5,txid=1b1c044d-6e15-46b4-8da1-44c7ede43edd,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer1.org2.example.com | [10f 12-14 09:34:34.35 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.5 is being launched +peer1.org2.example.com | [110 12-14 09:34:34.35 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 12-14 09:34:34.35 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.org2.example.com | [112 12-14 09:34:34.35 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.5(networkid:dev,peerid:peer1.org2.example.com) +peer1.org2.example.com | [113 12-14 09:34:34.35 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 | [114 12-14 09:34:34.35 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: +explorer | [2017-12-14 09:35:05.544] [ERROR] Helper - admin enrollment failed +peer0.org1.example.com | [11f 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [120 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | [0af 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a51bd27d-b4ae-408c-a857-e3559df21e8c]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [0b0 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a51bd27d-b4ae-408c-a857-e3559df21e8c +peer1.org1.example.com | [0b1 12-14 09:34:35.30 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 | [0b2 12-14 09:34:35.30 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 | [103 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f897236]Init get response status: 200 +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +peer0.org1.example.com | [121 12-14 09:34:27.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 | [104 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f897236]Init succeeded. Sending COMPLETED +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.5 +explorer | [2017-12-14 09:35:05.544] [ERROR] Query - Error: Missing userContext parameter +peer1.org1.example.com | [0b3 12-14 09:34:35.30 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.5,txid=f98d7d67-e300-4186-8c67-b60214ca5bbf,syscc=true,proposal=0x0,canname=lscc:1.0.5 +orderer.example.com | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +peer0.org1.example.com | [122 12-14 09:34:27.69 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 | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | [105 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f897236]Move state message COMPLETED +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer1.org1.example.com | [0b4 12-14 09:34:35.30 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.5 is being launched +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org1.example.com | [123 12-14 09:34:27.69 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.5 +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org2.example.com | [106 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f897236]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org1.example.com | [0b5 12-14 09:34:35.30 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 | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org1.example.com | [124 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.5" , sending back REGISTERED +orderer.example.com | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +peer1.org1.example.com | [0b6 12-14 09:34:35.30 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 | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer0.org2.example.com | [107 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f897236]send state message COMPLETED +peer0.org1.example.com | [125 12-14 09:34:27.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 | [0b7 12-14 09:34:35.30 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.5(networkid:dev,peerid:peer1.org1.example.com) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org2.example.com | [108 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f897236]Received message COMPLETED from shim +orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +peer1.org2.example.com | [115 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.5) lock +peer0.org1.example.com | [126 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +explorer | [2017-12-14 09:35:05.545] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer1.org1.example.com | [0b8 12-14 09:34:35.30 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 | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +peer1.org2.example.com | [116 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.5) lock +peer0.org2.example.com | [109 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5f897236]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [127 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer1.org2.example.com | [117 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.5 +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [0b9 12-14 09:34:35.30 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 | [10a 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5f897236-b813-4a86-be28-27e2fe949ffb]HandleMessage- COMPLETED. Notify +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [118 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.5) +orderer.example.com | [097 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.5 +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 68): Error: Cannot save null userContext. +peer0.org1.example.com | [128 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org2.example.com | [11a 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.5 +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org2.example.com | [10b 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5f897236-b813-4a86-be28-27e2fe949ffb +peer0.org1.example.com | [129 12-14 09:34:27.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 vscc:1.0.5 launch seq completed +peer1.org2.example.com | [119 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.5 +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [11c 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer0.org1.example.com | [12a 12-14 09:34:27.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 +peer1.org2.example.com | [11b 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org2.example.com | [10c 12-14 09:34:26.91 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 | CORE_CHAINCODE_LOGGING_SHIM=warning +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [12b 12-14 09:34:27.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.org2.example.com | [11d 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.5 +peer0.org2.example.com | [10d 12-14 09:34:26.91 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} +explorer | [2017-12-14 09:35:05.558] [ERROR] Query - Error: Connect Failed +peer1.org2.example.com | [11e 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +peer0.org2.example.com | [10e 12-14 09:34:26.91 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.5,txid=98a39399-307f-4c31-b50f-0764f33b43e0,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer0.org1.example.com | [12c 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1e0767b8]Move state message READY +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [11f 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [0ba 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.5) lock +peer0.org2.example.com | [10f 12-14 09:34:26.91 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.5 is being launched +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +explorer | [2017-12-14 09:35:06.656] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer1.org2.example.com | [120 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [12d 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1e0767b8]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [0bb 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.5) lock +peer1.org2.example.com | [121 12-14 09:34:34.36 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 | [110 12-14 09:34:26.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 +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org1.example.com | [12e 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [1e0767b8]Entered state ready +peer1.org1.example.com | [0bc 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.5 +peer1.org1.example.com | [0be 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.5 +peer1.org1.example.com | [0bf 12-14 09:34:35.30 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 | [0c0 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [0c1 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.5 +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [098 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [111 12-14 09:34:26.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.org2.example.com | [122 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +peer0.org1.example.com | [12f 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:1e0767b8-577a-4862-a13c-9df7347f313e +peer0.org1.example.com | [130 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1e0767b8]sending state message READY +peer1.org2.example.com | [123 12-14 09:34:34.36 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.5 +peer1.org1.example.com | [0c2 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org2.example.com | [112 12-14 09:34:26.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: vscc:1.0.5(networkid:dev,peerid:peer0.org2.example.com) +peer0.org1.example.com | [131 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e0767b8]Received message READY from shim +peer1.org2.example.com | [124 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.5" , sending back REGISTERED +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer0.org2.example.com | [113 12-14 09:34:26.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 +peer0.org1.example.com | [132 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1e0767b8]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [125 12-14 09:34:34.36 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 | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org1.example.com | [0c3 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.5 +explorer | [2017-12-14 09:35:06.656] [ERROR] Helper - admin enrollment failed +peer0.org2.example.com | [114 12-14 09:34:26.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 | [126 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org1.example.com | [133 12-14 09:34:27.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 +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org1.example.com | [0c4 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org2.example.com | [127 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [134 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 71): Error: Cannot save null userContext. +peer1.org1.example.com | [0c5 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.5 +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +peer1.org2.example.com | [128 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org1.example.com | [135 12-14 09:34:27.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 | CORE_PEER_TLS_ENABLED=true +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [0c6 12-14 09:34:35.30 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 | [136 12-14 09:34:27.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: vscc:1.0.5 +peer1.org2.example.com | [129 12-14 09:34:34.36 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.5 launch seq completed +explorer | error: [Channel.js]: Failed Query channel info. Error: Error: Connect Failed +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | [0c7 12-14 09:34:35.30 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 | [12a 12-14 09:34:34.36 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 | [137 12-14 09:34:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1e0767b8]Inside sendExecuteMessage. Message INIT +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | [12b 12-14 09:34:34.36 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 | [138 12-14 09:34:27.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... +peer1.org1.example.com | [0c8 12-14 09:34:35.30 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.5 +explorer | [2017-12-14 09:35:06.669] [ERROR] Query - Error: Connect Failed +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +peer1.org2.example.com | [12c 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1b1c044d]Move state message READY +peer0.org1.example.com | [139 12-14 09:34:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1e0767b8]sendExecuteMsg trigger event INIT +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [0c9 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.5" , sending back REGISTERED +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 | [12d 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1b1c044d]Fabric side Handling ChaincodeMessage of type: READY in state established +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | [099 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer1.org1.example.com | [0ca 12-14 09:34:35.30 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 | [13a 12-14 09:34:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1e0767b8]Move state message INIT +peer1.org2.example.com | [12e 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [1b1c044d]Entered state ready +explorer | [2017-12-14 09:35:06.669] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +orderer.example.com | [09a 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +peer0.org2.example.com | [115 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.5) lock +peer0.org1.example.com | [13b 12-14 09:34:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1e0767b8]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [0cb 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +orderer.example.com | [09b 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +peer1.org2.example.com | [12f 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:1b1c044d-6e15-46b4-8da1-44c7ede43edd +peer0.org2.example.com | [116 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.5) lock +peer0.org1.example.com | [13c 12-14 09:34:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [0cc 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org2.example.com | [117 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.5 +orderer.example.com | [09c 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer1.org2.example.com | [130 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1b1c044d]sending state message READY +peer0.org1.example.com | [13d 12-14 09:34:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1e0767b8]sending state message INIT +orderer.example.com | [09d 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to SampleConsortium +peer1.org1.example.com | [0cd 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [13e 12-14 09:34:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e0767b8]Received message INIT from shim +peer1.org2.example.com | [131 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1b1c044d]Received message READY from shim +peer0.org2.example.com | [118 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.5) +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +orderer.example.com | [09e 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer1.org2.example.com | [132 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1b1c044d]Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [119 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.5 +peer1.org1.example.com | [0bd 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.5) +peer0.org1.example.com | [13f 12-14 09:34:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1e0767b8]Handling ChaincodeMessage of type: INIT(state:ready) +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [133 12-14 09:34:34.36 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 | [09f 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to SampleConsortium +peer0.org2.example.com | [11a 12-14 09:34:26.91 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 | [0ce 12-14 09:34:35.30 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.5 launch seq completed +explorer | [2017-12-14 09:35:06.677] [ERROR] Query - Error: Connect Failed +peer0.org1.example.com | [140 12-14 09:34:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [134 12-14 09:34:34.36 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 | [11b 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [0cf 12-14 09:34:35.30 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 | [0a0 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [141 12-14 09:34:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [1e0767b8]Received INIT, initializing chaincode +peer1.org2.example.com | [135 12-14 09:34:34.36 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 | [11c 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.5 +explorer | [2017-12-14 09:35:07.789] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +orderer.example.com | [0a1 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to SampleConsortium +peer0.org1.example.com | [142 12-14 09:34:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e0767b8]Init get response status: 200 +peer1.org1.example.com | [0d0 12-14 09:34:35.30 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... +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer0.org2.example.com | [11d 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +peer1.org2.example.com | [136 12-14 09:34:34.36 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.5 +orderer.example.com | [0a2 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer1.org1.example.com | [0d1 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f98d7d67]Move state message READY +peer0.org1.example.com | [143 12-14 09:34:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e0767b8]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [11e 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.5 +explorer | at emitOne (events.js:96:13) +orderer.example.com | [0a3 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to SampleConsortium +peer1.org1.example.com | [0d2 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f98d7d67]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org2.example.com | [11f 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org2.example.com | [137 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1b1c044d]Inside sendExecuteMessage. Message INIT +orderer.example.com | [0a4 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [144 12-14 09:34:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e0767b8]Move state message COMPLETED +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org2.example.com | [120 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | [0d3 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [f98d7d67]Entered state ready +peer1.org2.example.com | [138 12-14 09:34:34.36 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 | [0a5 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to SampleConsortium +peer0.org1.example.com | [145 12-14 09:34:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1e0767b8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org2.example.com | [139 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1b1c044d]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [0d4 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:f98d7d67-e300-4186-8c67-b60214ca5bbf +peer0.org2.example.com | [121 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +explorer | at emitOne (events.js:96:13) +orderer.example.com | [0a6 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [146 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e0767b8]send state message COMPLETED +peer1.org2.example.com | [13a 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1b1c044d]Move state message INIT +peer1.org1.example.com | [0d5 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f98d7d67]sending state message READY +explorer | at TLSSocket.emit (events.js:188:7) +orderer.example.com | [0a7 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to SampleConsortium +orderer.example.com | [0a8 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +peer0.org2.example.com | [122 12-14 09:34:26.91 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 | [13b 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1b1c044d]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [0d7 12-14 09:34:35.30 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 | [147 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1e0767b8]Received message COMPLETED from shim +explorer | at emitErrorNT (net.js:1281:8) +orderer.example.com | [0a9 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org2MSP/Admins to Consortiums +peer1.org2.example.com | [13c 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [148 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1e0767b8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [123 12-14 09:34:26.91 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.5 +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer1.org1.example.com | [0d8 12-14 09:34:35.30 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 | [0aa 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +peer1.org2.example.com | [13d 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1b1c044d]sending state message INIT +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer0.org2.example.com | [124 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.5" , sending back REGISTERED +orderer.example.com | [0ab 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org2MSP/Readers to Consortiums +peer0.org1.example.com | [149 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1e0767b8-577a-4862-a13c-9df7347f313e]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [0d9 12-14 09:34:35.30 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 | [13e 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1b1c044d]Received message INIT from shim +peer0.org2.example.com | [125 12-14 09:34:26.91 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 | [0ac 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +explorer | [2017-12-14 09:35:07.789] [ERROR] Helper - admin enrollment failed +peer0.org1.example.com | [14a 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1e0767b8-577a-4862-a13c-9df7347f313e +peer1.org2.example.com | [13f 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1b1c044d]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [126 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org1.example.com | [0da 12-14 09:34:35.30 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.5 +explorer | [2017-12-14 09:35:07.790] [ERROR] Query - Error: Missing userContext parameter +peer1.org2.example.com | [140 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [127 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [14b 12-14 09:34:27.76 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 | [0db 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f98d7d67]Inside sendExecuteMessage. Message INIT +orderer.example.com | [0ad 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org2MSP/Writers to Consortiums +peer1.org2.example.com | [141 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [1b1c044d]Received INIT, initializing chaincode +peer0.org2.example.com | [129 12-14 09:34:26.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.5 launch seq completed +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +orderer.example.com | [0ae 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +peer1.org1.example.com | [0dc 12-14 09:34:35.30 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 | [142 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1b1c044d]Init get response status: 200 +peer0.org1.example.com | [14c 12-14 09:34:27.76 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 +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer0.org2.example.com | [12a 12-14 09:34:26.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 | [143 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1b1c044d]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [14d 12-14 09:34:27.76 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.5,txid=0b93fcb9-f492-413e-8194-e6ea70f04ddf,syscc=true,proposal=0x0,canname=qscc:1.0.5 +orderer.example.com | [0af 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org1MSP/Readers to Consortiums +peer1.org1.example.com | [0dd 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f98d7d67]sendExecuteMsg trigger event INIT +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer0.org2.example.com | [12b 12-14 09:34:26.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... +peer1.org2.example.com | [144 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1b1c044d]Move state message COMPLETED +peer0.org1.example.com | [14e 12-14 09:34:27.76 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.5 is being launched +orderer.example.com | [0b0 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +peer1.org1.example.com | [0de 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f98d7d67]Move state message INIT +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org2.example.com | [12c 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [98a39399]Move state message READY +peer1.org2.example.com | [145 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1b1c044d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [14f 12-14 09:34:27.76 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 | [150 12-14 09:34:27.76 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 | [151 12-14 09:34:27.76 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.5(networkid:dev,peerid:peer0.org1.example.com) +peer0.org1.example.com | [152 12-14 09:34:27.76 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 12-14 09:34:27.76 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 | CORE_CHAINCODE_ID_NAME=qscc:1.0.5 +orderer.example.com | [0b1 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org1MSP/Writers to Consortiums +orderer.example.com | [0b2 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +peer1.org1.example.com | [0df 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f98d7d67]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [12d 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [98a39399]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [146 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1b1c044d]send state message COMPLETED +peer1.org2.example.com | [147 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1b1c044d]Received message COMPLETED from shim +peer1.org2.example.com | [148 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1b1c044d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [149 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1b1c044d-6e15-46b4-8da1-44c7ede43edd]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [14a 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1b1c044d-6e15-46b4-8da1-44c7ede43edd +peer1.org2.example.com | [14b 12-14 09:34:34.36 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 | [14c 12-14 09:34:34.36 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 | [14d 12-14 09:34:34.36 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.5,txid=f0b12c8c-8646-4ba1-bacc-4f63df5013f9,syscc=true,proposal=0x0,canname=qscc:1.0.5 +peer1.org2.example.com | [14e 12-14 09:34:34.36 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.5 is being launched +peer1.org2.example.com | [14f 12-14 09:34:34.36 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 | [150 12-14 09:34:34.36 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.org2.example.com | [151 12-14 09:34:34.36 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.5(networkid:dev,peerid:peer1.org2.example.com) +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +explorer | [2017-12-14 09:35:07.790] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer1.org1.example.com | [0e0 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [0e1 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f98d7d67]sending state message INIT +peer0.org2.example.com | [12e 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [98a39399]Entered state ready +peer0.org2.example.com | [12f 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:98a39399-307f-4c31-b50f-0764f33b43e0 +peer0.org2.example.com | [130 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [98a39399]sending state message READY +peer0.org2.example.com | [131 12-14 09:34:26.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.org2.example.com | [132 12-14 09:34:26.91 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 | [133 12-14 09:34:26.91 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 12-14 09:34:26.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.5 +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 76): Error: Cannot save null userContext. +orderer.example.com | [0b3 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org1MSP/Admins to Consortiums +orderer.example.com | [0b4 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org2.example.com | [135 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [98a39399]Inside sendExecuteMessage. Message INIT +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.org1.example.com | [154 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.5) lock +peer0.org1.example.com | [155 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.5) lock +peer1.org2.example.com | [152 12-14 09:34:34.36 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 | [0b5 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | [0b6 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org2.example.com | [136 12-14 09:34:26.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... +peer1.org1.example.com | [0d6 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f98d7d67]Received message READY from shim +peer1.org1.example.com | [0e2 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f98d7d67]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [156 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.5 +peer0.org1.example.com | [157 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.5) +peer0.org1.example.com | [159 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.5 +peer0.org1.example.com | [15a 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org1.example.com | [15b 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.5 +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:35:07.824] [ERROR] Query - Error: Connect Failed +orderer.example.com | [0b7 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +peer1.org1.example.com | [0e3 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f98d7d67]Received message INIT from shim +peer1.org1.example.com | [0e4 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f98d7d67]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [137 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [98a39399]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [128 12-14 09:34:26.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org2.example.com | [138 12-14 09:34:26.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [98a39399]Received message READY from shim +peer0.org2.example.com | [139 12-14 09:34:26.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [98a39399]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [15c 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [158 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.5 +peer0.org1.example.com | [15d 12-14 09:34:27.76 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 | [0e5 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | [0b8 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer1.org2.example.com | [153 12-14 09:34:34.36 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: +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [13a 12-14 09:34:26.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [98a39399]Move state message INIT +peer0.org1.example.com | [15e 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [0e6 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [f98d7d67]Received INIT, initializing chaincode +orderer.example.com | [0b9 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.5 +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 | [154 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.5) lock +explorer | [2017-12-14 09:35:08.891] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org2.example.com | [13b 12-14 09:34:26.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [98a39399]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [13c 12-14 09:34:26.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [13d 12-14 09:34:26.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [98a39399]sending state message INIT +peer0.org2.example.com | [13e 12-14 09:34:26.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [98a39399]Received message INIT from shim +peer0.org1.example.com | [15f 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +explorer | at emitErrorNT (net.js:1281:8) +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer1.org1.example.com | [0e7 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [155 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.5) lock +peer0.org2.example.com | [13f 12-14 09:34:26.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [98a39399]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [140 12-14 09:34:26.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [141 12-14 09:34:26.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [98a39399]Received INIT, initializing chaincode +peer0.org2.example.com | [142 12-14 09:34:26.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [98a39399]Init get response status: 200 +peer0.org1.example.com | [160 12-14 09:34:27.76 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 | [161 12-14 09:34:27.76 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 | [162 12-14 09:34:27.76 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.5 +peer1.org1.example.com | [0e8 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f98d7d67]Init get response status: 200 +peer1.org1.example.com | [0e9 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f98d7d67]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [0ea 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f98d7d67]Move state message COMPLETED +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +explorer | [2017-12-14 09:35:08.892] [ERROR] Helper - admin enrollment failed +explorer | [2017-12-14 09:35:08.892] [ERROR] Query - Error: Missing userContext parameter +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer1.org2.example.com | [156 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.5 +peer1.org2.example.com | [157 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.5) +orderer.example.com | [0ba 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [0bb 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [0bc 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org2.example.com | [143 12-14 09:34:26.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [98a39399]Init succeeded. Sending COMPLETED +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [163 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.5" , sending back REGISTERED +peer0.org1.example.com | [165 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [158 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.5 +orderer.example.com | [0bd 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org2.example.com | [144 12-14 09:34:26.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [98a39399]Move state message COMPLETED +explorer | [2017-12-14 09:35:08.893] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer1.org1.example.com | [0eb 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f98d7d67]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [166 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +orderer.example.com | [0be 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org2MSP/Writers for evaluation +peer0.org2.example.com | [145 12-14 09:34:26.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [98a39399]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [167 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org1.example.com | [0ec 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f98d7d67]send state message COMPLETED +peer1.org2.example.com | [159 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +orderer.example.com | [0bf 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Writers to Channel +peer0.org2.example.com | [146 12-14 09:34:26.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [98a39399]send state message COMPLETED +peer0.org1.example.com | [164 12-14 09:34:27.76 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 | [0ed 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f98d7d67]Received message COMPLETED from shim +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 79): Error: Cannot save null userContext. +peer1.org2.example.com | [15a 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.5 +peer0.org2.example.com | [147 12-14 09:34:26.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [98a39399]Received message COMPLETED from shim +orderer.example.com | [0c0 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org1MSP/Readers for evaluation +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org1.example.com | [0ee 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f98d7d67]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [168 12-14 09:34:27.76 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.5 launch seq completed +peer1.org2.example.com | [15b 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org2.example.com | [148 12-14 09:34:26.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [98a39399]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [0ef 12-14 09:34:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f98d7d67-e300-4186-8c67-b60214ca5bbf]HandleMessage- COMPLETED. Notify +orderer.example.com | [0c1 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Readers to Channel +peer0.org1.example.com | [169 12-14 09:34:27.76 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 | [0f0 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f98d7d67-e300-4186-8c67-b60214ca5bbf +peer0.org2.example.com | [149 12-14 09:34:26.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [98a39399-307f-4c31-b50f-0764f33b43e0]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [15d 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.5 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +orderer.example.com | [0c2 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org1MSP/Writers for evaluation +peer1.org1.example.com | [0f1 12-14 09:34:35.31 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 | [16a 12-14 09:34:27.76 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... +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [14a 12-14 09:34:26.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:98a39399-307f-4c31-b50f-0764f33b43e0 +orderer.example.com | [0c3 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Writers to Channel +peer1.org2.example.com | [15c 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [0f2 12-14 09:34:35.31 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 | [16b 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b93fcb9]Move state message READY +explorer | [2017-12-14 09:35:08.910] [ERROR] Query - Error: Connect Failed +peer0.org2.example.com | [14b 12-14 09:34:26.93 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 | [0c4 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org1MSP/Admins for evaluation +peer1.org2.example.com | [15e 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [0f3 12-14 09:34:35.31 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.5,txid=e5130d81-2d99-4cae-aed6-ae7086543eb7,syscc=true,proposal=0x0,canname=escc:1.0.5 +peer0.org1.example.com | [16c 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0b93fcb9]Fabric side Handling ChaincodeMessage of type: READY in state established +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | [0c5 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Admins to Channel +peer0.org2.example.com | [14c 12-14 09:34:26.93 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 | [15f 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +explorer | [2017-12-14 09:35:09.997] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +orderer.example.com | [0c6 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [16d 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [0b93fcb9]Entered state ready +peer0.org2.example.com | [14d 12-14 09:34:26.93 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.5,txid=d07c2fd4-6f8f-45f5-88a1-32184ac021bb,syscc=true,proposal=0x0,canname=qscc:1.0.5 +peer1.org1.example.com | [0f4 12-14 09:34:35.31 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.5 is being launched +orderer.example.com | [0c7 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/Admins to Channel +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer0.org1.example.com | [16e 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:0b93fcb9-f492-413e-8194-e6ea70f04ddf +peer0.org2.example.com | [14e 12-14 09:34:26.93 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.5 is being launched +peer1.org2.example.com | [160 12-14 09:34:34.36 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 | [0f5 12-14 09:34:35.31 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 | [0c8 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org2MSP/Admins for evaluation +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [0f6 12-14 09:34:35.31 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 | [0c9 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Admins to Channel +peer1.org2.example.com | [161 12-14 09:34:34.36 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 | [14f 12-14 09:34:26.93 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 +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org1.example.com | [16f 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b93fcb9]sending state message READY +peer1.org2.example.com | [162 12-14 09:34:34.36 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.5 +peer0.org2.example.com | [150 12-14 09:34:26.93 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 | [0f7 12-14 09:34:35.31 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.5(networkid:dev,peerid:peer1.org1.example.com) +orderer.example.com | [0ca 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org2MSP/Readers for evaluation +peer0.org1.example.com | [170 12-14 09:34:27.76 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 | [163 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.5" , sending back REGISTERED +peer1.org1.example.com | [0f8 12-14 09:34:35.31 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 | [151 12-14 09:34:26.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: qscc:1.0.5(networkid:dev,peerid:peer0.org2.example.com) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org1.example.com | [0f9 12-14 09:34:35.31 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 | [0cb 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Readers to Channel +peer0.org1.example.com | [171 12-14 09:34:27.76 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 | [164 12-14 09:34:34.36 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 | [152 12-14 09:34:26.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=peer0.org2.example.com:7052 +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.5 +orderer.example.com | [0cc 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +peer1.org2.example.com | [165 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org1.example.com | [172 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +explorer | at TLSSocket.emit (events.js:188:7) +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | [153 12-14 09:34:26.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: +orderer.example.com | [0cd 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +peer0.org1.example.com | [173 12-14 09:34:27.76 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.5 +peer0.org1.example.com | [174 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0b93fcb9]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [166 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +explorer | at emitErrorNT (net.js:1281:8) +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.5 +peer0.org1.example.com | [175 12-14 09:34:27.76 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 | [0ce 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +peer1.org2.example.com | [167 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [176 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0b93fcb9]sendExecuteMsg trigger event INIT +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org1.example.com | [177 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b93fcb9]Received message READY from shim +peer1.org2.example.com | [168 12-14 09:34:34.36 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.5 launch seq completed +orderer.example.com | [0cf 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +peer0.org1.example.com | [178 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0b93fcb9]Handling ChaincodeMessage of type: READY(state:established) +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 | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org2.example.com | [169 12-14 09:34:34.36 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 +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer0.org1.example.com | [179 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b93fcb9]Move state message INIT +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | [0d0 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer1.org2.example.com | [16a 12-14 09:34:34.36 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 | [17a 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0b93fcb9]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [0fa 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.5) lock +orderer.example.com | [0d1 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +explorer | [2017-12-14 09:35:09.998] [ERROR] Helper - admin enrollment failed +peer0.org1.example.com | [17b 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [16b 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f0b12c8c]Move state message READY +peer1.org1.example.com | [0fb 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.5) lock +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 | [0d2 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [17c 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b93fcb9]sending state message INIT +explorer | [2017-12-14 09:35:10.002] [ERROR] Query - Error: Missing userContext parameter +peer0.org2.example.com | [154 12-14 09:34:26.93 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.5) lock +peer1.org2.example.com | [16c 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f0b12c8c]Fabric side Handling ChaincodeMessage of type: READY in state established +orderer.example.com | [0d3 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +peer0.org1.example.com | [17d 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b93fcb9]Received message INIT from shim +peer1.org1.example.com | [0fc 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.5 +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +orderer.example.com | [0d4 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [17e 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0b93fcb9]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [16d 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [f0b12c8c]Entered state ready +peer1.org1.example.com | [0fd 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.5) +peer0.org2.example.com | [155 12-14 09:34:26.93 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.5) lock +orderer.example.com | [0d5 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +peer0.org1.example.com | [17f 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [0ff 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.5 +peer1.org2.example.com | [16e 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:f0b12c8c-8646-4ba1-bacc-4f63df5013f9 +orderer.example.com | [0d6 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +peer0.org1.example.com | [180 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [0b93fcb9]Received INIT, initializing chaincode +peer1.org2.example.com | [16f 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f0b12c8c]sending state message READY +peer0.org2.example.com | [156 12-14 09:34:26.93 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.5 +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +orderer.example.com | [0d7 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +peer0.org1.example.com | [181 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org2.example.com | [170 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f0b12c8c]Received message READY from shim +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer1.org1.example.com | [100 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +orderer.example.com | [0d8 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +peer0.org1.example.com | [182 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [157 12-14 09:34:26.93 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.5) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [171 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f0b12c8c]Handling ChaincodeMessage of type: READY(state:established) +orderer.example.com | [0d9 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +peer0.org1.example.com | [183 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b93fcb9]Init get response status: 200 +peer0.org2.example.com | [158 12-14 09:34:26.93 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.5 +peer1.org1.example.com | [101 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.5 +explorer | [2017-12-14 09:35:10.003] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +orderer.example.com | [0da 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Consortiums/Readers +peer0.org1.example.com | [184 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b93fcb9]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [172 12-14 09:34:34.36 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 | [159 12-14 09:34:26.93 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 | [0db 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [185 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b93fcb9]Move state message COMPLETED +peer1.org1.example.com | [102 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org2.example.com | [173 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +orderer.example.com | [0dc 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org2.example.com | [15a 12-14 09:34:26.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [186 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0b93fcb9]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [174 12-14 09:34:34.36 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 | [0dd 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Consortiums/Writers +peer1.org1.example.com | [0fe 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.5 +peer0.org1.example.com | [187 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b93fcb9]send state message COMPLETED +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org2.example.com | [15b 12-14 09:34:26.93 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.5 +peer1.org1.example.com | [103 12-14 09:34:35.31 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 | [188 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b93fcb9]Received message COMPLETED from shim +orderer.example.com | [0de 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org2.example.com | [15c 12-14 09:34:26.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org1.example.com | [189 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0b93fcb9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [175 12-14 09:34:34.36 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.5 +orderer.example.com | [0df 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer1.org1.example.com | [104 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 82): Error: Cannot save null userContext. +peer0.org2.example.com | [15d 12-14 09:34:26.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.5 +peer0.org1.example.com | [18a 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0b93fcb9-f492-413e-8194-e6ea70f04ddf]HandleMessage- COMPLETED. Notify +orderer.example.com | [0e0 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer1.org1.example.com | [105 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | [176 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f0b12c8c]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [15e 12-14 09:34:26.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [18b 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0b93fcb9-f492-413e-8194-e6ea70f04ddf +orderer.example.com | [0e1 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org2.example.com | [15f 12-14 09:34:26.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [18c 12-14 09:34:27.76 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 | [106 12-14 09:34:35.31 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 | [177 12-14 09:34:34.36 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 | [0e2 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [18d 12-14 09:34:27.76 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 | [0e3 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [178 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f0b12c8c]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [18e 12-14 09:34:27.76 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess +peer0.org2.example.com | [160 12-14 09:34:26.93 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 | [107 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | [0e4 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +peer0.org1.example.com | [18f 12-14 09:34:27.76 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] +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +orderer.example.com | [0e5 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer0.org2.example.com | [161 12-14 09:34:26.93 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 | [179 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f0b12c8c]Move state message INIT +peer0.org1.example.com | [190 12-14 09:34:31.52 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 | [108 12-14 09:34:35.31 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.5 +orderer.example.com | [0e6 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +peer0.org2.example.com | [162 12-14 09:34:26.93 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.5 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [109 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.5" , sending back REGISTERED +peer0.org1.example.com | [191 12-14 09:34:31.53 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org2.example.com | [17a 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f0b12c8c]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | [0e7 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +peer0.org2.example.com | [163 12-14 09:34:26.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.5" , sending back REGISTERED +peer1.org1.example.com | [10a 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +explorer | [2017-12-14 09:35:10.020] [ERROR] Query - Error: Connect Failed +peer1.org2.example.com | [17b 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [192 12-14 09:34:31.53 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572302E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +orderer.example.com | [0e8 12-14 09:34:35.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9086], Going to peek [8] bytes +peer0.org2.example.com | [164 12-14 09:34:26.93 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 | [10c 12-14 09:34:35.31 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.5 launch seq completed +peer0.org1.example.com | [193 12-14 09:34:31.53 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 7D0B37D65EC85157984E927DBB28E1F81FAC95C3F661DFECDC7C12F3AD420CD8 +orderer.example.com | [0e9 12-14 09:34:35.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9084], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +peer1.org2.example.com | [17c 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f0b12c8c]sending state message INIT +peer0.org2.example.com | [165 12-14 09:34:26.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [194 12-14 09:34:31.53 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 | [17d 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f0b12c8c]Received message INIT from shim +peer0.org2.example.com | [166 12-14 09:34:26.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [10d 12-14 09:34:35.31 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 +explorer | [2017-12-14 09:35:11.150] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +orderer.example.com | [0ea 12-14 09:34:35.26 UTC] [github.com/hyperledger/fabric/orderer/multichain] main.initializeMultiChainManager.NewManagerImpl.newChainSupport -> DEBU [channel: testchainid] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=0): +peer1.org2.example.com | [17e 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f0b12c8c]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [167 12-14 09:34:26.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org1.example.com | [10e 12-14 09:34:35.31 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 | [195 12-14 09:34:31.53 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [0eb 12-14 09:34:35.26 UTC] [github.com/hyperledger/fabric/orderer/multichain] main.initializeMultiChainManager.NewManagerImpl -> INFO Starting with system channel testchainid and orderer type solo +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer1.org2.example.com | [17f 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [168 12-14 09:34:26.93 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.5 launch seq completed +peer1.org1.example.com | [10f 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e5130d81]Move state message READY +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [169 12-14 09:34:26.93 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 | [0ec 12-14 09:34:35.26 UTC] [main] main -> INFO Beginning to serve requests +peer0.org1.example.com | [196 12-14 09:34:31.53 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 +peer1.org1.example.com | [110 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e5130d81]Fabric side Handling ChaincodeMessage of type: READY in state established +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org2.example.com | [16a 12-14 09:34:26.93 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 | [180 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [f0b12c8c]Received INIT, initializing chaincode +orderer.example.com | [0ed 12-14 09:34:39.42 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer1.org1.example.com | [111 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [e5130d81]Entered state ready +peer0.org1.example.com | [197 12-14 09:34:31.53 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer0.org2.example.com | [16b 12-14 09:34:26.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d07c2fd4]Move state message READY +peer1.org1.example.com | [112 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:e5130d81-2d99-4cae-aed6-ae7086543eb7 +peer0.org1.example.com | [198 12-14 09:34:32.44 UTC] [github.com/hyperledger/fabric/msp/mgmt] createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [0ee 12-14 09:34:39.42 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +peer1.org2.example.com | [181 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org1.example.com | [113 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e5130d81]sending state message READY +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [199 12-14 09:34:32.44 UTC] [github.com/hyperledger/fabric/msp] createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [16c 12-14 09:34:26.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d07c2fd4]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [114 12-14 09:34:35.31 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 | [182 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [0ef 12-14 09:34:39.42 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +peer0.org1.example.com | [19a 12-14 09:34:32.44 UTC] [github.com/hyperledger/fabric/msp] createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572302E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org2.example.com | [16d 12-14 09:34:26.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [d07c2fd4]Entered state ready +orderer.example.com | [0f0 12-14 09:34:39.43 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +peer1.org2.example.com | [183 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f0b12c8c]Init get response status: 200 +peer0.org2.example.com | [16e 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:d07c2fd4-6f8f-45f5-88a1-32184ac021bb +peer0.org1.example.com | [19b 12-14 09:34:32.44 UTC] [github.com/hyperledger/fabric/msp] createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: EC2DBBAA75AA250AE9A9EC25E4A2FF8175EC714773BA30D1F398CF530576A1C5 +explorer | at emitErrorNT (net.js:1281:8) +orderer.example.com | [0f1 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +peer0.org2.example.com | [16f 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d07c2fd4]sending state message READY +peer1.org1.example.com | [115 12-14 09:34:35.31 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 | [19c 12-14 09:34:32.44 UTC] [github.com/hyperledger/fabric/msp/mgmt] createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [184 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f0b12c8c]Init succeeded. Sending COMPLETED +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org2.example.com | [170 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d07c2fd4]Received message READY from shim +orderer.example.com | [0f2 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Preprocessing CONFIG_UPDATE +peer0.org1.example.com | [19d 12-14 09:34:32.44 UTC] [github.com/hyperledger/fabric/msp] createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [116 12-14 09:34:35.31 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 | [185 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f0b12c8c]Move state message COMPLETED +peer0.org2.example.com | [171 12-14 09:34:26.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 +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer0.org1.example.com | [19e 12-14 09:34:32.44 UTC] [github.com/hyperledger/fabric/msp] createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 +peer0.org2.example.com | [172 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d07c2fd4]Handling ChaincodeMessage of type: READY(state:established) +orderer.example.com | [0f3 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/orderer/configupdate] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process -> DEBU Processing channel creation request for channel businesschannel +peer1.org1.example.com | [117 12-14 09:34:35.31 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.5 +peer1.org2.example.com | [186 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f0b12c8c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | [2017-12-14 09:35:11.150] [ERROR] Helper - admin enrollment failed +peer0.org2.example.com | [173 12-14 09:34:26.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 | [19f 12-14 09:34:32.44 UTC] [github.com/hyperledger/fabric/msp] createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 +peer1.org2.example.com | [187 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f0b12c8c]send state message COMPLETED +orderer.example.com | [0f4 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [118 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e5130d81]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [174 12-14 09:34:26.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 | [1a0 12-14 09:34:32.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [188 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f0b12c8c]Received message COMPLETED from shim +explorer | [2017-12-14 09:35:11.151] [ERROR] Query - Error: Missing userContext parameter +peer0.org2.example.com | [175 12-14 09:34:26.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: qscc:1.0.5 +peer1.org1.example.com | [119 12-14 09:34:35.31 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 | [189 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f0b12c8c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [0f5 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [1a1 12-14 09:34:32.45 UTC] [github.com/hyperledger/fabric/msp/mgmt] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.peersByOriginOrgPolicy.getOrgOfPeer.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [1a2 12-14 09:34:32.45 UTC] [github.com/hyperledger/fabric/msp] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.peersByOriginOrgPolicy.getOrgOfPeer.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org1.example.com | [1a3 12-14 09:34:32.45 UTC] [github.com/hyperledger/fabric/msp] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.peersByOriginOrgPolicy.getOrgOfPeer.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | MIICGTCCAb+gAwIBAgIQJgBYBKOHst//mfTjpUw1gzAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MTlaFw0yNzExMjkxMzU3MTla +peer0.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw +peer0.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE2iZEUIvLgKANslGKRrDsQ67PZuvMBlD4 +peer0.org1.example.com | s0XhzjlArKmtSEGzhr1O43IKz4TR8B3viyT0jO6L1RVDUgtdCsH5AaNNMEswDgYD +peer0.org1.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgejjZ4+nTXyF3 +peer0.org1.example.com | xi1tKI3DL8VylH+vPkEFOLmgRS6hq/gwCgYIKoZIzj0EAwIDSAAwRQIhAPICTsf5 +peer0.org2.example.com | [176 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d07c2fd4]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [177 12-14 09:34:26.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... +peer0.org2.example.com | [178 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d07c2fd4]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [179 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d07c2fd4]Move state message INIT +peer0.org2.example.com | [17a 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d07c2fd4]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [17b 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [17c 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d07c2fd4]sending state message INIT +peer0.org2.example.com | [17d 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d07c2fd4]Received message INIT from shim +peer0.org2.example.com | [17e 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d07c2fd4]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [18a 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f0b12c8c-8646-4ba1-bacc-4f63df5013f9]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [11a 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e5130d81]sendExecuteMsg trigger event INIT +orderer.example.com | [0f6 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org1.example.com | Yr2bvGRg2G85IveggOvKM6+3IyhjSP4E3xH2AiBW4QjCDtZlYyGK5vilFR7hzeZV +peer1.org1.example.com | [10b 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [18b 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f0b12c8c-8646-4ba1-bacc-4f63df5013f9 +peer0.org2.example.com | [17f 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | [0f7 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer0.org1.example.com | ibHlRV1ViFqHbzF3ww== +peer1.org1.example.com | [11b 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org2.example.com | [18c 12-14 09:34:34.36 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 | [180 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d07c2fd4]Received INIT, initializing chaincode +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer0.org1.example.com | -----END CERTIFICATE----- +orderer.example.com | [0f8 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0ABC060A1B08011A0608AF8BC9D10522...07526561646572731A0641646D696E73 +peer1.org1.example.com | [11c 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org2.example.com | [18d 12-14 09:34:34.36 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 | [181 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [1a4 12-14 09:34:34.12 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 | [0f9 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: FA3F397C865F02C52B0917571010CACECC5B982475982ADE4C97BF56DA96E18B +peer1.org1.example.com | [11d 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5130d81]Received message READY from shim +peer1.org2.example.com | [18e 12-14 09:34:34.36 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess +peer0.org1.example.com | [1a5 12-14 09:34:34.12 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 | [0fa 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org1.example.com | [11e 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e5130d81]Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [182 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +explorer | [2017-12-14 09:35:11.151] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer0.org1.example.com | [1a6 12-14 09:34:34.12 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 | [18f 12-14 09:34:34.36 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] +orderer.example.com | [0fb 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [11f 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e5130d81]Move state message INIT +peer0.org2.example.com | [183 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d07c2fd4]Init get response status: 200 +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer0.org1.example.com | [1a7 12-14 09:34:34.12 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.org2.example.com | [190 12-14 09:34:34.94 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 | [0fc 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org2.example.com | [184 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d07c2fd4]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [120 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e5130d81]Fabric side Handling ChaincodeMessage of type: INIT in state ready +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [1a8 12-14 09:34:34.12 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 | [191 12-14 09:34:34.94 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.org2.example.com | [192 12-14 09:34:34.94 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 | [193 12-14 09:34:34.94 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 | [194 12-14 09:34:34.94 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 | [195 12-14 09:34:34.94 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 | [0fd 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [1a9 12-14 09:34:34.13 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 | [185 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d07c2fd4]Move state message COMPLETED +peer1.org1.example.com | [121 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 85): Error: Cannot save null userContext. +peer1.org2.example.com | [196 12-14 09:34:34.94 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 | [0fe 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [1aa 12-14 09:34:34.13 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 | [186 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d07c2fd4]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [122 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e5130d81]sending state message INIT +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org2.example.com | [197 12-14 09:34:34.94 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 | [0ff 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org2.example.com | [187 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d07c2fd4]send state message COMPLETED +peer1.org1.example.com | [123 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5130d81]Received message INIT from shim +peer0.org1.example.com | [1ab 12-14 09:34:34.13 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' +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | [100 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer1.org2.example.com | [198 12-14 09:34:34.94 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.org2.example.com | [188 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d07c2fd4]Received message COMPLETED from shim +peer0.org1.example.com | [1ac 12-14 09:34:34.13 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' +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +orderer.example.com | [101 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer1.org2.example.com | [199 12-14 09:34:34.94 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 | [124 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e5130d81]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [189 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d07c2fd4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1ad 12-14 09:34:34.13 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' +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [19a 12-14 09:34:34.94 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' +orderer.example.com | [102 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [18a 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d07c2fd4-6f8f-45f5-88a1-32184ac021bb]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [125 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [1ae 12-14 09:34:34.13 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' +explorer | [2017-12-14 09:35:11.178] [ERROR] Query - Error: Connect Failed +peer1.org2.example.com | [19b 12-14 09:34:34.94 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 | [103 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org1.example.com | [126 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e5130d81]Received INIT, initializing chaincode +peer0.org2.example.com | [18b 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d07c2fd4-6f8f-45f5-88a1-32184ac021bb +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [1af 12-14 09:34:34.13 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 | [19c 12-14 09:34:34.94 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 | [104 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org1.example.com | [127 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer0.org2.example.com | [18c 12-14 09:34:26.97 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 12-14 09:34:26.97 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 12-14 09:34:26.97 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess +explorer | [2017-12-14 09:35:12.260] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +orderer.example.com | [105 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [19d 12-14 09:34:34.94 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 | [18f 12-14 09:34:26.97 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] +peer1.org1.example.com | [128 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5130d81]Init get response status: 200 +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [1b0 12-14 09:34:34.13 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 | [106 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [19e 12-14 09:34:34.94 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 | [190 12-14 09:34:26.98 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] +explorer | at ClientRequest.emit (events.js:188:7) +peer1.org1.example.com | [129 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5130d81]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [1b1 12-14 09:34:34.13 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 | [107 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer0.org2.example.com | [191 12-14 09:34:26.99 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.org2.example.com | [19f 12-14 09:34:34.94 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' +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org1.example.com | [12a 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5130d81]Move state message COMPLETED +peer0.org1.example.com | [1b2 12-14 09:34:34.13 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 | [108 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org2.example.com | [192 12-14 09:34:26.99 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 | [1a0 12-14 09:34:34.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' +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +peer1.org1.example.com | [12b 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e5130d81]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1b3 12-14 09:34:34.13 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 | [193 12-14 09:34:26.99 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 | [1a1 12-14 09:34:34.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.org2.example.com | [1a2 12-14 09:34:34.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' +peer1.org1.example.com | [12c 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5130d81]send state message COMPLETED +peer0.org1.example.com | [1b4 12-14 09:34:34.13 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' +explorer | at emitErrorNT (net.js:1281:8) +peer0.org2.example.com | [194 12-14 09:34:27.00 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 | [109 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | [10a 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [10b 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer1.org1.example.com | [12d 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e5130d81]Received message COMPLETED from shim +peer1.org2.example.com | [1a3 12-14 09:34:41.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org1.example.com | [1b5 12-14 09:34:34.13 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 | [10c 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org2.example.com | [195 12-14 09:34:27.01 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' +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer0.org1.example.com | [1b6 12-14 09:34:34.13 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.org1.example.com | [12e 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e5130d81]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [1a4 12-14 09:34:41.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc420162720 +orderer.example.com | [10d 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +explorer | [2017-12-14 09:35:12.260] [ERROR] Helper - admin enrollment failed +peer0.org2.example.com | [196 12-14 09:34:27.01 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.org1.example.com | [1b7 12-14 09:34:40.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org2.example.com | [1a5 12-14 09:34:41.07 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 | [10e 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [12f 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e5130d81-2d99-4cae-aed6-ae7086543eb7]HandleMessage- COMPLETED. Notify +explorer | [2017-12-14 09:35:12.262] [ERROR] Query - Error: Missing userContext parameter +peer1.org2.example.com | [1a6 12-14 09:34:41.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [1b8 12-14 09:34:40.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421885e90 +peer0.org2.example.com | [197 12-14 09:34:27.02 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 | [10f 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org1.example.com | [130 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e5130d81-2d99-4cae-aed6-ae7086543eb7 +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer1.org2.example.com | [1a7 12-14 09:34:41.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org1.example.com | [131 12-14 09:34:35.31 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 | [198 12-14 09:34:27.02 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 | [1b9 12-14 09:34:40.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +orderer.example.com | [110 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [1a8 12-14 09:34:41.07 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 | [132 12-14 09:34:35.31 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 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [1ba 12-14 09:34:40.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [199 12-14 09:34:27.02 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 | [1a9 12-14 09:34:41.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [133 12-14 09:34:35.31 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.5,txid=dae5c2be-df5e-4559-a0ec-4b32a29c670e,syscc=true,proposal=0x0,canname=vscc:1.0.5 +orderer.example.com | [111 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [1bb 12-14 09:34:40.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} +explorer | [2017-12-14 09:35:12.264] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer0.org2.example.com | [19a 12-14 09:34:27.02 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 | [1aa 12-14 09:34:41.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4202b75e0, header 0xc420163410 +peer1.org1.example.com | [134 12-14 09:34:35.31 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.5 is being launched +orderer.example.com | [112 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer0.org2.example.com | [19b 12-14 09:34:27.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' +peer1.org2.example.com | [1ab 12-14 09:34:41.07 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 | [1bc 12-14 09:34:40.42 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 | [113 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org2.example.com | [19c 12-14 09:34:27.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 | [1bd 12-14 09:34:40.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 | [1ac 12-14 09:34:41.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 290962ad590594ab2655d5c1bb67268fb443ace09a5d01add7258c053c605c7f +orderer.example.com | [114 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org1.example.com | [135 12-14 09:34:35.31 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 +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 88): Error: Cannot save null userContext. +peer0.org2.example.com | [19d 12-14 09:34:27.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' +peer0.org1.example.com | [1be 12-14 09:34:40.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4218bc460, header 0xc421885f20 +peer1.org2.example.com | [1ad 12-14 09:34:41.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 290962ad590594ab2655d5c1bb67268fb443ace09a5d01add7258c053c605c7f channel id: +orderer.example.com | [115 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [136 12-14 09:34:35.31 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 | [19e 12-14 09:34:27.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.org1.example.com | [1bf 12-14 09:34:40.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:"cscc" +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org1.example.com | [137 12-14 09:34:35.31 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.5(networkid:dev,peerid:peer1.org1.example.com) +peer1.org1.example.com | [138 12-14 09:34:35.31 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 | [116 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [19f 12-14 09:34:27.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.org1.example.com | [1c0 12-14 09:34:40.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 4627d9326de3d3a74bbc83ff77fedb866671172bdce687e5f9056b7796af3063 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [1ae 12-14 09:34:41.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 290962ad590594ab2655d5c1bb67268fb443ace09a5d01add7258c053c605c7f channel id: version: 1.0.5 +peer1.org1.example.com | [139 12-14 09:34:35.31 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 | [117 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [1a0 12-14 09:34:27.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 | [1c1 12-14 09:34:40.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 4627d9326de3d3a74bbc83ff77fedb866671172bdce687e5f9056b7796af3063 channel id: +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer1.org2.example.com | [1af 12-14 09:34:41.07 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.5,txid=290962ad590594ab2655d5c1bb67268fb443ace09a5d01add7258c053c605c7f,syscc=true,proposal=0xc4202b75e0,canname=cscc:1.0.5 +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.5 +peer0.org2.example.com | [1a1 12-14 09:34:27.03 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 | [118 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [1c2 12-14 09:34:40.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 4627d9326de3d3a74bbc83ff77fedb866671172bdce687e5f9056b7796af3063 channel id: version: 1.0.5 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [1b0 12-14 09:34:41.07 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.5 +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | [1a2 12-14 09:34:27.03 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 | [1b1 12-14 09:34:41.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +explorer | [2017-12-14 09:35:12.278] [ERROR] Query - Error: Connect Failed +peer0.org1.example.com | [1c3 12-14 09:34:40.42 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.5,txid=4627d9326de3d3a74bbc83ff77fedb866671172bdce687e5f9056b7796af3063,syscc=true,proposal=0xc4218bc460,canname=cscc:1.0.5 +orderer.example.com | [119 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +peer0.org2.example.com | [1a3 12-14 09:34:40.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [1b2 12-14 09:34:41.07 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.5 +peer0.org1.example.com | [1c4 12-14 09:34:40.42 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.5 +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 | [1a4 12-14 09:34:40.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421571680 +orderer.example.com | [11a 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer1.org2.example.com | [1b3 12-14 09:34:41.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [290962ad]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [13a 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.5) lock +peer0.org1.example.com | [1c5 12-14 09:34:40.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | [2017-12-14 09:35:13.379] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer1.org1.example.com | [13b 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.5) lock +peer0.org2.example.com | [1a5 12-14 09:34:40.88 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 | [11b 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer1.org2.example.com | [1b4 12-14 09:34:41.07 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 | [1c6 12-14 09:34:40.42 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.5 +peer1.org1.example.com | [13c 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.5 +peer0.org2.example.com | [1a6 12-14 09:34:40.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [11c 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer1.org2.example.com | [1b5 12-14 09:34:41.07 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... +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer1.org1.example.com | [13d 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.5) +peer0.org2.example.com | [1a7 12-14 09:34:40.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} +orderer.example.com | [11d 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer1.org1.example.com | [13f 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.5 +peer1.org2.example.com | [1b6 12-14 09:34:41.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [290962ad]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [1c7 12-14 09:34:40.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4627d932]Inside sendExecuteMessage. Message TRANSACTION +explorer | at emitOne (events.js:96:13) +orderer.example.com | [11e 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org1.example.com | [140 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org2.example.com | [1a8 12-14 09:34:40.88 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 | [1b7 12-14 09:34:41.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [290962ad]Move state message TRANSACTION +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org1.example.com | [1c8 12-14 09:34:40.42 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 | [141 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.5 +peer0.org2.example.com | [1a9 12-14 09:34:40.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [1b8 12-14 09:34:41.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [290962ad]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [11f 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org1.example.com | [142 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +orderer.example.com | [120 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [1aa 12-14 09:34:40.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4214839a0, header 0xc421571710 +peer0.org1.example.com | [1c9 12-14 09:34:40.42 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... +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [1b9 12-14 09:34:41.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [13e 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.5 +peer0.org1.example.com | [1ca 12-14 09:34:40.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4627d932]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [121 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org2.example.com | [1ba 12-14 09:34:41.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [290962ad]sending state message TRANSACTION +peer1.org1.example.com | [143 12-14 09:34:35.31 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 | [1ab 12-14 09:34:40.88 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" +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org1.example.com | [1cb 12-14 09:34:40.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4627d932]Move state message TRANSACTION +peer1.org2.example.com | [1bb 12-14 09:34:41.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [290962ad]Received message TRANSACTION from shim +orderer.example.com | [122 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org1.example.com | [144 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [1ac 12-14 09:34:40.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 5da1276629c21dc197ce3095a54931985df1a9ef10c523fae878319513fcb091 +explorer | at emitErrorNT (net.js:1281:8) +peer1.org2.example.com | [1bc 12-14 09:34:41.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [290962ad]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [1cc 12-14 09:34:40.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4627d932]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [145 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | [1ad 12-14 09:34:40.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 5da1276629c21dc197ce3095a54931985df1a9ef10c523fae878319513fcb091 channel id: +peer1.org1.example.com | [146 12-14 09:34:35.31 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 | [1bd 12-14 09:34:41.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [290962ad]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [123 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org1.example.com | [1cd 12-14 09:34:40.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [147 12-14 09:34:35.31 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 | [1be 12-14 09:34:41.07 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +peer0.org2.example.com | [1ae 12-14 09:34:40.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 5da1276629c21dc197ce3095a54931985df1a9ef10c523fae878319513fcb091 channel id: version: 1.0.5 +orderer.example.com | [124 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [125 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [1bf 12-14 09:34:41.07 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org1.example.com | [148 12-14 09:34:35.31 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.5 +orderer.example.com | [126 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [1ce 12-14 09:34:40.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4627d932]sending state message TRANSACTION +peer0.org2.example.com | [1af 12-14 09:34:40.88 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.5,txid=5da1276629c21dc197ce3095a54931985df1a9ef10c523fae878319513fcb091,syscc=true,proposal=0xc4214839a0,canname=cscc:1.0.5 +peer1.org2.example.com | [1c0 12-14 09:34:41.07 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 | [149 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.5" , sending back REGISTERED +explorer | [2017-12-14 09:35:13.379] [ERROR] Helper - admin enrollment failed +orderer.example.com | [127 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +peer0.org1.example.com | [1cf 12-14 09:34:40.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4627d932]Received message TRANSACTION from shim +peer1.org2.example.com | [1c1 12-14 09:34:41.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +explorer | [2017-12-14 09:35:13.379] [ERROR] Query - Error: Missing userContext parameter +peer1.org2.example.com | [1c2 12-14 09:34:41.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +peer1.org1.example.com | [14a 12-14 09:34:35.31 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 | [14c 12-14 09:34:35.31 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.5 launch seq completed +peer1.org1.example.com | [14d 12-14 09:34:35.31 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 | [1b0 12-14 09:34:40.88 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.5 +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer1.org2.example.com | [1c3 12-14 09:34:41.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +orderer.example.com | [128 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +peer0.org1.example.com | [1d0 12-14 09:34:40.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4627d932]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [14e 12-14 09:34:35.31 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 | [1b1 12-14 09:34:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org2.example.com | [1c4 12-14 09:34:41.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +orderer.example.com | [129 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +peer1.org1.example.com | [14f 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dae5c2be]Move state message READY +peer0.org1.example.com | [1d1 12-14 09:34:40.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4627d932]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [1b2 12-14 09:34:40.88 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.5 +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer1.org2.example.com | [1c5 12-14 09:34:41.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +peer1.org1.example.com | [150 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dae5c2be]Fabric side Handling ChaincodeMessage of type: READY in state established +orderer.example.com | [12a 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer0.org1.example.com | [1d2 12-14 09:34:40.43 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +peer0.org2.example.com | [1b3 12-14 09:34:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5da12766]Inside sendExecuteMessage. Message TRANSACTION +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [1c6 12-14 09:34:41.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +peer1.org2.example.com | [1c7 12-14 09:34:41.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc421532960)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +peer1.org2.example.com | [1c8 12-14 09:34:41.08 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 | [1c9 12-14 09:34:41.08 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 | [151 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [dae5c2be]Entered state ready +peer0.org2.example.com | [1b4 12-14 09:34:40.88 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 | [1b5 12-14 09:34:40.88 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 | [1d3 12-14 09:34:40.43 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +peer0.org1.example.com | [1d4 12-14 09:34:40.44 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 | [1d5 12-14 09:34:40.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +explorer | [2017-12-14 09:35:13.379] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +orderer.example.com | [12b 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy ChannelCreationPolicy for Application +peer0.org2.example.com | [1b6 12-14 09:34:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5da12766]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [1b7 12-14 09:34:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5da12766]Move state message TRANSACTION +peer0.org2.example.com | [1b8 12-14 09:34:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5da12766]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [1d6 12-14 09:34:40.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +orderer.example.com | [12c 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [12d 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [1ca 12-14 09:34:41.08 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)(0xc420148f80), Data:(*common.BlockData)(0xc420146f40), Metadata:(*common.BlockMetadata)(0xc420146f80)}, doMVCCValidation=true +peer0.org2.example.com | [1b9 12-14 09:34:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [1ba 12-14 09:34:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5da12766]sending state message TRANSACTION +peer0.org2.example.com | [1bb 12-14 09:34:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5da12766]Received message TRANSACTION from shim +peer1.org1.example.com | [152 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:dae5c2be-df5e-4559-a0ec-4b32a29c670e +orderer.example.com | [12e 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [1cb 12-14 09:34:41.08 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 | [1cc 12-14 09:34:41.08 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 | [1d7 12-14 09:34:40.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +peer0.org2.example.com | [1bc 12-14 09:34:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5da12766]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [153 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dae5c2be]sending state message READY +orderer.example.com | [12f 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [1cd 12-14 09:34:41.08 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{0x4c, 0x27, 0x5, 0x1c, 0x84, 0xd, 0xf5, 0xe1, 0xcf, 0xca, 0xe1, 0x49, 0x4a, 0x6a, 0xa, 0x31, 0xd4, 0x1c, 0x37, 0xaa, 0xd5, 0xcf, 0xfe, 0x44, 0x8e, 0x3, 0x4b, 0xb5, 0x72, 0x19, 0x89, 0x53} txOffsets= +peer0.org1.example.com | [1d8 12-14 09:34:40.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +peer0.org2.example.com | [1bd 12-14 09:34:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5da12766]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [154 12-14 09:34:35.31 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 | [130 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [131 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 91): Error: Cannot save null userContext. +peer0.org1.example.com | [1d9 12-14 09:34:40.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +peer0.org2.example.com | [1be 12-14 09:34:40.89 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +orderer.example.com | [132 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org1.example.com | [1da 12-14 09:34:40.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +peer0.org1.example.com | [1db 12-14 09:34:40.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc42198e8c0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +peer1.org1.example.com | [155 12-14 09:34:35.31 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 | [133 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +peer0.org2.example.com | [1bf 12-14 09:34:40.89 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer1.org2.example.com | txId= locPointer=offset=38, bytesLength=11902 +peer1.org1.example.com | [156 12-14 09:34:35.31 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 | [134 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +peer0.org1.example.com | [1dc 12-14 09:34:40.44 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.org1.example.com | [1dd 12-14 09:34:40.44 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] +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | ] +orderer.example.com | [135 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [157 12-14 09:34:35.31 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.5 +peer0.org2.example.com | [1c0 12-14 09:34:40.89 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 | [1de 12-14 09:34:40.44 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)(0xc42196a0c0), Data:(*common.BlockData)(0xc421933480), Metadata:(*common.BlockMetadata)(0xc4219334c0)}, doMVCCValidation=true +peer1.org2.example.com | [1ce 12-14 09:34:41.08 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=11902] for tx ID: [] to index +orderer.example.com | [136 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | [2017-12-14 09:35:13.391] [ERROR] Query - Error: Connect Failed +peer1.org1.example.com | [158 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [dae5c2be]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [1cf 12-14 09:34:41.08 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=11902] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org2.example.com | [1c1 12-14 09:34:40.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +orderer.example.com | [137 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [1df 12-14 09:34:40.44 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 | [159 12-14 09:34:35.31 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... +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [1d0 12-14 09:34:41.08 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=[11946], isChainEmpty=[false], lastBlockNumber=[0] +orderer.example.com | [138 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [15a 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [dae5c2be]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [1c2 12-14 09:34:40.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +explorer | [2017-12-14 09:35:14.494] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer0.org1.example.com | [1e0 12-14 09:34:40.44 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 | [139 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [1d1 12-14 09:34:41.08 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 | [14b 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer0.org2.example.com | [1c3 12-14 09:34:40.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +peer0.org1.example.com | [1e1 12-14 09:34:40.44 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{0x4c, 0x27, 0x5, 0x1c, 0x84, 0xd, 0xf5, 0xe1, 0xcf, 0xca, 0xe1, 0x49, 0x4a, 0x6a, 0xa, 0x31, 0xd4, 0x1c, 0x37, 0xaa, 0xd5, 0xcf, 0xfe, 0x44, 0x8e, 0x3, 0x4b, 0xb5, 0x72, 0x19, 0x89, 0x53} txOffsets= +orderer.example.com | [13a 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [1d2 12-14 09:34:41.08 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 | [15b 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [1c4 12-14 09:34:40.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +orderer.example.com | [13b 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +peer0.org1.example.com | txId= locPointer=offset=38, bytesLength=11902 +peer1.org1.example.com | [15c 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org2.example.com | [1d3 12-14 09:34:41.08 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 | [1c5 12-14 09:34:40.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +explorer | at ClientRequest.emit (events.js:188:7) +orderer.example.com | [13c 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +peer1.org2.example.com | [1d4 12-14 09:34:41.09 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 | ] +peer1.org1.example.com | [15d 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dae5c2be]Received message READY from shim +peer0.org2.example.com | [1c6 12-14 09:34:40.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +orderer.example.com | [13d 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org2.example.com | [1d5 12-14 09:34:41.09 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 | [1e2 12-14 09:34:40.44 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=11902] for tx ID: [] to index +peer1.org1.example.com | [15e 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dae5c2be]Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [1c7 12-14 09:34:40.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc42163be00)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +orderer.example.com | [13e 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [1d6 12-14 09:34:41.09 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.org2.example.com | [1c8 12-14 09:34:40.89 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.org1.example.com | [1e3 12-14 09:34:40.44 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=11902] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org2.example.com | [1c9 12-14 09:34:40.89 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 | [1ca 12-14 09:34:40.89 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)(0xc4215b6800), Data:(*common.BlockData)(0xc4215c9cc0), Metadata:(*common.BlockMetadata)(0xc4215c9d00)}, doMVCCValidation=true +peer0.org2.example.com | [1cb 12-14 09:34:40.89 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 | [1d7 12-14 09:34:41.09 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.org1.example.com | [15f 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dae5c2be]Move state message INIT +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org2.example.com | [1cc 12-14 09:34:40.89 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 | [13f 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [1e4 12-14 09:34:40.44 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=[11946], isChainEmpty=[false], lastBlockNumber=[0] +peer1.org2.example.com | [1d8 12-14 09:34:41.09 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +explorer | at emitErrorNT (net.js:1281:8) +peer1.org1.example.com | [160 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dae5c2be]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [1cd 12-14 09:34:40.90 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{0x4c, 0x27, 0x5, 0x1c, 0x84, 0xd, 0xf5, 0xe1, 0xcf, 0xca, 0xe1, 0x49, 0x4a, 0x6a, 0xa, 0x31, 0xd4, 0x1c, 0x37, 0xaa, 0xd5, 0xcf, 0xfe, 0x44, 0x8e, 0x3, 0x4b, 0xb5, 0x72, 0x19, 0x89, 0x53} txOffsets= +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +orderer.example.com | [140 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | txId= locPointer=offset=38, bytesLength=11902 +peer1.org1.example.com | [161 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [1e5 12-14 09:34:40.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org2.example.com | [1d9 12-14 09:34:41.09 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 | ] +peer1.org1.example.com | [162 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dae5c2be]sending state message INIT +peer0.org1.example.com | [1e6 12-14 09:34:40.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database +explorer | [2017-12-14 09:35:14.494] [ERROR] Helper - admin enrollment failed +peer1.org2.example.com | [1da 12-14 09:34:41.09 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 | [1ce 12-14 09:34:40.90 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=11902] for tx ID: [] to index +orderer.example.com | [141 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [163 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dae5c2be]Received message INIT from shim +explorer | [2017-12-14 09:35:14.494] [ERROR] Query - Error: Missing userContext parameter +peer0.org1.example.com | [1e7 12-14 09:34:40.45 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 | [1db 12-14 09:34:41.09 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 | [1cf 12-14 09:34:40.90 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=11902] for tx number:[0] ID: [] to blockNumTranNum index +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer1.org1.example.com | [164 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dae5c2be]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [1e8 12-14 09:34:40.45 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 | [142 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | [1d0 12-14 09:34:40.90 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=[11946], isChainEmpty=[false], lastBlockNumber=[0] +peer1.org1.example.com | [165 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer0.org1.example.com | [1e9 12-14 09:34:40.45 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 | [143 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org2.example.com | [1dc 12-14 09:34:41.09 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 | [1d1 12-14 09:34:40.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer1.org1.example.com | [166 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [dae5c2be]Received INIT, initializing chaincode +peer0.org1.example.com | [1ea 12-14 09:34:40.45 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 | [144 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +peer0.org2.example.com | [1d2 12-14 09:34:40.90 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 | [167 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dae5c2be]Init get response status: 200 +peer1.org2.example.com | [1dd 12-14 09:34:41.09 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +orderer.example.com | [145 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +peer0.org2.example.com | [1d3 12-14 09:34:40.90 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 | [168 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dae5c2be]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [1de 12-14 09:34:41.09 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 | [1eb 12-14 09:34:40.45 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] +explorer | [2017-12-14 09:35:14.494] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +orderer.example.com | [146 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +peer0.org2.example.com | [1d4 12-14 09:34:40.90 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.org1.example.com | [169 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dae5c2be]Move state message COMPLETED +peer1.org2.example.com | [1df 12-14 09:34:41.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer0.org1.example.com | [1ec 12-14 09:34:40.45 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +orderer.example.com | [147 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +peer0.org2.example.com | [1d5 12-14 09:34:40.90 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 | [16a 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dae5c2be]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [1e0 12-14 09:34:41.09 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 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org2.example.com | [1d6 12-14 09:34:40.90 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 | [16b 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dae5c2be]send state message COMPLETED +orderer.example.com | [148 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [1ed 12-14 09:34:40.45 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 | [1d7 12-14 09:34:40.90 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 | [1e1 12-14 09:34:41.09 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 | [149 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 94): Error: Cannot save null userContext. +peer1.org1.example.com | [16c 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dae5c2be]Received message COMPLETED from shim +peer0.org1.example.com | [1ee 12-14 09:34:40.45 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 | [1d8 12-14 09:34:40.90 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +peer1.org2.example.com | [1e2 12-14 09:34:41.09 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 | [14a 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [16d 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dae5c2be]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1ef 12-14 09:34:40.45 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 | [1d9 12-14 09:34:40.90 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 | [1e3 12-14 09:34:41.09 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 | [14b 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer1.org1.example.com | [16e 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dae5c2be-df5e-4559-a0ec-4b32a29c670e]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [1f0 12-14 09:34:40.45 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 | [1e4 12-14 09:34:41.09 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 | [1da 12-14 09:34:40.90 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | [14c 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +peer1.org1.example.com | [16f 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:dae5c2be-df5e-4559-a0ec-4b32a29c670e +peer0.org1.example.com | [1f1 12-14 09:34:40.45 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 | [1db 12-14 09:34:40.90 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 | [1e5 12-14 09:34:41.09 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 +explorer | [2017-12-14 09:35:14.517] [ERROR] Query - Error: Connect Failed +peer1.org1.example.com | [170 12-14 09:34:35.31 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 | [14d 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer0.org1.example.com | [1f2 12-14 09:34:40.45 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 | [1dc 12-14 09:34:40.90 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 | [1e6 12-14 09:34:41.09 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 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [1f3 12-14 09:34:40.45 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.org2.example.com | [1dd 12-14 09:34:40.90 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [171 12-14 09:34:35.31 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 | [14e 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +explorer | [2017-12-14 09:35:15.600] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer1.org2.example.com | [1e7 12-14 09:34:41.09 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 | [1f4 12-14 09:34:40.45 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 | [1de 12-14 09:34:40.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +orderer.example.com | [14f 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [1f5 12-14 09:34:40.45 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 | [172 12-14 09:34:35.31 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.5,txid=1a2f4182-5071-455e-86ab-d28bfc8a2bb1,syscc=true,proposal=0x0,canname=qscc:1.0.5 +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [1e8 12-14 09:34:41.09 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 | [150 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +peer0.org1.example.com | [1f6 12-14 09:34:40.45 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.org2.example.com | [1df 12-14 09:34:40.90 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.org1.example.com | [173 12-14 09:34:35.31 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.5 is being launched +explorer | at ClientRequest.emit (events.js:188:7) +peer1.org2.example.com | [1e9 12-14 09:34:41.09 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 | [151 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [1f7 12-14 09:34:40.45 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 +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org2.example.com | [1ea 12-14 09:34:41.09 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 | [1e0 12-14 09:34:40.90 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 +peer1.org1.example.com | [174 12-14 09:34:35.31 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 | [1f8 12-14 09:34:40.45 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 +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [1eb 12-14 09:34:41.09 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 | [175 12-14 09:34:35.31 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 | [1e1 12-14 09:34:40.90 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org1.example.com | [1f9 12-14 09:34:40.45 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 | [176 12-14 09:34:35.31 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.5(networkid:dev,peerid:peer1.org1.example.com) +peer1.org2.example.com | [1ec 12-14 09:34:41.09 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.org2.example.com | [1e2 12-14 09:34:40.90 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 | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +explorer | at emitErrorNT (net.js:1281:8) +peer0.org1.example.com | [1fa 12-14 09:34:40.45 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 | [177 12-14 09:34:35.31 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 | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org2.example.com | [1e3 12-14 09:34:40.90 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.org1.example.com | [1fb 12-14 09:34:40.45 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.org1.example.com | [178 12-14 09:34:35.31 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 | [1ed 12-14 09:34:41.09 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 | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer0.org1.example.com | [1fc 12-14 09:34:40.45 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.org2.example.com | [1e4 12-14 09:34:40.90 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 | CORE_CHAINCODE_ID_NAME=qscc:1.0.5 +peer1.org2.example.com | [1ee 12-14 09:34:41.09 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 | [1fd 12-14 09:34:40.45 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 | [1e5 12-14 09:34:40.90 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 +explorer | [2017-12-14 09:35:15.600] [ERROR] Helper - admin enrollment failed +peer0.org1.example.com | [1fe 12-14 09:34:40.45 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 | [1ef 12-14 09:34:41.09 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 | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +peer0.org2.example.com | [1e6 12-14 09:34:40.90 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 | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | [1ff 12-14 09:34:40.45 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 | [200 12-14 09:34:40.45 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 +explorer | [2017-12-14 09:35:15.601] [ERROR] Query - Error: Missing userContext parameter +peer0.org2.example.com | [1e7 12-14 09:34:40.90 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 | [1f0 12-14 09:34:41.09 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 | [201 12-14 09:34:40.45 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 | [202 12-14 09:34:40.45 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_LOGGING_LEVEL=info +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer0.org2.example.com | [1e8 12-14 09:34:40.90 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 | [1e9 12-14 09:34:40.90 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 | [1ea 12-14 09:34:40.90 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 | [1eb 12-14 09:34:40.90 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 | CORE_CHAINCODE_LOGGING_SHIM=warning +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org1.example.com | [203 12-14 09:34:40.45 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 | BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +orderer.example.com | RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer1.org2.example.com | [1f1 12-14 09:34:41.09 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 | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer0.org1.example.com | [204 12-14 09:34:40.45 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 | [1ec 12-14 09:34:40.90 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 | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +peer1.org2.example.com | [1f2 12-14 09:34:41.09 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 | [179 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.5) lock +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer0.org1.example.com | [205 12-14 09:34:40.45 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 | [1ed 12-14 09:34:40.90 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 | kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +peer1.org2.example.com | [1f3 12-14 09:34:41.09 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 | [17a 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.5) lock +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [206 12-14 09:34:40.45 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 | [1ee 12-14 09:34:40.90 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.org2.example.com | [1f4 12-14 09:34:41.09 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 | VA7fF8MfGA== +explorer | [2017-12-14 09:35:15.601] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer0.org1.example.com | [207 12-14 09:34:40.45 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.org2.example.com | [1ef 12-14 09:34:40.90 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 | [17b 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.5 +peer1.org2.example.com | [1f5 12-14 09:34:41.09 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 | -----END CERTIFICATE----- +orderer.example.com | [152 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer0.org2.example.com | [1f0 12-14 09:34:40.90 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 | [1f1 12-14 09:34:40.90 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.org1.example.com | [17c 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.5) +peer0.org1.example.com | [208 12-14 09:34:40.45 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 | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 97): Error: Cannot save null userContext. +peer0.org2.example.com | [1f2 12-14 09:34:40.90 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 | [209 12-14 09:34:40.45 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 | [1f6 12-14 09:34:41.09 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 | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org1.example.com | [17e 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.5 +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org2.example.com | [1f3 12-14 09:34:40.90 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 | [20a 12-14 09:34:40.45 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 | [1f7 12-14 09:34:41.09 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 | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:35:15.617] [ERROR] Query - Error: Connect Failed +peer1.org1.example.com | [17f 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer1.org2.example.com | [1f8 12-14 09:34:41.09 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 | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +peer0.org2.example.com | [1f4 12-14 09:34:40.90 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 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [180 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.5 +peer1.org2.example.com | [1f9 12-14 09:34:41.09 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 | [20b 12-14 09:34:40.46 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 | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +explorer | [2017-12-14 09:35:16.712] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer0.org2.example.com | [1f5 12-14 09:34:40.90 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 | [20c 12-14 09:34:40.46 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 | [1fa 12-14 09:34:41.09 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 | [181 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer0.org2.example.com | [1f6 12-14 09:34:40.90 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 | [20d 12-14 09:34:40.46 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 | [1fb 12-14 09:34:41.09 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 | [1fc 12-14 09:34:41.09 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 | [17d 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.5 +peer1.org1.example.com | [182 12-14 09:34:35.31 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 | [183 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [184 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +peer1.org2.example.com | [1fd 12-14 09:34:41.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org1.example.com | [20e 12-14 09:34:40.46 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 | [20f 12-14 09:34:40.46 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 | [1f7 12-14 09:34:40.90 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 | Xk1Xy2C2aVQjOcr++w== +peer1.org2.example.com | [1fe 12-14 09:34:41.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +explorer | at emitErrorNT (net.js:1281:8) +peer1.org1.example.com | [185 12-14 09:34:35.31 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 | [1f8 12-14 09:34:40.90 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 | -----END CERTIFICATE----- +peer1.org2.example.com | [1ff 12-14 09:34:41.09 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 | [200 12-14 09:34:41.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer1.org1.example.com | [186 12-14 09:34:35.31 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 | [1f9 12-14 09:34:40.90 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 | [153 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [210 12-14 09:34:40.46 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 | [201 12-14 09:34:41.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer0.org2.example.com | [1fa 12-14 09:34:40.90 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 | [187 12-14 09:34:35.31 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.5 +peer0.org1.example.com | [211 12-14 09:34:40.46 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 | [212 12-14 09:34:40.46 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 | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +peer1.org2.example.com | [202 12-14 09:34:41.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +peer0.org2.example.com | [1fb 12-14 09:34:40.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +explorer | [2017-12-14 09:35:16.712] [ERROR] Helper - admin enrollment failed +peer1.org1.example.com | [188 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.5" , sending back REGISTERED +peer1.org2.example.com | [203 12-14 09:34:41.09 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 | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [213 12-14 09:34:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org2.example.com | [1fc 12-14 09:34:40.91 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 | [189 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +explorer | [2017-12-14 09:35:16.713] [ERROR] Query - Error: Missing userContext parameter +peer1.org2.example.com | [204 12-14 09:34:41.09 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 | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | [214 12-14 09:34:40.46 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 | [18a 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [205 12-14 09:34:41.09 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 +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org2.example.com | [1fd 12-14 09:34:40.91 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 | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +peer0.org1.example.com | [215 12-14 09:34:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org2.example.com | [1fe 12-14 09:34:40.91 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 | [206 12-14 09:34:41.09 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 | [18c 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [216 12-14 09:34:40.46 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +peer0.org2.example.com | [1ff 12-14 09:34:40.91 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 | [207 12-14 09:34:41.09 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 | [217 12-14 09:34:40.46 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 | [18b 12-14 09:34:35.31 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.5 launch seq completed +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org2.example.com | [200 12-14 09:34:40.91 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 | [208 12-14 09:34:41.09 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 | [18e 12-14 09:34:35.31 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 | [218 12-14 09:34:40.46 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 +explorer | [2017-12-14 09:35:16.713] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +peer0.org2.example.com | [201 12-14 09:34:40.91 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 | [209 12-14 09:34:41.09 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.org1.example.com | [219 12-14 09:34:40.46 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 | [18f 12-14 09:34:35.31 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 | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +peer1.org2.example.com | [20a 12-14 09:34:41.09 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 | [202 12-14 09:34:40.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org1.example.com | [190 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1a2f4182]Move state message READY +peer0.org1.example.com | [21a 12-14 09:34:40.46 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 | [21b 12-14 09:34:40.46 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 | [203 12-14 09:34:40.91 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 | [20b 12-14 09:34:41.09 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 | [191 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1a2f4182]Fabric side Handling ChaincodeMessage of type: READY in state established +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +peer0.org1.example.com | [21c 12-14 09:34:40.46 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 | [204 12-14 09:34:40.91 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.org1.example.com | [192 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [1a2f4182]Entered state ready +peer0.org1.example.com | [21d 12-14 09:34:40.46 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 | [20c 12-14 09:34:41.09 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 +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 100): Error: Cannot save null userContext. +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +peer1.org1.example.com | [193 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:1a2f4182-5071-455e-86ab-d28bfc8a2bb1 +peer1.org1.example.com | [194 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1a2f4182]sending state message READY +peer0.org2.example.com | [205 12-14 09:34:40.91 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 | [21e 12-14 09:34:40.46 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 | [20d 12-14 09:34:41.09 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 +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org1.example.com | [195 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [21f 12-14 09:34:40.46 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.org2.example.com | [206 12-14 09:34:40.91 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 | [20e 12-14 09:34:41.09 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 | [154 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer1.org1.example.com | [196 12-14 09:34:35.31 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 | [207 12-14 09:34:40.91 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 | [220 12-14 09:34:40.46 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 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer1.org2.example.com | [20f 12-14 09:34:41.09 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 | [155 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +peer1.org1.example.com | [197 12-14 09:34:35.31 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 | [208 12-14 09:34:40.91 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 | [210 12-14 09:34:41.09 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 | [221 12-14 09:34:40.46 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 | [156 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [198 12-14 09:34:35.31 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.5 +peer1.org2.example.com | [211 12-14 09:34:41.09 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 | [209 12-14 09:34:40.91 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 | [157 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [222 12-14 09:34:40.46 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 +explorer | [2017-12-14 09:35:16.726] [ERROR] Query - Error: Connect Failed +peer1.org1.example.com | [199 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1a2f4182]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [212 12-14 09:34:41.09 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 | [20a 12-14 09:34:40.91 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 | [158 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +peer1.org1.example.com | [19a 12-14 09:34:35.31 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 | [223 12-14 09:34:40.46 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.org1.example.com | [19b 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1a2f4182]sendExecuteMsg trigger event INIT +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | [159 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [213 12-14 09:34:41.09 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 | [20b 12-14 09:34:40.91 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 | [18d 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [224 12-14 09:34:40.46 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 | [214 12-14 09:34:41.09 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 | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL +explorer | [2017-12-14 09:35:17.825] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer0.org2.example.com | [20c 12-14 09:34:40.91 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 | [225 12-14 09:34:40.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 +peer1.org2.example.com | [215 12-14 09:34:41.09 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 | [19c 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a2f4182]Received message READY from shim +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer0.org2.example.com | [20d 12-14 09:34:40.91 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [216 12-14 09:34:41.09 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 | [19d 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1a2f4182]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [226 12-14 09:34:40.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 +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [217 12-14 09:34:41.09 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 | [20e 12-14 09:34:40.91 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 | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +explorer | at ClientRequest.emit (events.js:188:7) +peer1.org1.example.com | [19e 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1a2f4182]Move state message INIT +peer1.org2.example.com | [218 12-14 09:34:41.09 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 | [20f 12-14 09:34:40.91 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 | [227 12-14 09:34:40.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 | [19f 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1a2f4182]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +peer1.org2.example.com | [219 12-14 09:34:41.09 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 | [21a 12-14 09:34:41.09 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 +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer0.org1.example.com | [228 12-14 09:34:40.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 | [1a0 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +peer0.org2.example.com | [210 12-14 09:34:40.91 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 | [211 12-14 09:34:40.91 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 +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [1a1 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1a2f4182]sending state message INIT +peer1.org1.example.com | [1a2 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a2f4182]Received message INIT from shim +peer1.org1.example.com | [1a3 12-14 09:34:35.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1a2f4182]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [1a4 12-14 09:34:35.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [212 12-14 09:34:40.91 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 +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +peer1.org2.example.com | [21b 12-14 09:34:41.09 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 | [229 12-14 09:34:40.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.org1.example.com | [1a5 12-14 09:34:35.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [1a2f4182]Received INIT, initializing chaincode +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +explorer | [2017-12-14 09:35:17.825] [ERROR] Helper - admin enrollment failed +peer1.org2.example.com | [21c 12-14 09:34:41.09 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 | [21d 12-14 09:34:41.09 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 | [21e 12-14 09:34:41.09 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 | [21f 12-14 09:34:41.09 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 | [220 12-14 09:34:41.10 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 | [213 12-14 09:34:40.91 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.org2.example.com | [214 12-14 09:34:40.91 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 | [215 12-14 09:34:40.91 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 +explorer | [2017-12-14 09:35:17.826] [ERROR] Query - Error: Missing userContext parameter +peer0.org1.example.com | [22a 12-14 09:34:40.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 +orderer.example.com | +/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer1.org1.example.com | [1a6 12-14 09:34:35.32 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org2.example.com | [221 12-14 09:34:41.10 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 | [222 12-14 09:34:41.10 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 | [22b 12-14 09:34:40.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 +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN +peer1.org1.example.com | [1a7 12-14 09:34:35.32 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [1a8 12-14 09:34:35.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a2f4182]Init get response status: 200 +peer0.org2.example.com | [216 12-14 09:34:40.91 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.org1.example.com | [22c 12-14 09:34:40.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 +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +orderer.example.com | wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 +peer1.org2.example.com | [223 12-14 09:34:41.10 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 | [1a9 12-14 09:34:35.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a2f4182]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [217 12-14 09:34:40.91 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 | [22d 12-14 09:34:40.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.org1.example.com | [22e 12-14 09:34:40.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 +peer0.org1.example.com | [22f 12-14 09:34:40.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 +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer1.org2.example.com | [224 12-14 09:34:41.10 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 | [225 12-14 09:34:41.10 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 | [1aa 12-14 09:34:35.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a2f4182]Move state message COMPLETED +orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL +peer0.org1.example.com | [230 12-14 09:34:40.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 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org2.example.com | [218 12-14 09:34:40.91 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.org2.example.com | [226 12-14 09:34:41.10 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 | [1ab 12-14 09:34:35.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1a2f4182]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | liPpNxLSsBU= +explorer | [2017-12-14 09:35:17.826] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer0.org1.example.com | [231 12-14 09:34:40.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 +peer0.org2.example.com | [219 12-14 09:34:40.91 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 | [227 12-14 09:34:41.10 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +peer1.org1.example.com | [1ac 12-14 09:34:35.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a2f4182]send state message COMPLETED +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [232 12-14 09:34:40.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 +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer1.org2.example.com | [228 12-14 09:34:41.10 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain +peer1.org1.example.com | [1ad 12-14 09:34:35.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1a2f4182]Received message COMPLETED from shim +peer0.org2.example.com | [21a 12-14 09:34:40.91 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 | [15a 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [233 12-14 09:34:40.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 | [229 12-14 09:34:41.11 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 | [1ae 12-14 09:34:35.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1a2f4182]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [21b 12-14 09:34:40.91 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 | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 103): Error: Cannot save null userContext. +peer0.org1.example.com | [234 12-14 09:34:40.46 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 | [22a 12-14 09:34:41.11 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 [651a8564-0ce4-4bad-bed7-5393acba5fcf] +peer0.org2.example.com | [21c 12-14 09:34:40.91 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [1af 12-14 09:34:35.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1a2f4182-5071-455e-86ab-d28bfc8a2bb1]HandleMessage- COMPLETED. Notify +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [235 12-14 09:34:40.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 Org2MSP +peer0.org2.example.com | [21d 12-14 09:34:40.91 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 | [21e 12-14 09:34:40.91 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 | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [22b 12-14 09:34:41.11 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.5,txid=088ba5d1-9ba3-4c04-aaa7-32de210d4d87,syscc=true,proposal=0x0,canname=cscc:1.0.5 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer0.org1.example.com | [236 12-14 09:34:40.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 | [1b0 12-14 09:34:35.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1a2f4182-5071-455e-86ab-d28bfc8a2bb1 +peer0.org2.example.com | [21f 12-14 09:34:40.91 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 | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +peer1.org2.example.com | [22c 12-14 09:34:41.11 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.5 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [1b1 12-14 09:34:35.32 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 | [220 12-14 09:34:40.91 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 | [22d 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +explorer | [2017-12-14 09:35:17.848] [ERROR] Query - Error: Connect Failed +peer0.org1.example.com | [237 12-14 09:34:40.48 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 | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [1b2 12-14 09:34:35.32 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 | [221 12-14 09:34:40.91 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 | [22e 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:35:18.940] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [1b3 12-14 09:34:35.32 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess +peer0.org2.example.com | [222 12-14 09:34:40.91 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org2.example.com | [22f 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [088ba5d1]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [238 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +explorer | at emitOne (events.js:96:13) +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +peer1.org1.example.com | [1b4 12-14 09:34:35.32 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] +peer0.org2.example.com | [223 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org2.example.com | [230 12-14 09:34:41.11 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 | [239 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org2.example.com | [224 12-14 09:34:40.92 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 | [1b5 12-14 09:34:35.32 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] +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +peer1.org2.example.com | [231 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [088ba5d1]sendExecuteMsg trigger event INIT +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer0.org1.example.com | [23a 12-14 09:34:40.48 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 | [225 12-14 09:34:40.92 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 | [1b6 12-14 09:34:35.32 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 | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +peer1.org2.example.com | [232 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [088ba5d1]Move state message INIT +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [23b 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +peer0.org2.example.com | [226 12-14 09:34:40.92 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 | [1b7 12-14 09:34:35.32 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 | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org1.example.com | [23c 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain +peer1.org1.example.com | [1b8 12-14 09:34:35.32 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 | [227 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +peer1.org2.example.com | [233 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [088ba5d1]Fabric side Handling ChaincodeMessage of type: INIT in state ready +explorer | at emitErrorNT (net.js:1281:8) +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +peer1.org1.example.com | [1b9 12-14 09:34:35.32 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.org1.example.com | [23d 12-14 09:34:40.48 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 | [228 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer1.org2.example.com | [234 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [23e 12-14 09:34:40.48 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 [91ee7987-92ca-49f7-9386-47adfd8b6e80] +peer1.org1.example.com | [1ba 12-14 09:34:35.32 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.org2.example.com | [229 12-14 09:34:40.92 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 | zekLSULI9G2UUYA77A== +peer1.org2.example.com | [235 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [088ba5d1]sending state message INIT +peer1.org1.example.com | [1bb 12-14 09:34:35.32 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 | [23f 12-14 09:34:40.48 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.5,txid=95610a5a-e30e-4219-8453-e56230c587b0,syscc=true,proposal=0x0,canname=cscc:1.0.5 +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [236 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [088ba5d1]Received message INIT from shim +peer0.org2.example.com | [22a 12-14 09:34:40.92 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 [1189c111-7064-47a1-abb0-3a56b230a264] +peer0.org1.example.com | [240 12-14 09:34:40.48 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.5 +explorer | [2017-12-14 09:35:18.940] [ERROR] Helper - admin enrollment failed +orderer.example.com | [15b 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [237 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [088ba5d1]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [1bc 12-14 09:34:35.32 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 | [241 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [22b 12-14 09:34:40.92 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.5,txid=b2268498-9984-4fbf-b3d8-08b3d3a54ed7,syscc=true,proposal=0x0,canname=cscc:1.0.5 +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +explorer | [2017-12-14 09:35:18.940] [ERROR] Query - Error: Missing userContext parameter +peer1.org1.example.com | [1bd 12-14 09:34:35.32 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 | [238 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [242 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 +peer0.org2.example.com | [22c 12-14 09:34:40.92 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.5 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer1.org1.example.com | [1be 12-14 09:34:35.32 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 | [239 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [088ba5d1]Received INIT, initializing chaincode +peer0.org2.example.com | [22d 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [243 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [95610a5a]Inside sendExecuteMessage. Message INIT +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org2.example.com | [23a 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [1bf 12-14 09:34:35.32 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 | [244 12-14 09:34:40.48 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 | [22e 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 +peer1.org2.example.com | [23b 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [088ba5d1]Init get response status: 200 +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +peer0.org2.example.com | [22f 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b2268498]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [245 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [95610a5a]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [1c0 12-14 09:34:35.32 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.org2.example.com | [23c 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [088ba5d1]Init succeeded. Sending COMPLETED +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [230 12-14 09:34:40.92 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 | [246 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [95610a5a]Move state message INIT +peer1.org2.example.com | [23d 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [088ba5d1]Move state message COMPLETED +peer1.org1.example.com | [1c1 12-14 09:34:35.32 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' +explorer | [2017-12-14 09:35:18.940] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [231 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b2268498]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [247 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [95610a5a]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [23e 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [088ba5d1]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [1c2 12-14 09:34:35.32 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' +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer0.org2.example.com | [232 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b2268498]Move state message INIT +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +peer1.org2.example.com | [23f 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [088ba5d1]send state message COMPLETED +peer1.org1.example.com | [1c3 12-14 09:34:35.32 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 | [248 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [240 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [088ba5d1]Received message COMPLETED from shim +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +peer1.org1.example.com | [1c4 12-14 09:34:35.32 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 | [233 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b2268498]Fabric side Handling ChaincodeMessage of type: INIT in state ready +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 106): Error: Cannot save null userContext. +peer0.org1.example.com | [249 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [95610a5a]sending state message INIT +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +peer1.org2.example.com | [241 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [088ba5d1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [1c5 12-14 09:34:35.32 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 | [234 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [24a 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95610a5a]Received message INIT from shim +peer1.org2.example.com | [242 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [088ba5d1-9ba3-4c04-aaa7-32de210d4d87]HandleMessage- COMPLETED. Notify +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +peer1.org1.example.com | [1c6 12-14 09:34:35.32 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' +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org2.example.com | [235 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b2268498]sending state message INIT +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +peer1.org2.example.com | [243 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:088ba5d1-9ba3-4c04-aaa7-32de210d4d87 +peer1.org1.example.com | [1c7 12-14 09:34:35.32 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 | [24b 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [95610a5a]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [236 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2268498]Received message INIT from shim +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [1c8 12-14 09:34:40.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org2.example.com | [237 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b2268498]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [244 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | zekLSULI9G2UUYA77A== +peer0.org1.example.com | [24c 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [1c9 12-14 09:34:40.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4217a1ad0 +peer1.org1.example.com | [1ca 12-14 09:34:40.70 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 | [1cb 12-14 09:34:40.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [1cc 12-14 09:34:40.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} +peer0.org2.example.com | [238 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [245 12-14 09:34:41.11 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 | -----END CERTIFICATE----- +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer0.org1.example.com | [24d 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [95610a5a]Received INIT, initializing chaincode +peer1.org1.example.com | [1cd 12-14 09:34:40.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 | [239 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b2268498]Received INIT, initializing chaincode +peer0.org2.example.com | [23a 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org2.example.com | [23b 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2268498]Init get response status: 200 +peer1.org2.example.com | [246 12-14 09:34:41.11 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 [651a8564-0ce4-4bad-bed7-5393acba5fcf] +peer1.org2.example.com | [247 12-14 09:34:41.11 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 | [248 12-14 09:34:41.11 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 [19949660-ba8b-4563-8621-792725e965f9] +peer1.org2.example.com | [249 12-14 09:34:41.11 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.5,txid=6347738f-cbff-4b18-8b2d-b37db01edc93,syscc=true,proposal=0x0,canname=lscc:1.0.5 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [24e 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org1.example.com | [24f 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95610a5a]Init get response status: 200 +orderer.example.com | [15c 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer0.org2.example.com | [23c 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2268498]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [24a 12-14 09:34:41.11 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.5 +peer1.org1.example.com | [1ce 12-14 09:34:40.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [250 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95610a5a]Init succeeded. Sending COMPLETED +explorer | [2017-12-14 09:35:18.952] [ERROR] Query - Error: Connect Failed +orderer.example.com | [15d 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [23d 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2268498]Move state message COMPLETED +peer1.org2.example.com | [24b 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [1cf 12-14 09:34:40.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4217816d0, header 0xc4217a1b60 +peer0.org1.example.com | [251 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95610a5a]Move state message COMPLETED +orderer.example.com | [15e 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [23e 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b2268498]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [1d0 12-14 09:34:40.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:"cscc" +peer0.org1.example.com | [252 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [95610a5a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [24c 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +orderer.example.com | [15f 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +explorer | [2017-12-14 09:35:20.057] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer0.org2.example.com | [23f 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2268498]send state message COMPLETED +peer1.org1.example.com | [1d1 12-14 09:34:40.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 7ffc0abc4cb7bf54a97df3ef133209a2dfc7015538dd2fb90fc83f62a7dd73e8 +peer0.org1.example.com | [253 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95610a5a]send state message COMPLETED +orderer.example.com | [160 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [240 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b2268498]Received message COMPLETED from shim +peer1.org1.example.com | [1d2 12-14 09:34:40.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 7ffc0abc4cb7bf54a97df3ef133209a2dfc7015538dd2fb90fc83f62a7dd73e8 channel id: +peer0.org1.example.com | [254 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [95610a5a]Received message COMPLETED from shim +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer1.org2.example.com | [24d 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6347738f]Inside sendExecuteMessage. Message INIT +orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +peer1.org1.example.com | [1d3 12-14 09:34:40.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 7ffc0abc4cb7bf54a97df3ef133209a2dfc7015538dd2fb90fc83f62a7dd73e8 channel id: version: 1.0.5 +peer0.org1.example.com | [255 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [95610a5a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [241 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b2268498]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [24e 12-14 09:34:41.11 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [1d4 12-14 09:34:40.70 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.5,txid=7ffc0abc4cb7bf54a97df3ef133209a2dfc7015538dd2fb90fc83f62a7dd73e8,syscc=true,proposal=0xc4217816d0,canname=cscc:1.0.5 +peer0.org1.example.com | [256 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [95610a5a-e30e-4219-8453-e56230c587b0]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [242 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b2268498-9984-4fbf-b3d8-08b3d3a54ed7]HandleMessage- COMPLETED. Notify +explorer | at ClientRequest.emit (events.js:188:7) +peer1.org2.example.com | [24f 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6347738f]sendExecuteMsg trigger event INIT +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer1.org1.example.com | [1d5 12-14 09:34:40.70 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.5 +peer0.org1.example.com | [257 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:95610a5a-e30e-4219-8453-e56230c587b0 +peer0.org2.example.com | [243 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b2268498-9984-4fbf-b3d8-08b3d3a54ed7 +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org2.example.com | [250 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6347738f]Move state message INIT +peer1.org1.example.com | [1d6 12-14 09:34:40.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [258 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [244 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [251 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6347738f]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +peer1.org1.example.com | [1d7 12-14 09:34:40.70 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.5 +peer0.org1.example.com | [259 12-14 09:34:40.48 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 | [245 12-14 09:34:40.92 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 +explorer | at TLSSocket.emit (events.js:188:7) +peer1.org1.example.com | [1d8 12-14 09:34:40.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7ffc0abc]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [246 12-14 09:34:40.92 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 [1189c111-7064-47a1-abb0-3a56b230a264] +peer1.org2.example.com | [252 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at emitErrorNT (net.js:1281:8) +peer1.org1.example.com | [1d9 12-14 09:34:40.70 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 | [25a 12-14 09:34:40.48 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 [91ee7987-92ca-49f7-9386-47adfd8b6e80] +peer1.org2.example.com | [253 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6347738f]sending state message INIT +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org2.example.com | [247 12-14 09:34:40.92 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 | [1da 12-14 09:34:40.70 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 | [25b 12-14 09:34:40.48 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 | [254 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6347738f]Received message INIT from shim +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer0.org2.example.com | [248 12-14 09:34:40.92 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 [f843355c-4778-4e7d-b209-bdb101116009] +peer1.org1.example.com | [1db 12-14 09:34:40.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7ffc0abc]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [25c 12-14 09:34:40.48 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 [634efaf9-d8e7-4585-9eb3-9068585f8023] +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +explorer | [2017-12-14 09:35:20.058] [ERROR] Helper - admin enrollment failed +peer0.org2.example.com | [249 12-14 09:34:40.92 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.5,txid=b49f9f89-bc79-403e-8daa-472f702e9e64,syscc=true,proposal=0x0,canname=lscc:1.0.5 +peer0.org1.example.com | [25d 12-14 09:34:40.48 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.5,txid=9651afbb-8e31-4430-9bfb-392695ead8a8,syscc=true,proposal=0x0,canname=lscc:1.0.5 +peer1.org2.example.com | [255 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6347738f]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +explorer | [2017-12-14 09:35:20.058] [ERROR] Query - Error: Missing userContext parameter +peer0.org2.example.com | [24a 12-14 09:34:40.92 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.5 +peer1.org1.example.com | [1dc 12-14 09:34:40.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7ffc0abc]Move state message TRANSACTION +peer1.org2.example.com | [256 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [25e 12-14 09:34:40.48 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.5 +orderer.example.com | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org2.example.com | [24b 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [1dd 12-14 09:34:40.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7ffc0abc]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [25f 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [257 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [6347738f]Received INIT, initializing chaincode +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer0.org2.example.com | [24c 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org1.example.com | [260 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +peer1.org1.example.com | [1de 12-14 09:34:40.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer0.org2.example.com | [24d 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b49f9f89]Inside sendExecuteMessage. Message INIT +orderer.example.com | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +peer1.org2.example.com | [258 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6347738f]Init get response status: 200 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org2.example.com | [24e 12-14 09:34:40.92 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 | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +peer1.org2.example.com | [259 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6347738f]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [261 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9651afbb]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [1df 12-14 09:34:40.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7ffc0abc]sending state message TRANSACTION +explorer | [2017-12-14 09:35:20.058] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer0.org2.example.com | [24f 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b49f9f89]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [1e0 12-14 09:34:40.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ffc0abc]Received message TRANSACTION from shim +peer1.org2.example.com | [25a 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6347738f]Move state message COMPLETED +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +peer0.org1.example.com | [262 12-14 09:34:40.48 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 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6347738f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [250 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b49f9f89]Move state message INIT +peer1.org1.example.com | [1e1 12-14 09:34:40.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7ffc0abc]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [25c 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6347738f]send state message COMPLETED +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [263 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9651afbb]sendExecuteMsg trigger event INIT +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 109): Error: Cannot save null userContext. +peer0.org2.example.com | [251 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b49f9f89]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [1e2 12-14 09:34:40.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7ffc0abc]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [161 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org2.example.com | [25d 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6347738f]Received message COMPLETED from shim +peer0.org2.example.com | [252 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [1e3 12-14 09:34:40.70 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +peer1.org2.example.com | [25e 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6347738f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [253 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b49f9f89]sending state message INIT +peer0.org1.example.com | [264 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9651afbb]Move state message INIT +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [25f 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6347738f-cbff-4b18-8b2d-b37db01edc93]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [1e4 12-14 09:34:40.71 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org2.example.com | [260 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:6347738f-cbff-4b18-8b2d-b37db01edc93 +peer0.org2.example.com | [254 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b49f9f89]Received message INIT from shim +peer0.org1.example.com | [265 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9651afbb]Fabric side Handling ChaincodeMessage of type: INIT in state ready +explorer | [2017-12-14 09:35:20.079] [ERROR] Query - Error: Connect Failed +peer1.org1.example.com | [1e5 12-14 09:34:40.71 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.org2.example.com | [261 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [255 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b49f9f89]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +peer0.org1.example.com | [266 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [262 12-14 09:34:41.11 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 | [1e6 12-14 09:34:40.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +peer1.org2.example.com | [263 12-14 09:34:41.11 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 [19949660-ba8b-4563-8621-792725e965f9] +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +peer0.org2.example.com | [256 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [267 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9651afbb]sending state message INIT +peer1.org2.example.com | [264 12-14 09:34:41.11 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 +explorer | [2017-12-14 09:35:21.169] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer1.org1.example.com | [1e7 12-14 09:34:40.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org1.example.com | [1e8 12-14 09:34:40.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +peer0.org2.example.com | [257 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b49f9f89]Received INIT, initializing chaincode +peer0.org1.example.com | [268 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9651afbb]Received message INIT from shim +peer1.org2.example.com | [265 12-14 09:34:41.11 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 [d2672cdf-2131-421f-b54e-0095257a40dc] +explorer | at emitOne (events.js:96:13) +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +peer1.org1.example.com | [1e9 12-14 09:34:40.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +peer0.org2.example.com | [258 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b49f9f89]Init get response status: 200 +peer0.org1.example.com | [269 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9651afbb]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [266 12-14 09:34:41.11 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.5,txid=0784fe78-ab0f-426e-bc98-b4fb45a2b4c5,syscc=true,proposal=0x0,canname=escc:1.0.5 +explorer | at TLSSocket.emit (events.js:188:7) +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +peer1.org1.example.com | [1ea 12-14 09:34:40.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +peer0.org1.example.com | [26a 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [267 12-14 09:34:41.11 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.5 +peer1.org2.example.com | [268 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [269 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +explorer | at emitErrorNT (net.js:1281:8) +peer1.org1.example.com | [1eb 12-14 09:34:40.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +peer1.org1.example.com | [1ec 12-14 09:34:40.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc42194b160)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org1.example.com | [26b 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [9651afbb]Received INIT, initializing chaincode +peer0.org2.example.com | [259 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b49f9f89]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [25a 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b49f9f89]Move state message COMPLETED +peer1.org1.example.com | [1ed 12-14 09:34:40.71 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 | -----END CERTIFICATE----- +orderer.example.com | [162 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +explorer | [2017-12-14 09:35:21.170] [ERROR] Helper - admin enrollment failed +peer0.org2.example.com | [25b 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b49f9f89]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [26c 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9651afbb]Init get response status: 200 +peer1.org2.example.com | [26a 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0784fe78]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [26b 12-14 09:34:41.11 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 | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +explorer | [2017-12-14 09:35:21.170] [ERROR] Query - Error: Missing userContext parameter +peer0.org2.example.com | [25c 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b49f9f89]send state message COMPLETED +peer0.org2.example.com | [25d 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b49f9f89]Received message COMPLETED from shim +peer1.org1.example.com | [1ee 12-14 09:34:40.71 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 | [1ef 12-14 09:34:40.71 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)(0xc421771400), Data:(*common.BlockData)(0xc42182ffc0), Metadata:(*common.BlockMetadata)(0xc42195c000)}, doMVCCValidation=true +peer1.org1.example.com | [1f0 12-14 09:34:40.71 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 | [26d 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9651afbb]Init succeeded. Sending COMPLETED +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer1.org2.example.com | [26c 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0784fe78]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [25e 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b49f9f89]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +peer1.org2.example.com | [26d 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0784fe78]Move state message INIT +peer1.org2.example.com | [26e 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0784fe78]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [26f 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [270 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0784fe78]sending state message INIT +peer1.org2.example.com | [271 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0784fe78]Received message INIT from shim +peer1.org1.example.com | [1f1 12-14 09:34:40.71 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 | -----END CERTIFICATE----- +peer0.org2.example.com | [25f 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b49f9f89-bc79-403e-8daa-472f702e9e64]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [260 12-14 09:34:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b49f9f89-bc79-403e-8daa-472f702e9e64 +peer0.org2.example.com | [261 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [26e 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9651afbb]Move state message COMPLETED +peer0.org1.example.com | [26f 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9651afbb]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [272 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0784fe78]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [273 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [274 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [0784fe78]Received INIT, initializing chaincode +peer1.org1.example.com | [1f2 12-14 09:34:40.72 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{0x4c, 0x27, 0x5, 0x1c, 0x84, 0xd, 0xf5, 0xe1, 0xcf, 0xca, 0xe1, 0x49, 0x4a, 0x6a, 0xa, 0x31, 0xd4, 0x1c, 0x37, 0xaa, 0xd5, 0xcf, 0xfe, 0x44, 0x8e, 0x3, 0x4b, 0xb5, 0x72, 0x19, 0x89, 0x53} txOffsets= +peer1.org1.example.com | txId= locPointer=offset=38, bytesLength=11902 +peer1.org1.example.com | ] +peer1.org1.example.com | [1f3 12-14 09:34:40.72 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=11902] for tx ID: [] to index +peer1.org2.example.com | [275 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +orderer.example.com | [163 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [164 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [165 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [166 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org2.example.com | [262 12-14 09:34:40.93 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 | [263 12-14 09:34:40.93 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 [f843355c-4778-4e7d-b209-bdb101116009] +peer0.org1.example.com | [270 12-14 09:34:40.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9651afbb]send state message COMPLETED +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | [2017-12-14 09:35:21.170] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 112): Error: Cannot save null userContext. +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:35:21.189] [ERROR] Query - Error: Connect Failed +peer1.org1.example.com | [1f4 12-14 09:34:40.72 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=11902] for tx number:[0] ID: [] to blockNumTranNum index +orderer.example.com | [167 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +peer1.org2.example.com | [276 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0784fe78]Init get response status: 200 +peer0.org2.example.com | [264 12-14 09:34:40.93 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 | [271 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9651afbb]Received message COMPLETED from shim +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [1f5 12-14 09:34:40.72 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=[11946], isChainEmpty=[false], lastBlockNumber=[0] +peer1.org2.example.com | [277 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0784fe78]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [272 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9651afbb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | [2017-12-14 09:35:22.253] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer0.org2.example.com | [265 12-14 09:34:40.93 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 [c6166c5d-6482-4034-983e-de194ea2847f] +peer1.org2.example.com | [278 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0784fe78]Move state message COMPLETED +peer0.org1.example.com | [273 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9651afbb-8e31-4430-9bfb-392695ead8a8]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [1f6 12-14 09:34:40.72 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 | [168 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer1.org2.example.com | [279 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0784fe78]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [274 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9651afbb-8e31-4430-9bfb-392695ead8a8 +peer0.org2.example.com | [266 12-14 09:34:40.93 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.5,txid=e166f681-7e00-4925-aa32-8407c15c498a,syscc=true,proposal=0x0,canname=escc:1.0.5 +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [1f7 12-14 09:34:40.72 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.org1.example.com | [275 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | [169 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +explorer | at ClientRequest.emit (events.js:188:7) +peer1.org2.example.com | [27a 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0784fe78]send state message COMPLETED +peer0.org2.example.com | [267 12-14 09:34:40.93 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.5 +peer0.org1.example.com | [276 12-14 09:34:40.49 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 | [1f8 12-14 09:34:40.72 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 +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +orderer.example.com | [16a 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [277 12-14 09:34:40.49 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 [634efaf9-d8e7-4585-9eb3-9068585f8023] +peer1.org1.example.com | [1f9 12-14 09:34:40.72 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 | [268 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [27b 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0784fe78]Received message COMPLETED from shim +peer0.org1.example.com | [278 12-14 09:34:40.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 +orderer.example.com | [16b 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +explorer | at TLSSocket.emit (events.js:188:7) +peer1.org2.example.com | [27c 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0784fe78]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [1fa 12-14 09:34:40.72 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 | [279 12-14 09:34:40.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 [081fd16d-705c-43b1-a771-17c76d83cd84] +peer0.org2.example.com | [269 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +orderer.example.com | [16c 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +explorer | at emitErrorNT (net.js:1281:8) +peer1.org2.example.com | [27d 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0784fe78-ab0f-426e-bc98-b4fb45a2b4c5]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [27a 12-14 09:34:40.49 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.5,txid=884759d2-b169-4281-a689-53e0528b1504,syscc=true,proposal=0x0,canname=escc:1.0.5 +peer1.org1.example.com | [1fb 12-14 09:34:40.72 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.org2.example.com | [26a 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e166f681]Inside sendExecuteMessage. Message INIT +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org1.example.com | [27b 12-14 09:34:40.49 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.5 +peer1.org2.example.com | [27e 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0784fe78-ab0f-426e-bc98-b4fb45a2b4c5 +peer1.org1.example.com | [1fc 12-14 09:34:40.73 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 | [16d 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +peer0.org2.example.com | [26b 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer0.org1.example.com | [27c 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [1fd 12-14 09:34:40.73 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +orderer.example.com | [16e 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer1.org2.example.com | [27f 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +explorer | [2017-12-14 09:35:22.254] [ERROR] Helper - admin enrollment failed +peer0.org1.example.com | [27d 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +orderer.example.com | [16f 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +peer0.org2.example.com | [26c 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e166f681]sendExecuteMsg trigger event INIT +explorer | [2017-12-14 09:35:22.255] [ERROR] Query - Error: Missing userContext parameter +peer0.org1.example.com | [27e 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [884759d2]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [1fe 12-14 09:34:40.73 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [170 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer1.org2.example.com | [280 12-14 09:34:41.11 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 +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org1.example.com | [27f 12-14 09:34:40.49 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 | [1ff 12-14 09:34:40.73 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 | [26d 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e166f681]Move state message INIT +orderer.example.com | [171 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org1.example.com | [200 12-14 09:34:40.73 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 | [281 12-14 09:34:41.11 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 [d2672cdf-2131-421f-b54e-0095257a40dc] +peer0.org1.example.com | [280 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [884759d2]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [26e 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e166f681]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | [172 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer1.org1.example.com | [201 12-14 09:34:40.73 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 | [282 12-14 09:34:41.11 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 | [281 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [884759d2]Move state message INIT +orderer.example.com | [173 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org2.example.com | [26f 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org1.example.com | [202 12-14 09:34:40.73 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 | [174 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer1.org2.example.com | [283 12-14 09:34:41.11 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 [000c83f9-9d81-44e9-936d-4beb0027ba46] +peer0.org1.example.com | [282 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [884759d2]Fabric side Handling ChaincodeMessage of type: INIT in state ready +explorer | [2017-12-14 09:35:22.255] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer0.org2.example.com | [270 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e166f681]sending state message INIT +orderer.example.com | [175 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +peer1.org1.example.com | [203 12-14 09:34:40.73 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 | [284 12-14 09:34:41.11 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.5,txid=b9adc9a8-21b8-4cb3-9d2d-74febbc22cf4,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer0.org1.example.com | [283 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +orderer.example.com | [176 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer1.org1.example.com | [204 12-14 09:34:40.73 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 | [271 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e166f681]Received message INIT from shim +peer1.org2.example.com | [285 12-14 09:34:41.11 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.5 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +orderer.example.com | [177 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +peer0.org1.example.com | [284 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [884759d2]sending state message INIT +peer1.org1.example.com | [205 12-14 09:34:40.73 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 +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 115): Error: Cannot save null userContext. +orderer.example.com | [178 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org2.example.com | [272 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e166f681]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [286 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +orderer.example.com | [179 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +peer0.org2.example.com | [273 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [285 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [884759d2]Received message INIT from shim +peer1.org1.example.com | [206 12-14 09:34:40.73 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 | [17a 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer1.org2.example.com | [287 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer0.org1.example.com | [286 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [884759d2]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [274 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e166f681]Received INIT, initializing chaincode +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer1.org1.example.com | [207 12-14 09:34:40.73 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 | [17b 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [287 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [288 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b9adc9a8]Inside sendExecuteMessage. Message INIT +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | [17c 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org2.example.com | [275 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer0.org1.example.com | [288 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [884759d2]Received INIT, initializing chaincode +peer1.org1.example.com | [208 12-14 09:34:40.73 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 | [17d 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer1.org2.example.com | [289 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | [2017-12-14 09:35:22.274] [ERROR] Query - Error: Connect Failed +peer0.org1.example.com | [289 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +orderer.example.com | [17e 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +peer1.org2.example.com | [28a 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b9adc9a8]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [276 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e166f681]Init get response status: 200 +orderer.example.com | [17f 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [28a 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [884759d2]Init get response status: 200 +peer0.org2.example.com | [277 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e166f681]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [209 12-14 09:34:40.73 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 | [28b 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b9adc9a8]Move state message INIT +orderer.example.com | [180 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +explorer | [2017-12-14 09:35:23.391] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer1.org1.example.com | [20a 12-14 09:34:40.73 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 | [28b 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [884759d2]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [278 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e166f681]Move state message COMPLETED +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer1.org2.example.com | [28c 12-14 09:34:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b9adc9a8]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | [181 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +peer0.org1.example.com | [28c 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [884759d2]Move state message COMPLETED +peer1.org1.example.com | [20b 12-14 09:34:40.73 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 +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [279 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e166f681]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [182 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +peer1.org1.example.com | [20c 12-14 09:34:40.73 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 | [28d 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [884759d2]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [28d 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [183 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org2.example.com | [27a 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e166f681]send state message COMPLETED +peer1.org1.example.com | [20d 12-14 09:34:40.73 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 | [28e 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [884759d2]send state message COMPLETED +orderer.example.com | [184 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org2.example.com | [28e 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b9adc9a8]sending state message INIT +peer1.org1.example.com | [20e 12-14 09:34:40.73 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 | [27b 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e166f681]Received message COMPLETED from shim +peer0.org1.example.com | [28f 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [884759d2]Received message COMPLETED from shim +explorer | at emitOne (events.js:96:13) +orderer.example.com | [185 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel +peer1.org1.example.com | [20f 12-14 09:34:40.73 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.org2.example.com | [27c 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e166f681]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [28f 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b9adc9a8]Received message INIT from shim +orderer.example.com | [186 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +peer0.org1.example.com | [290 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [884759d2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at TLSSocket.emit (events.js:188:7) +peer1.org1.example.com | [210 12-14 09:34:40.73 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 | [187 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +peer0.org1.example.com | [291 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [884759d2-b169-4281-a689-53e0528b1504]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [290 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b9adc9a8]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [27d 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e166f681-7e00-4925-aa32-8407c15c498a]HandleMessage- COMPLETED. Notify +explorer | at emitErrorNT (net.js:1281:8) +orderer.example.com | [188 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +peer1.org1.example.com | [211 12-14 09:34:40.73 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 +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org1.example.com | [292 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:884759d2-b169-4281-a689-53e0528b1504 +peer0.org2.example.com | [27e 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e166f681-7e00-4925-aa32-8407c15c498a +peer1.org2.example.com | [291 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [212 12-14 09:34:40.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer0.org1.example.com | [293 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [27f 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | [189 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +peer1.org2.example.com | [292 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b9adc9a8]Received INIT, initializing chaincode +peer1.org1.example.com | [213 12-14 09:34:40.73 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 +peer1.org1.example.com | [214 12-14 09:34:40.73 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 +explorer | [2017-12-14 09:35:23.392] [ERROR] Helper - admin enrollment failed +peer0.org1.example.com | [294 12-14 09:34:40.49 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 | [293 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b9adc9a8]Init get response status: 200 +peer1.org1.example.com | [215 12-14 09:34:40.73 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 | [18a 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +peer0.org1.example.com | [295 12-14 09:34:40.49 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 [081fd16d-705c-43b1-a771-17c76d83cd84] +explorer | [2017-12-14 09:35:23.393] [ERROR] Query - Error: Missing userContext parameter +peer1.org2.example.com | [294 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b9adc9a8]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [280 12-14 09:34:40.93 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 | [216 12-14 09:34:40.73 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.org1.example.com | [296 12-14 09:34:40.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 +orderer.example.com | [18b 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +peer1.org2.example.com | [295 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b9adc9a8]Move state message COMPLETED +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer1.org1.example.com | [217 12-14 09:34:40.73 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 | [281 12-14 09:34:40.93 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 [c6166c5d-6482-4034-983e-de194ea2847f] +peer0.org1.example.com | [297 12-14 09:34:40.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 [b633ada5-4719-4eed-bfb5-12f885cbb0a2] +orderer.example.com | [18c 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +peer1.org2.example.com | [296 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b9adc9a8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org1.example.com | [218 12-14 09:34:40.73 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.org1.example.com | [298 12-14 09:34:40.49 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.5,txid=8c27e167-d901-4222-8453-12dee01e8e11,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer0.org2.example.com | [282 12-14 09:34:40.93 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 | [297 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b9adc9a8]send state message COMPLETED +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +orderer.example.com | [18d 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +peer0.org1.example.com | [299 12-14 09:34:40.49 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.5 +peer0.org2.example.com | [283 12-14 09:34:40.93 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 [d5db1cf5-1aa7-45f5-b3e7-2cb9d53cb713] +peer1.org2.example.com | [298 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b9adc9a8]Received message COMPLETED from shim +peer1.org1.example.com | [219 12-14 09:34:40.73 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 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [29a 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | [18e 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +peer1.org1.example.com | [21a 12-14 09:34:40.73 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 | [284 12-14 09:34:40.93 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.5,txid=7573b134-0803-4c5b-8b7f-df13d33107eb,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer1.org2.example.com | [299 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b9adc9a8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | [2017-12-14 09:35:23.393] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer0.org1.example.com | [29b 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer1.org2.example.com | [29a 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b9adc9a8-21b8-4cb3-9d2d-74febbc22cf4]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [285 12-14 09:34:40.93 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.5 +peer1.org1.example.com | [21b 12-14 09:34:40.73 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 | [18f 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer1.org2.example.com | [29b 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b9adc9a8-21b8-4cb3-9d2d-74febbc22cf4 +peer0.org1.example.com | [29c 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8c27e167]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [286 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [21c 12-14 09:34:40.73 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 | [190 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +peer1.org2.example.com | [29c 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [29d 12-14 09:34:40.49 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 | [287 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer1.org2.example.com | [29d 12-14 09:34:41.12 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 +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 118): Error: Cannot save null userContext. +orderer.example.com | [191 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +peer1.org1.example.com | [21d 12-14 09:34:40.73 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 | [29e 12-14 09:34:41.12 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 [000c83f9-9d81-44e9-936d-4beb0027ba46] +peer0.org1.example.com | [29e 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8c27e167]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [288 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7573b134]Inside sendExecuteMessage. Message INIT +orderer.example.com | [192 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [193 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | [194 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +orderer.example.com | [195 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org2.example.com | [29f 12-14 09:34:41.12 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 | [21e 12-14 09:34:40.73 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 | [196 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [29f 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8c27e167]Move state message INIT +peer0.org2.example.com | [289 12-14 09:34:40.93 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 | [2a0 12-14 09:34:41.12 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 [f042d39d-7a51-4e5d-abfc-28e68ab5c3f8] +peer1.org1.example.com | [21f 12-14 09:34:40.73 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 | [197 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +peer1.org2.example.com | [2a1 12-14 09:34:41.12 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.5,txid=e2ab3f49-6aaf-4ecc-9ca8-c13154ec6867,syscc=true,proposal=0x0,canname=qscc:1.0.5 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer0.org2.example.com | [28a 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7573b134]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [2a0 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8c27e167]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [2a2 12-14 09:34:41.12 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.5 +peer1.org1.example.com | [220 12-14 09:34:40.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [28b 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7573b134]Move state message INIT +peer0.org1.example.com | [2a1 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [198 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer1.org2.example.com | [2a3 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +explorer | [2017-12-14 09:35:23.408] [ERROR] Query - Error: Connect Failed +peer0.org2.example.com | [28c 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7573b134]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [221 12-14 09:34:40.73 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 | [199 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +peer0.org1.example.com | [2a2 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8c27e167]sending state message INIT +peer1.org2.example.com | [2a4 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 +peer1.org2.example.com | [2a5 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e2ab3f49]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [2a6 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [28d 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [2a7 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e2ab3f49]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [2a8 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e2ab3f49]Move state message INIT +peer1.org2.example.com | [2a9 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e2ab3f49]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [2aa 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [2ab 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e2ab3f49]sending state message INIT +peer1.org2.example.com | [2ac 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e2ab3f49]Received message INIT from shim +peer1.org2.example.com | [2ad 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e2ab3f49]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [2ae 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [2af 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e2ab3f49]Received INIT, initializing chaincode +peer1.org2.example.com | [2b0 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +orderer.example.com | [19a 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Application/Writers +peer0.org1.example.com | [2a3 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8c27e167]Received message INIT from shim +peer1.org1.example.com | [222 12-14 09:34:40.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +explorer | [2017-12-14 09:35:24.467] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer0.org2.example.com | [28e 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7573b134]sending state message INIT +peer1.org2.example.com | [2b1 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e2ab3f49]Init get response status: 200 +peer1.org2.example.com | [2b2 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e2ab3f49]Init succeeded. Sending COMPLETED +orderer.example.com | [19b 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer1.org1.example.com | [223 12-14 09:34:40.73 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 | [224 12-14 09:34:40.73 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 | [225 12-14 09:34:40.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer1.org2.example.com | [2b3 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e2ab3f49]Move state message COMPLETED +peer1.org2.example.com | [2b4 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e2ab3f49]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [2b5 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e2ab3f49]send state message COMPLETED +peer1.org2.example.com | [2b6 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e2ab3f49]Received message COMPLETED from shim +peer1.org2.example.com | [2b7 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e2ab3f49]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [2b8 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e2ab3f49-6aaf-4ecc-9ca8-c13154ec6867]HandleMessage- COMPLETED. Notify +orderer.example.com | [19c 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in /Application/Admins +orderer.example.com | [19d 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [2a4 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8c27e167]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [226 12-14 09:34:40.73 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 | [227 12-14 09:34:40.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [28f 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7573b134]Received message INIT from shim +orderer.example.com | [19e 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Application/Readers +orderer.example.com | [19f 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [2a5 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [228 12-14 09:34:40.73 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 | [229 12-14 09:34:40.73 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.org1.example.com | [22a 12-14 09:34:40.73 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 | [22b 12-14 09:34:40.73 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 | [22c 12-14 09:34:40.73 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 | [22d 12-14 09:34:40.73 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 +explorer | at ClientRequest.emit (events.js:188:7) +orderer.example.com | [1a0 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [2a6 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [8c27e167]Received INIT, initializing chaincode +peer1.org1.example.com | [22e 12-14 09:34:40.73 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 | [22f 12-14 09:34:40.73 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 | [230 12-14 09:34:40.73 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.org2.example.com | [290 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7573b134]Handling ChaincodeMessage of type: INIT(state:ready) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +explorer | [2017-12-14 09:35:24.468] [ERROR] Helper - admin enrollment failed +explorer | [2017-12-14 09:35:24.469] [ERROR] Query - Error: Missing userContext parameter +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org1.example.com | [2a7 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8c27e167]Init get response status: 200 +peer0.org1.example.com | [2a8 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8c27e167]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [2a9 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8c27e167]Move state message COMPLETED +peer0.org1.example.com | [2aa 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8c27e167]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [2b9 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e2ab3f49-6aaf-4ecc-9ca8-c13154ec6867 +orderer.example.com | [1a1 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer0.org2.example.com | [291 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [2ab 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8c27e167]send state message COMPLETED +peer0.org1.example.com | [2ac 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8c27e167]Received message COMPLETED from shim +orderer.example.com | [1a2 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org2.example.com | [292 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [7573b134]Received INIT, initializing chaincode +peer1.org1.example.com | [231 12-14 09:34:40.73 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 | [232 12-14 09:34:40.73 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 | [2ad 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8c27e167]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [2ba 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +orderer.example.com | [1a3 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org1.example.com | [233 12-14 09:34:40.73 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 | [293 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7573b134]Init get response status: 200 +peer0.org2.example.com | [294 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7573b134]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [295 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7573b134]Move state message COMPLETED +peer0.org2.example.com | [296 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7573b134]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [2ae 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8c27e167-d901-4222-8453-12dee01e8e11]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [2af 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8c27e167-d901-4222-8453-12dee01e8e11 +peer0.org1.example.com | [2b0 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | [2017-12-14 09:35:24.469] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +orderer.example.com | [1a4 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | [1a5 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [234 12-14 09:34:40.73 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.org1.example.com | [2b1 12-14 09:34:40.49 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 | [2b2 12-14 09:34:40.49 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 [b633ada5-4719-4eed-bfb5-12f885cbb0a2] +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [2bb 12-14 09:34:41.12 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 +orderer.example.com | [1a6 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [235 12-14 09:34:40.73 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 | [297 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7573b134]send state message COMPLETED +peer0.org1.example.com | [2b3 12-14 09:34:40.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 +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 121): Error: Cannot save null userContext. +peer1.org2.example.com | [2bc 12-14 09:34:41.12 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 [f042d39d-7a51-4e5d-abfc-28e68ab5c3f8] +orderer.example.com | [1a7 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org1.example.com | [236 12-14 09:34:40.73 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 | [237 12-14 09:34:40.73 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 | [298 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7573b134]Received message COMPLETED from shim +peer0.org1.example.com | [2b4 12-14 09:34:40.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 [bdeb7092-f1dd-4895-8d0d-60c46d402cb8] +peer0.org1.example.com | [2b5 12-14 09:34:40.49 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.5,txid=b1b6cd5e-ee7b-46e5-ac7b-5850d9af80b9,syscc=true,proposal=0x0,canname=qscc:1.0.5 +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | [1a8 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org1.example.com | [238 12-14 09:34:40.73 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 | [299 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7573b134]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [29a 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7573b134-0803-4c5b-8b7f-df13d33107eb]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [29b 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7573b134-0803-4c5b-8b7f-df13d33107eb +peer0.org2.example.com | [29c 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [29d 12-14 09:34:40.93 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 | [29e 12-14 09:34:40.93 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 [d5db1cf5-1aa7-45f5-b3e7-2cb9d53cb713] +peer1.org2.example.com | [2bd 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry +peer1.org1.example.com | [239 12-14 09:34:40.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: AnchorPeers +peer0.org1.example.com | [2b6 12-14 09:34:40.49 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.5 +orderer.example.com | [1a9 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [29f 12-14 09:34:40.93 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 | [23a 12-14 09:34:40.73 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 | [2b7 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +orderer.example.com | [1aa 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [2be 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] +peer0.org1.example.com | [2b8 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 +peer0.org2.example.com | [2a0 12-14 09:34:40.93 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 [6907489d-6eff-42d3-af62-5b1678766cc4] +peer1.org2.example.com | [2bf 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org1.example.com | [23b 12-14 09:34:40.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 +peer1.org1.example.com | [23c 12-14 09:34:40.73 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 | [23d 12-14 09:34:40.73 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 | [23e 12-14 09:34:40.73 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 | [23f 12-14 09:34:40.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: AnchorPeers +peer1.org1.example.com | [240 12-14 09:34:40.73 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 | [241 12-14 09:34:40.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 +peer1.org1.example.com | [242 12-14 09:34:40.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 +peer1.org1.example.com | [243 12-14 09:34:40.73 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 | [244 12-14 09:34:40.73 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 | [245 12-14 09:34:40.73 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 | [246 12-14 09:34:40.73 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 | [247 12-14 09:34:40.74 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 | [248 12-14 09:34:40.74 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 | [249 12-14 09:34:40.74 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 | [24a 12-14 09:34:40.74 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 | [24b 12-14 09:34:40.75 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 | [24c 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +peer1.org1.example.com | [24d 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain +peer1.org1.example.com | [24e 12-14 09:34:40.75 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 | [24f 12-14 09:34:40.75 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 [dc5b09a4-933d-42fd-b4ef-22ee8f0d7a5d] +peer1.org1.example.com | [250 12-14 09:34:40.75 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.5,txid=8d8a962d-fab6-4552-adc9-27bbbe6058f6,syscc=true,proposal=0x0,canname=cscc:1.0.5 +peer1.org1.example.com | [251 12-14 09:34:40.75 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.5 +peer1.org1.example.com | [252 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [253 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 +peer1.org1.example.com | [254 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8d8a962d]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [255 12-14 09:34:40.75 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 | [256 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8d8a962d]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [257 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8d8a962d]Move state message INIT +peer1.org1.example.com | [258 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8d8a962d]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [259 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [25a 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8d8a962d]sending state message INIT +peer1.org1.example.com | [25b 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8d8a962d]Received message INIT from shim +peer1.org1.example.com | [25c 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8d8a962d]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | [1ab 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [2b9 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b1b6cd5e]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [2a1 12-14 09:34:40.93 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.5,txid=a6a4c1be-42f5-4141-914a-5ad07db21207,syscc=true,proposal=0x0,canname=qscc:1.0.5 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [2c0 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [25d 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [2ba 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | [2017-12-14 09:35:24.487] [ERROR] Query - Error: Connect Failed +peer1.org2.example.com | [2c1 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | [1ac 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org1.example.com | [2bb 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b1b6cd5e]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [2a2 12-14 09:34:40.93 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.5 +peer1.org2.example.com | [2c2 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [2bc 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b6cd5e]Move state message INIT +peer1.org1.example.com | [25e 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [8d8a962d]Received INIT, initializing chaincode +peer0.org1.example.com | [2bd 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b1b6cd5e]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [2c3 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | [1ad 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +peer1.org1.example.com | [25f 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org2.example.com | [2a3 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [2c4 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [290962ad]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [2be 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [1ae 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026780 gate 1513244079467343100 evaluation starts +orderer.example.com | [1af 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026780 signed by 0 principal evaluation starts (used [false]) +explorer | [2017-12-14 09:35:25.570] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer0.org2.example.com | [2a4 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 +peer0.org1.example.com | [2bf 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b6cd5e]sending state message INIT +peer1.org1.example.com | [260 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8d8a962d]Init get response status: 200 +orderer.example.com | [1b0 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026780 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +peer1.org2.example.com | [2c5 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [290962ad]Move state message COMPLETED +peer0.org2.example.com | [2a5 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a6a4c1be]Inside sendExecuteMessage. Message INIT +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +orderer.example.com | [1b1 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [261 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8d8a962d]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [2a6 12-14 09:34:40.93 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 | [2c0 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b6cd5e]Received message INIT from shim +peer1.org2.example.com | [2c6 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [290962ad]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [2c7 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [290962ad]send state message COMPLETED +peer1.org2.example.com | [2c8 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [290962ad]Received message COMPLETED from shim +peer1.org2.example.com | [2c9 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [290962ad]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [2ca 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [290962ad590594ab2655d5c1bb67268fb443ace09a5d01add7258c053c605c7f]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [2c1 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b1b6cd5e]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [2a7 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a6a4c1be]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [2a8 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a6a4c1be]Move state message INIT +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +peer1.org2.example.com | [2cb 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:290962ad590594ab2655d5c1bb67268fb443ace09a5d01add7258c053c605c7f +peer1.org1.example.com | [262 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8d8a962d]Move state message COMPLETED +peer0.org1.example.com | [2c2 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [2cc 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [2a9 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a6a4c1be]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [2c3 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b1b6cd5e]Received INIT, initializing chaincode +peer1.org2.example.com | [2cd 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [2ce 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [2aa 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [2ab 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a6a4c1be]sending state message INIT +explorer | at emitErrorNT (net.js:1281:8) +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [2c4 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org2.example.com | [2cf 12-14 09:34:41.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [2c5 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b6cd5e]Init get response status: 200 +peer0.org2.example.com | [2ac 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a6a4c1be]Received message INIT from shim +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +peer0.org1.example.com | [2c6 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b6cd5e]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [2ad 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a6a4c1be]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [2ae 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org1.example.com | [2c7 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b6cd5e]Move state message COMPLETED +peer1.org1.example.com | [263 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8d8a962d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [264 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8d8a962d]send state message COMPLETED +peer0.org2.example.com | [2af 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [a6a4c1be]Received INIT, initializing chaincode +peer0.org2.example.com | [2b0 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +orderer.example.com | zekLSULI9G2UUYA77A== +peer0.org1.example.com | [2c8 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b1b6cd5e]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [2d0 12-14 09:34:47.11 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.org1.example.com | [265 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8d8a962d]Received message COMPLETED from shim +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer0.org2.example.com | [2b1 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a6a4c1be]Init get response status: 200 +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [2c9 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b6cd5e]send state message COMPLETED +explorer | [2017-12-14 09:35:25.570] [ERROR] Helper - admin enrollment failed +peer0.org1.example.com | [2ca 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b6cd5e]Received message COMPLETED from shim +peer1.org2.example.com | [2d1 12-14 09:34:47.13 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +orderer.example.com | [1b2 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026780 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +explorer | [2017-12-14 09:35:25.572] [ERROR] Query - Error: Missing userContext parameter +peer0.org2.example.com | [2b2 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a6a4c1be]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [266 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8d8a962d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [2cb 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b1b6cd5e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [1b3 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026780 principal evaluation fails +peer0.org2.example.com | [2b3 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a6a4c1be]Move state message COMPLETED +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +orderer.example.com | [1b4 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026780 gate 1513244079467343100 evaluation fails +peer0.org1.example.com | [2cc 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b1b6cd5e-ee7b-46e5-ac7b-5850d9af80b9]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [2d2 12-14 09:34:47.13 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 | [2b4 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a6a4c1be]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [1b5 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026790 gate 1513244079468693500 evaluation starts +peer0.org1.example.com | [2cd 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b1b6cd5e-ee7b-46e5-ac7b-5850d9af80b9 +peer1.org2.example.com | [2d3 12-14 09:34:47.13 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +peer0.org2.example.com | [2b5 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a6a4c1be]send state message COMPLETED +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org1.example.com | [267 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8d8a962d-fab6-4552-adc9-27bbbe6058f6]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [2d4 12-14 09:34:47.13 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 | [2b6 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a6a4c1be]Received message COMPLETED from shim +orderer.example.com | [1b6 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026790 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [2ce 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [2d5 12-14 09:34:47.13 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +orderer.example.com | [1b7 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026790 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +peer1.org1.example.com | [268 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8d8a962d-fab6-4552-adc9-27bbbe6058f6 +peer0.org2.example.com | [2b7 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a6a4c1be]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [2cf 12-14 09:34:40.49 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 | [2d6 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] +orderer.example.com | [1b8 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org1.example.com | [269 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [2b8 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a6a4c1be-42f5-4141-914a-5ad07db21207]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [2d0 12-14 09:34:40.49 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 [bdeb7092-f1dd-4895-8d0d-60c46d402cb8] +peer1.org2.example.com | [2d7 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] +explorer | [2017-12-14 09:35:25.572] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [2b9 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a6a4c1be-42f5-4141-914a-5ad07db21207 +peer0.org1.example.com | [2d1 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry +peer1.org2.example.com | [2d8 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org1.example.com | [26a 12-14 09:34:40.75 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 | [2ba 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [2d2 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer1.org2.example.com | [2d9 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org1.example.com | [26b 12-14 09:34:40.75 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 [dc5b09a4-933d-42fd-b4ef-22ee8f0d7a5d] +peer0.org2.example.com | [2bb 12-14 09:34:40.93 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 | [2d3 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [2da 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org1.example.com | [26c 12-14 09:34:40.75 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 | [2bc 12-14 09:34:40.93 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 [6907489d-6eff-42d3-af62-5b1678766cc4] +peer0.org1.example.com | [2d4 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 124): Error: Cannot save null userContext. +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +peer1.org2.example.com | [2db 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4217e3e60 +peer1.org1.example.com | [26d 12-14 09:34:40.75 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 [2d975bf1-9aa5-4f22-a864-50d86199997c] +peer0.org2.example.com | [2bd 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org2.example.com | [2dc 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\261\213\311\321\005\"\017businesschannel" signature_header:"\n\377\005\n\nOrdererMSP\022\360\005-----BEGIN -----\nMIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL\ngVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX\nKhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U\niXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv\nTg==\n-----END -----\n\022\030Yt\364\244\327\302h\302\370\261\027\037*\322|\314h\203\325\303\320\201\030;" +peer0.org1.example.com | [2d5 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org1.example.com | [26e 12-14 09:34:40.75 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.5,txid=f83a5460-2005-4edb-a998-4ea387ae1ce8,syscc=true,proposal=0x0,canname=lscc:1.0.5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [2be 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [2dd 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org1.example.com | [2d6 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org1.example.com | [26f 12-14 09:34:40.75 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.5 +peer0.org2.example.com | [2bf 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer1.org2.example.com | [2de 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [2d7 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit +peer1.org1.example.com | [270 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +peer0.org1.example.com | [2d8 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4627d932]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [2c0 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [2df 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP fcb073bba41aef05a6a567ffd435bf0e89d43a1afdb7dbf96245382288964c63} +peer1.org1.example.com | [271 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +peer0.org2.example.com | [2c1 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org1.example.com | [2d9 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4627d932]Move state message COMPLETED +peer0.org1.example.com | [2da 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4627d932]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +peer1.org2.example.com | [2e0 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [272 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f83a5460]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [273 12-14 09:34:40.75 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 | [2c2 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org2.example.com | [2c3 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit +peer0.org1.example.com | [2db 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4627d932]send state message COMPLETED +explorer | [2017-12-14 09:35:25.586] [ERROR] Query - Error: Connect Failed +peer1.org1.example.com | [274 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f83a5460]sendExecuteMsg trigger event INIT +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +peer0.org1.example.com | [2dc 12-14 09:34:40.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4627d932]Received message COMPLETED from shim +peer0.org2.example.com | [2c4 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5da12766]Transaction completed. Sending COMPLETED +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:35:26.660] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [2c5 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5da12766]Move state message COMPLETED +peer0.org1.example.com | [2dd 12-14 09:34:40.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4627d932]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [275 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f83a5460]Move state message INIT +peer1.org2.example.com | [2e1 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [1b9 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +peer0.org2.example.com | [2c6 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5da12766]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [2de 12-14 09:34:40.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4627d9326de3d3a74bbc83ff77fedb866671172bdce687e5f9056b7796af3063]HandleMessage- COMPLETED. Notify +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [276 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f83a5460]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | [1ba 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026790 principal matched by identity 0 +peer0.org2.example.com | [2c7 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5da12766]send state message COMPLETED +peer0.org1.example.com | [2df 12-14 09:34:40.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4627d9326de3d3a74bbc83ff77fedb866671172bdce687e5f9056b7796af3063 +peer1.org2.example.com | [2e2 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42192b000, header channel_header:"\010\001\032\006\010\261\213\311\321\005\"\017businesschannel" signature_header:"\n\377\005\n\nOrdererMSP\022\360\005-----BEGIN -----\nMIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL\ngVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX\nKhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U\niXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv\nTg==\n-----END -----\n\022\030Yt\364\244\327\302h\302\370\261\027\037*\322|\314h\203\325\303\320\201\030;" +explorer | at ClientRequest.emit (events.js:188:7) +peer1.org1.example.com | [277 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [1bb 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 da dd 74 a9 35 9f 1f 14 e0 3c dd 86 1f 57 bf ba |..t.5....<...W..| +peer0.org2.example.com | [2c8 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5da12766]Received message COMPLETED from shim +peer0.org2.example.com | [2c9 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5da12766]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [2e0 12-14 09:34:40.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org1.example.com | [278 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f83a5460]sending state message INIT +orderer.example.com | 00000010 5e 42 96 9e e3 02 d8 b0 af 35 ce ae 94 24 39 56 |^B.......5...$9V| +peer1.org2.example.com | [2e3 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org2.example.com | [2ca 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5da1276629c21dc197ce3095a54931985df1a9ef10c523fae878319513fcb091]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [2cb 12-14 09:34:40.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5da1276629c21dc197ce3095a54931985df1a9ef10c523fae878319513fcb091 +peer0.org2.example.com | [2cc 12-14 09:34:40.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [2e1 12-14 09:34:40.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [279 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f83a5460]Received message INIT from shim +orderer.example.com | [1bc 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c8 49 2b 30 49 6a be d9 eb a3 c9 |0E.!..I+0Ij.....| +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [2cd 12-14 09:34:40.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [2e2 12-14 09:34:40.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org2.example.com | [2e4 12-14 09:34:47.15 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 | [27a 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f83a5460]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | 00000010 b1 d7 c2 5c db 7d 7f 01 f0 f4 c5 4c a2 2a 38 b4 |...\.}.....L.*8.| +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org2.example.com | [2ce 12-14 09:34:40.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [2e3 12-14 09:34:40.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [2e4 12-14 09:34:46.48 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 | [2e5 12-14 09:34:47.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 +orderer.example.com | 00000020 03 c8 6f ec f5 02 20 26 98 0f ec d7 1d 2d b0 ca |..o... &.....-..| +explorer | at emitErrorNT (net.js:1281:8) +peer0.org2.example.com | [2cf 12-14 09:34:40.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [2e5 12-14 09:34:46.49 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +orderer.example.com | 00000030 7b 73 23 a7 15 35 c6 37 da c7 d0 f8 5a 99 85 fc |{s#..5.7....Z...| +peer1.org1.example.com | [27b 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [2e6 12-14 09:34:47.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/Org1MSP +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org2.example.com | [2d0 12-14 09:34:46.92 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 | [2e6 12-14 09:34:46.49 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... +orderer.example.com | 00000040 5a f7 c3 eb b0 dd b3 |Z......| +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org1.example.com | [27c 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [f83a5460]Received INIT, initializing chaincode +peer1.org2.example.com | [2e7 12-14 09:34:47.15 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 | [2d1 12-14 09:34:46.96 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +peer0.org1.example.com | [2e7 12-14 09:34:46.49 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +orderer.example.com | [1bd 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026790 principal evaluation succeeds for identity 0 +peer1.org1.example.com | [27d 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f83a5460]Init get response status: 200 +peer0.org2.example.com | [2d2 12-14 09:34:46.96 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... +explorer | [2017-12-14 09:35:26.663] [ERROR] Helper - admin enrollment failed +peer1.org2.example.com | [2e8 12-14 09:34:47.15 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 | [1be 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026790 gate 1513244079468693500 evaluation succeeds +peer0.org1.example.com | [2e8 12-14 09:34:46.49 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 | [2d3 12-14 09:34:46.96 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +peer1.org1.example.com | [27e 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f83a5460]Init succeeded. Sending COMPLETED +orderer.example.com | [1bf 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +explorer | [2017-12-14 09:35:26.663] [ERROR] Query - Error: Missing userContext parameter +peer0.org2.example.com | [2d4 12-14 09:34:46.96 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.org1.example.com | [2e9 12-14 09:34:46.49 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +peer1.org2.example.com | [2e9 12-14 09:34:47.15 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 | [1c0 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org2.example.com | [2d5 12-14 09:34:46.96 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +peer0.org1.example.com | [2ea 12-14 09:34:46.51 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] +peer1.org1.example.com | [27f 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f83a5460]Move state message COMPLETED +peer1.org2.example.com | [2ea 12-14 09:34:47.15 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 | [2eb 12-14 09:34:47.15 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 | [1c1 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [2eb 12-14 09:34:46.51 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org1.example.com | [280 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f83a5460]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [2d6 12-14 09:34:47.00 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] +orderer.example.com | [1c2 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [2ec 12-14 09:34:46.51 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org2.example.com | [2ec 12-14 09:34:47.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/Org2MSP +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer0.org2.example.com | [2d7 12-14 09:34:47.00 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] +orderer.example.com | [1c3 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [281 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f83a5460]send state message COMPLETED +peer1.org2.example.com | [2ed 12-14 09:34:47.15 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 | [1c4 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [2d8 12-14 09:34:47.00 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [2ed 12-14 09:34:46.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +orderer.example.com | [1c5 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [2d9 12-14 09:34:47.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org2.example.com | [2ee 12-14 09:34:47.15 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 | [282 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f83a5460]Received message COMPLETED from shim +orderer.example.com | [1c6 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [2ee 12-14 09:34:46.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org2.example.com | [2da 12-14 09:34:47.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +explorer | [2017-12-14 09:35:26.663] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer1.org1.example.com | [283 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f83a5460]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [2ef 12-14 09:34:46.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4217fa5a0 +orderer.example.com | [1c7 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [2db 12-14 09:34:47.00 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4215d4240 +peer1.org2.example.com | [2ef 12-14 09:34:47.15 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 +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer1.org1.example.com | [284 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f83a5460-2005-4edb-a998-4ea387ae1ce8]HandleMessage- COMPLETED. Notify +orderer.example.com | [1c8 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [2dc 12-14 09:34:47.00 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\261\213\311\321\005\"\017businesschannel" signature_header:"\n\377\005\n\nOrdererMSP\022\360\005-----BEGIN -----\nMIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL\ngVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX\nKhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U\niXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv\nTg==\n-----END -----\n\022\030Yt\364\244\327\302h\302\370\261\027\037*\322|\314h\203\325\303\320\201\030;" +peer0.org1.example.com | [2f0 12-14 09:34:46.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\261\213\311\321\005\"\017businesschannel" signature_header:"\n\377\005\n\nOrdererMSP\022\360\005-----BEGIN -----\nMIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL\ngVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX\nKhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U\niXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv\nTg==\n-----END -----\n\022\030Yt\364\244\327\302h\302\370\261\027\037*\322|\314h\203\325\303\320\201\030;" +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [2f0 12-14 09:34:47.15 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 | [285 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f83a5460-2005-4edb-a998-4ea387ae1ce8 +peer0.org2.example.com | [2dd 12-14 09:34:47.00 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org1.example.com | [2f1 12-14 09:34:46.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +orderer.example.com | [1c9 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [286 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [2de 12-14 09:34:47.00 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 127): Error: Cannot save null userContext. +peer1.org2.example.com | [2f1 12-14 09:34:47.15 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 | [1ca 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [2f2 12-14 09:34:46.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [2df 12-14 09:34:47.00 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP fcb073bba41aef05a6a567ffd435bf0e89d43a1afdb7dbf96245382288964c63} +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org2.example.com | [2f2 12-14 09:34:47.15 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 | [2e0 12-14 09:34:47.00 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [2f3 12-14 09:34:46.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP fcb073bba41aef05a6a567ffd435bf0e89d43a1afdb7dbf96245382288964c63} +orderer.example.com | [1cb 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [287 12-14 09:34:40.75 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 | [2e1 12-14 09:34:47.00 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [2f3 12-14 09:34:47.15 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 | [1cc 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer0.org1.example.com | [2f4 12-14 09:34:46.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [288 12-14 09:34:40.75 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 [2d975bf1-9aa5-4f22-a864-50d86199997c] +peer0.org2.example.com | [2e2 12-14 09:34:47.00 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4214cc000, header channel_header:"\010\001\032\006\010\261\213\311\321\005\"\017businesschannel" signature_header:"\n\377\005\n\nOrdererMSP\022\360\005-----BEGIN -----\nMIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL\ngVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX\nKhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U\niXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv\nTg==\n-----END -----\n\022\030Yt\364\244\327\302h\302\370\261\027\037*\322|\314h\203\325\303\320\201\030;" +orderer.example.com | [1cd 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [2f4 12-14 09:34:47.15 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 | [2f5 12-14 09:34:46.51 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] +peer0.org2.example.com | [2e3 12-14 09:34:47.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +explorer | [2017-12-14 09:35:26.682] [ERROR] Query - Error: Connect Failed +peer0.org1.example.com | [2f6 12-14 09:34:46.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [289 12-14 09:34:40.75 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 | [1ce 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [2e4 12-14 09:34:47.00 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 | [2f5 12-14 09:34:47.15 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 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [2f7 12-14 09:34:46.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4214c1000, header channel_header:"\010\001\032\006\010\261\213\311\321\005\"\017businesschannel" signature_header:"\n\377\005\n\nOrdererMSP\022\360\005-----BEGIN -----\nMIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL\ngVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX\nKhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U\niXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv\nTg==\n-----END -----\n\022\030Yt\364\244\327\302h\302\370\261\027\037*\322|\314h\203\325\303\320\201\030;" +peer1.org1.example.com | [28a 12-14 09:34:40.75 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 [f6a88c8c-9a80-4258-87a8-e5a0ba747466] +peer1.org2.example.com | [2f6 12-14 09:34:47.15 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 +explorer | [2017-12-14 09:35:27.752] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer0.org2.example.com | [2e5 12-14 09:34:47.00 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 | [1cf 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [2f8 12-14 09:34:46.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [28b 12-14 09:34:40.75 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.5,txid=26048b45-38af-4c7f-b198-580194418bd5,syscc=true,proposal=0x0,canname=escc:1.0.5 +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer1.org2.example.com | [2f7 12-14 09:34:47.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/OrdererOrg/Writers +peer0.org2.example.com | [2e6 12-14 09:34:47.00 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 +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [28c 12-14 09:34:40.75 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.5 +orderer.example.com | [1d0 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [2f8 12-14 09:34:47.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/OrdererOrg/Admins +peer0.org1.example.com | [2f9 12-14 09:34:46.51 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] +peer0.org2.example.com | [2e7 12-14 09:34:47.00 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 +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +orderer.example.com | [1d1 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [2f9 12-14 09:34:47.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/OrdererOrg/Readers +peer0.org1.example.com | [2fa 12-14 09:34:46.51 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 | [28d 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [2e8 12-14 09:34:47.00 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 | [1d2 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel +peer0.org1.example.com | [2fb 12-14 09:34:46.51 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 | [2fa 12-14 09:34:47.15 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 | [28e 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +orderer.example.com | [1d3 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org1.example.com | [2fc 12-14 09:34:46.51 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 | [2e9 12-14 09:34:47.00 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 | [2fb 12-14 09:34:47.15 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 | [1d4 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [28f 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [26048b45]Inside sendExecuteMessage. Message INIT +explorer | at emitErrorNT (net.js:1281:8) +peer0.org1.example.com | [2fd 12-14 09:34:46.51 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 | [2fc 12-14 09:34:47.15 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 | [1d5 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer1.org1.example.com | [290 12-14 09:34:40.75 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 | [2fe 12-14 09:34:46.52 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 | [2ea 12-14 09:34:47.00 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 | [291 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [26048b45]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [2ff 12-14 09:34:46.52 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 | [2fd 12-14 09:34:47.15 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 +orderer.example.com | [1d6 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer0.org1.example.com | [300 12-14 09:34:46.52 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 | [2fe 12-14 09:34:47.16 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 | [292 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [26048b45]Move state message INIT +peer0.org2.example.com | [2eb 12-14 09:34:47.00 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 | [1d7 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [301 12-14 09:34:46.52 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 | [293 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [26048b45]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [2ff 12-14 09:34:47.16 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 | [2ec 12-14 09:34:47.00 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 +explorer | [2017-12-14 09:35:27.753] [ERROR] Helper - admin enrollment failed +orderer.example.com | [1d8 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +peer0.org1.example.com | [302 12-14 09:34:46.52 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 | [2ed 12-14 09:34:47.00 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 | [294 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [300 12-14 09:34:47.16 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 +explorer | [2017-12-14 09:35:27.753] [ERROR] Query - Error: Missing userContext parameter +peer0.org1.example.com | [303 12-14 09:34:46.52 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 | [2ee 12-14 09:34:47.00 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 | [295 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [26048b45]sending state message INIT +peer1.org2.example.com | [301 12-14 09:34:47.16 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 +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +orderer.example.com | [1d9 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +peer0.org1.example.com | [304 12-14 09:34:46.52 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 | [302 12-14 09:34:47.16 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 | [296 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [26048b45]Received message INIT from shim +orderer.example.com | [1da 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +peer0.org1.example.com | [305 12-14 09:34:46.52 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 | [2ef 12-14 09:34:47.00 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 +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org2.example.com | [303 12-14 09:34:47.16 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 | [306 12-14 09:34:46.52 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 | [2f1 12-14 09:34:47.01 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 | [297 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [26048b45]Handling ChaincodeMessage of type: INIT(state:ready) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +orderer.example.com | [1db 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer0.org1.example.com | [307 12-14 09:34:46.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 +peer0.org2.example.com | [2f2 12-14 09:34:47.01 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 | [298 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [304 12-14 09:34:47.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [308 12-14 09:34:46.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 +orderer.example.com | [1dc 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [305 12-14 09:34:47.16 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 | [2f3 12-14 09:34:47.01 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 | [299 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [26048b45]Received INIT, initializing chaincode +peer0.org1.example.com | [309 12-14 09:34:46.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 +explorer | [2017-12-14 09:35:27.753] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer1.org2.example.com | [306 12-14 09:34:47.16 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 | [1dd 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [2f4 12-14 09:34:47.01 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 | [30a 12-14 09:34:46.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/Org1MSP +peer1.org1.example.com | [29a 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer1.org2.example.com | [307 12-14 09:34:47.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +orderer.example.com | [1de 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [30b 12-14 09:34:46.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/Org1MSP/AnchorPeers +peer1.org1.example.com | [29b 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [26048b45]Init get response status: 200 +peer0.org2.example.com | [2f5 12-14 09:34:47.01 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 | [1df 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org2.example.com | [308 12-14 09:34:47.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [30c 12-14 09:34:46.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/Org1MSP/MSP +peer1.org1.example.com | [29c 12-14 09:34:40.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [26048b45]Init succeeded. Sending COMPLETED +orderer.example.com | [1e0 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org2.example.com | [309 12-14 09:34:47.16 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 | [2f6 12-14 09:34:47.01 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 +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 130): Error: Cannot save null userContext. +peer0.org1.example.com | [30d 12-14 09:34:46.53 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 | [30a 12-14 09:34:47.16 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 | [2f0 12-14 09:34:47.01 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] +peer1.org1.example.com | [29d 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [26048b45]Move state message COMPLETED +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +orderer.example.com | [1e1 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +peer0.org1.example.com | [30e 12-14 09:34:46.53 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 | [30b 12-14 09:34:47.16 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 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [2f7 12-14 09:34:47.01 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 | [29e 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [26048b45]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [1e2 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +peer0.org1.example.com | [30f 12-14 09:34:46.53 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 | [30c 12-14 09:34:47.16 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 +explorer | [2017-12-14 09:35:27.763] [ERROR] Query - Error: Connect Failed +peer0.org2.example.com | [2f8 12-14 09:34:47.01 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 | [310 12-14 09:34:46.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 +orderer.example.com | [1e3 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +peer1.org1.example.com | [29f 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [26048b45]send state message COMPLETED +peer1.org1.example.com | [2a0 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [26048b45]Received message COMPLETED from shim +peer1.org2.example.com | [30d 12-14 09:34:47.16 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 12-14 09:34:46.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.org2.example.com | [2f9 12-14 09:34:47.01 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 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | [1e4 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +peer1.org1.example.com | [2a1 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [26048b45]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [312 12-14 09:34:46.53 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 | [2fa 12-14 09:34:47.01 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 | [30e 12-14 09:34:47.16 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 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer1.org1.example.com | [2a2 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [26048b45-38af-4c7f-b198-580194418bd5]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [313 12-14 09:34:46.53 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 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | [1e5 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [2fc 12-14 09:34:47.01 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 | [30f 12-14 09:34:47.16 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 | [2a3 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:26048b45-38af-4c7f-b198-580194418bd5 +explorer | [2017-12-14 09:35:28.882] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +orderer.example.com | [1e6 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [314 12-14 09:34:46.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.org2.example.com | [310 12-14 09:34:47.16 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 | [2fd 12-14 09:34:47.01 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 +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer1.org1.example.com | [2a4 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [311 12-14 09:34:47.16 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 | [1e7 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [2fe 12-14 09:34:47.01 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 12-14 09:34:40.76 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 +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org1.example.com | [315 12-14 09:34:46.55 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 | [1e8 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +peer1.org2.example.com | [312 12-14 09:34:47.16 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 +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org1.example.com | [2a6 12-14 09:34:40.76 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 [f6a88c8c-9a80-4258-87a8-e5a0ba747466] +peer0.org2.example.com | [2ff 12-14 09:34:47.01 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 | [316 12-14 09:34:46.55 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 | [1e9 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +peer1.org2.example.com | [313 12-14 09:34:47.16 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 | [300 12-14 09:34:47.01 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 | [2a7 12-14 09:34:40.76 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 +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [317 12-14 09:34:46.55 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 | [1ea 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer1.org2.example.com | [314 12-14 09:34:47.16 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 | [2a8 12-14 09:34:40.76 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 [6b69a3c7-099e-4af6-a688-e31b0ef66b90] +peer0.org2.example.com | [301 12-14 09:34:47.01 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 +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org1.example.com | [318 12-14 09:34:46.55 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 | [315 12-14 09:34:47.16 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 | [1eb 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +peer1.org1.example.com | [2a9 12-14 09:34:40.76 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.5,txid=48a20d0d-4d7d-4ac7-a348-a0228c6d5c5b,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer0.org2.example.com | [302 12-14 09:34:47.01 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 | [319 12-14 09:34:46.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 | [316 12-14 09:34:47.16 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 +explorer | at emitErrorNT (net.js:1281:8) +orderer.example.com | [1ec 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +peer1.org1.example.com | [2aa 12-14 09:34:40.76 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.5 +peer1.org1.example.com | [2ab 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [31a 12-14 09:34:46.55 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 | [303 12-14 09:34:47.01 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 +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer1.org2.example.com | [317 12-14 09:34:47.16 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 | [1ed 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +peer0.org2.example.com | [304 12-14 09:34:47.01 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 | [31b 12-14 09:34:46.55 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 | [2ac 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +orderer.example.com | [1ee 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [318 12-14 09:34:47.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" +peer1.org1.example.com | [2ad 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [48a20d0d]Inside sendExecuteMessage. Message INIT +explorer | [2017-12-14 09:35:28.882] [ERROR] Helper - admin enrollment failed +peer0.org2.example.com | [305 12-14 09:34:47.01 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 | [31c 12-14 09:34:46.55 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 | [1ef 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [2ae 12-14 09:34:40.76 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 | [306 12-14 09:34:47.01 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 | [31a 12-14 09:34:47.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" +explorer | [2017-12-14 09:35:28.887] [ERROR] Query - Error: Missing userContext parameter +peer0.org1.example.com | [31d 12-14 09:34:46.56 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 | [307 12-14 09:34:47.01 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 | [1f0 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [2af 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [48a20d0d]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [319 12-14 09:34:47.17 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] +peer0.org2.example.com | [2fb 12-14 09:34:47.01 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] +peer0.org1.example.com | [31e 12-14 09:34:46.56 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 | [31b 12-14 09:34:47.18 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" +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer1.org1.example.com | [2b0 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48a20d0d]Move state message INIT +orderer.example.com | [1f1 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [308 12-14 09:34:47.02 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 | [31f 12-14 09:34:46.56 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 | [31d 12-14 09:34:47.18 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" +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | [2017-12-14 09:35:28.892] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +orderer.example.com | [1f2 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [1f3 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [320 12-14 09:34:46.56 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 | [2b1 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [48a20d0d]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [31c 12-14 09:34:47.18 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 133): Error: Cannot save null userContext. +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [309 12-14 09:34:47.02 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 | [2b2 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [321 12-14 09:34:46.57 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 | [322 12-14 09:34:46.57 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 | [323 12-14 09:34:46.57 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 | [324 12-14 09:34:46.57 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 | [1f4 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +peer0.org2.example.com | [30a 12-14 09:34:47.02 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 | [31e 12-14 09:34:47.18 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 | [325 12-14 09:34:46.57 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 | [1f5 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +peer1.org1.example.com | [2b3 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48a20d0d]sending state message INIT +peer0.org2.example.com | [30b 12-14 09:34:47.02 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [326 12-14 09:34:46.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +explorer | [2017-12-14 09:35:28.912] [ERROR] Query - Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | [1f6 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +peer0.org2.example.com | [30c 12-14 09:34:47.02 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 | [30d 12-14 09:34:47.02 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 | [327 12-14 09:34:46.57 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 | [2b4 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48a20d0d]Received message INIT from shim +orderer.example.com | [1f7 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +explorer | [2017-12-14 09:35:29.975] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer0.org2.example.com | [30e 12-14 09:34:47.02 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 | [328 12-14 09:34:46.57 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 | [329 12-14 09:34:46.57 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 | [32a 12-14 09:34:46.58 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 | [32b 12-14 09:34:46.58 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 | [1f8 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [30f 12-14 09:34:47.02 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 | [310 12-14 09:34:47.02 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 | [311 12-14 09:34:47.02 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 | [312 12-14 09:34:47.02 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 | [313 12-14 09:34:47.02 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 | [32c 12-14 09:34:46.58 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 | [1f9 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org2.example.com | [314 12-14 09:34:47.02 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 | [1fa 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [1fb 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [1fc 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [1fd 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +peer0.org1.example.com | [32d 12-14 09:34:46.58 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 | [315 12-14 09:34:47.02 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.org1.example.com | [2b5 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [48a20d0d]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [2b6 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [32e 12-14 09:34:46.58 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 | [31f 12-14 09:34:47.18 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 | [320 12-14 09:34:47.18 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 | [321 12-14 09:34:47.18 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 | [322 12-14 09:34:47.18 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 | [323 12-14 09:34:47.18 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 | [324 12-14 09:34:47.18 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 | [316 12-14 09:34:47.02 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 12-14 09:34:47.03 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 | [318 12-14 09:34:47.03 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 12-14 09:34:47.03 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 12-14 09:34:47.03 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 | [325 12-14 09:34:47.18 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 | [31b 12-14 09:34:47.03 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 | [1fe 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +peer0.org1.example.com | [32f 12-14 09:34:46.58 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 | [330 12-14 09:34:46.58 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 | [331 12-14 09:34:46.58 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 12-14 09:34:46.58 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 | [1ff 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +peer1.org1.example.com | [2b7 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [48a20d0d]Received INIT, initializing chaincode +peer1.org2.example.com | [326 12-14 09:34:47.18 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 | [333 12-14 09:34:46.58 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 | [334 12-14 09:34:46.58 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 | [31c 12-14 09:34:47.03 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 | [200 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [335 12-14 09:34:46.58 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 | [336 12-14 09:34:46.58 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 | [337 12-14 09:34:46.58 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 | [338 12-14 09:34:46.58 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 | [339 12-14 09:34:46.58 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 | [31d 12-14 09:34:47.03 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 | [201 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [202 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [203 12-14 09:34:39.48 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org1.example.com | [33a 12-14 09:34:46.58 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 | [33b 12-14 09:34:46.58 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 | [33c 12-14 09:34:46.58 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 | [33d 12-14 09:34:46.58 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 | [33e 12-14 09:34:46.58 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 | [33f 12-14 09:34:46.58 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 | [340 12-14 09:34:46.58 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 | [341 12-14 09:34:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +peer0.org2.example.com | [31e 12-14 09:34:47.03 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 12-14 09:34:47.03 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 | [320 12-14 09:34:47.03 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 12-14 09:34:47.03 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 | [322 12-14 09:34:47.03 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 | [342 12-14 09:34:46.58 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 | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org1.example.com | [343 12-14 09:34:46.58 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 | [2b8 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48a20d0d]Init get response status: 200 +peer1.org2.example.com | [327 12-14 09:34:47.18 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 | [328 12-14 09:34:47.18 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 | [323 12-14 09:34:47.03 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 | [344 12-14 09:34:46.59 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 | [345 12-14 09:34:46.59 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 | [346 12-14 09:34:46.59 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 | [347 12-14 09:34:46.59 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 | [348 12-14 09:34:46.59 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 | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +peer0.org2.example.com | [324 12-14 09:34:47.03 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 12-14 09:34:47.04 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 12-14 09:34:47.04 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 | [327 12-14 09:34:47.04 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 | [349 12-14 09:34:46.59 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 | [34a 12-14 09:34:46.59 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 | [34b 12-14 09:34:46.59 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 | [34c 12-14 09:34:46.59 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 | [34d 12-14 09:34:46.59 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 | [34e 12-14 09:34:46.59 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 | [34f 12-14 09:34:46.59 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 | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +peer0.org2.example.com | [328 12-14 09:34:47.04 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 | [329 12-14 09:34:47.04 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 | [329 12-14 09:34:47.18 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" +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +explorer | [2017-12-14 09:35:29.976] [ERROR] Helper - admin enrollment failed +peer0.org1.example.com | [350 12-14 09:34:46.59 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 | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +peer0.org2.example.com | [32a 12-14 09:34:47.04 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 | [32b 12-14 09:34:47.04 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 | [351 12-14 09:34:46.59 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 | -----END CERTIFICATE----- +peer0.org2.example.com | [32c 12-14 09:34:47.04 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 | [32d 12-14 09:34:47.04 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 | [32e 12-14 09:34:47.04 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 | [32f 12-14 09:34:47.04 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 | [330 12-14 09:34:47.04 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 | [331 12-14 09:34:47.04 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 | [332 12-14 09:34:47.04 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 | [352 12-14 09:34:46.59 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 | [204 12-14 09:34:39.48 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [333 12-14 09:34:47.04 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 | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [205 12-14 09:34:39.48 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [206 12-14 09:34:39.48 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [207 12-14 09:34:39.48 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +peer0.org1.example.com | [353 12-14 09:34:46.59 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 | [334 12-14 09:34:47.04 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 | [2b9 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48a20d0d]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [32a 12-14 09:34:47.18 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" +explorer | [2017-12-14 09:35:29.976] [ERROR] Query - Error: Missing userContext parameter +orderer.example.com | [208 12-14 09:34:39.48 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [209 12-14 09:34:39.48 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [20a 12-14 09:34:39.48 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [20b 12-14 09:34:39.49 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 +orderer.example.com | +/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN +orderer.example.com | wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 +orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL +orderer.example.com | liPpNxLSsBU= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [20c 12-14 09:34:39.49 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [20d 12-14 09:34:39.49 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [354 12-14 09:34:46.59 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 | [335 12-14 09:34:47.04 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 | [336 12-14 09:34:47.04 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 | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +peer0.org1.example.com | [355 12-14 09:34:46.59 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 | [356 12-14 09:34:46.59 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 12-14 09:34:47.04 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 +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer1.org1.example.com | [2ba 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48a20d0d]Move state message COMPLETED +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [20e 12-14 09:34:39.49 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [20f 12-14 09:34:39.49 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [210 12-14 09:34:39.49 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [357 12-14 09:34:46.59 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 12-14 09:34:47.04 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 | [211 12-14 09:34:39.49 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org2.example.com | [32b 12-14 09:34:47.18 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" +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org1.example.com | [2bb 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [48a20d0d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [358 12-14 09:34:46.59 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 | [32c 12-14 09:34:47.18 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 | [32d 12-14 09:34:47.18 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 | [32e 12-14 09:34:47.18 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 | [32f 12-14 09:34:47.18 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 | [330 12-14 09:34:47.18 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 | [331 12-14 09:34:47.18 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 | [332 12-14 09:34:47.18 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 | [333 12-14 09:34:47.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.org2.example.com | [334 12-14 09:34:47.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 | [339 12-14 09:34:47.04 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 | [359 12-14 09:34:46.59 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 | [35a 12-14 09:34:46.60 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 | [35b 12-14 09:34:46.60 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 | [35c 12-14 09:34:46.60 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 | [35d 12-14 09:34:46.60 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 | [35e 12-14 09:34:46.60 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 | [35f 12-14 09:34:46.61 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 | [212 12-14 09:34:39.49 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +peer0.org2.example.com | [33a 12-14 09:34:47.04 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 | [360 12-14 09:34:46.61 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.org1.example.com | [361 12-14 09:34:46.64 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 | [362 12-14 09:34:46.66 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 | [363 12-14 09:34:46.66 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 | [364 12-14 09:34:46.67 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 | [365 12-14 09:34:46.67 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 | [366 12-14 09:34:46.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer0.org1.example.com | [367 12-14 09:34:46.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +orderer.example.com | [213 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +orderer.example.com | RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +orderer.example.com | kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +orderer.example.com | VA7fF8MfGA== +orderer.example.com | -----END CERTIFICATE----- +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer1.org1.example.com | [2bc 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48a20d0d]send state message COMPLETED +peer1.org2.example.com | [335 12-14 09:34:47.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 +peer1.org2.example.com | [336 12-14 09:34:47.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 | [337 12-14 09:34:47.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 +peer1.org2.example.com | [338 12-14 09:34:47.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 +peer1.org2.example.com | [339 12-14 09:34:47.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 +peer1.org2.example.com | [33a 12-14 09:34:47.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.org2.example.com | [33b 12-14 09:34:47.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 | [33b 12-14 09:34:47.04 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 | [33c 12-14 09:34:47.04 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 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | [2017-12-14 09:35:29.977] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 136): Error: Cannot save null userContext. +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer1.org2.example.com | [33c 12-14 09:34:47.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 | [33d 12-14 09:34:47.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 +peer1.org2.example.com | [33e 12-14 09:34:47.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 +peer1.org2.example.com | [33f 12-14 09:34:47.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 +peer1.org2.example.com | [340 12-14 09:34:47.18 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 | [341 12-14 09:34:47.18 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 | [342 12-14 09:34:47.18 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 | [343 12-14 09:34:47.18 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 | [344 12-14 09:34:47.18 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 | [345 12-14 09:34:47.18 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 | [346 12-14 09:34:47.18 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 | [347 12-14 09:34:47.18 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 | [348 12-14 09:34:47.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 +peer1.org2.example.com | [349 12-14 09:34:47.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 +peer0.org2.example.com | [33d 12-14 09:34:47.05 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 | [2bd 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48a20d0d]Received message COMPLETED from shim +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [368 12-14 09:34:46.67 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org1.example.com | [369 12-14 09:34:46.67 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 | [33e 12-14 09:34:47.05 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 | [214 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [36a 12-14 09:34:46.67 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)(0xc42170a300), Data:(*common.BlockData)(0xc4214984c0), Metadata:(*common.BlockMetadata)(0xc421498500)}, doMVCCValidation=true +peer1.org2.example.com | [34a 12-14 09:34:47.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: +peer1.org1.example.com | [2be 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [48a20d0d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | [2017-12-14 09:35:29.995] [ERROR] Query - Error: Connect Failed +peer0.org2.example.com | [33f 12-14 09:34:47.05 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 | [2bf 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [48a20d0d-4d7d-4ac7-a348-a0228c6d5c5b]HandleMessage- COMPLETED. Notify +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [34b 12-14 09:34:47.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 +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | [36b 12-14 09:34:46.67 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 | [340 12-14 09:34:47.05 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 +explorer | [2017-12-14 09:35:31.098] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org2.example.com | [34c 12-14 09:34:47.19 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 | [341 12-14 09:34:47.05 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 | [36c 12-14 09:34:46.67 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] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer1.org1.example.com | [2c0 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:48a20d0d-4d7d-4ac7-a348-a0228c6d5c5b +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +peer1.org2.example.com | [34d 12-14 09:34:47.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.org2.example.com | [342 12-14 09:34:47.05 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 | [36d 12-14 09:34:46.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x81, 0xc1, 0xf4, 0xbc, 0xce, 0xfe, 0xcf, 0xba, 0xa, 0x88, 0xde, 0x5c, 0x57, 0x53, 0xcf, 0x5d, 0xef, 0xb6, 0x4c, 0x49, 0x24, 0x89, 0xc2, 0x64, 0x6c, 0x98, 0xc7, 0xd6, 0x74, 0x70, 0xc, 0xfa} txOffsets= +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org2.example.com | [343 12-14 09:34:47.05 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 | [34e 12-14 09:34:47.23 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 | [2c1 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer0.org2.example.com | [344 12-14 09:34:47.05 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 | [34f 12-14 09:34:47.23 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 | [2c2 12-14 09:34:40.76 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 | [2c3 12-14 09:34:40.76 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 [6b69a3c7-099e-4af6-a688-e31b0ef66b90] +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org2.example.com | [345 12-14 09:34:47.05 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 | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +explorer | [2017-12-14 09:35:31.099] [ERROR] Helper - admin enrollment failed +peer1.org2.example.com | [350 12-14 09:34:47.24 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 | [2c4 12-14 09:34:40.76 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 | txId= locPointer=offset=70, bytesLength=11922 +peer0.org2.example.com | [346 12-14 09:34:47.05 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 | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +peer1.org2.example.com | [351 12-14 09:34:47.24 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 | [2c5 12-14 09:34:40.76 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 [c73c0a6c-b66a-4adc-8c9d-618b00d57654] +explorer | [2017-12-14 09:35:31.101] [ERROR] Query - Error: Missing userContext parameter +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org2.example.com | [347 12-14 09:34:47.05 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 | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +peer1.org1.example.com | [2c6 12-14 09:34:40.76 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.5,txid=01bb4afc-99e6-4852-9d19-5b6b6e0957d4,syscc=true,proposal=0x0,canname=qscc:1.0.5 +peer1.org2.example.com | [352 12-14 09:34:47.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer0.org1.example.com | ] +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer0.org2.example.com | [348 12-14 09:34:47.05 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 | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +peer1.org1.example.com | [2c7 12-14 09:34:40.76 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.5 +peer1.org1.example.com | [2c8 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [2c9 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 +peer1.org1.example.com | [2ca 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [01bb4afc]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [2cb 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer0.org2.example.com | [349 12-14 09:34:47.05 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 | [353 12-14 09:34:47.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org2.example.com | [34a 12-14 09:34:47.05 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 | [354 12-14 09:34:47.24 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org1.example.com | [36e 12-14 09:34:46.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12016, bytesLength=11922] for tx ID: [] to index +peer1.org1.example.com | [2cc 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [01bb4afc]sendExecuteMsg trigger event INIT +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +explorer | [2017-12-14 09:35:31.101] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer0.org2.example.com | [34b 12-14 09:34:47.05 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 | [36f 12-14 09:34:46.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12016, bytesLength=11922] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org1.example.com | [2cd 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [01bb4afc]Move state message INIT +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer0.org2.example.com | [34c 12-14 09:34:47.05 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 | [370 12-14 09:34:46.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25698], isChainEmpty=[false], lastBlockNumber=[1] +peer1.org1.example.com | [2ce 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [01bb4afc]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [355 12-14 09:34:47.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] +orderer.example.com | [215 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 139): Error: Cannot save null userContext. +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:35:31.121] [ERROR] Query - Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:35:32.210] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer0.org2.example.com | [34d 12-14 09:34:47.07 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 | [34e 12-14 09:34:47.08 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 | [34f 12-14 09:34:47.08 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 | [350 12-14 09:34:47.08 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 | [351 12-14 09:34:47.08 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 | [352 12-14 09:34:47.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer0.org2.example.com | [353 12-14 09:34:47.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org2.example.com | [354 12-14 09:34:47.08 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org2.example.com | [355 12-14 09:34:47.08 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 | [356 12-14 09:34:47.08 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)(0xc420133e80), Data:(*common.BlockData)(0xc4218fd040), Metadata:(*common.BlockMetadata)(0xc4218fd080)}, doMVCCValidation=true +peer0.org2.example.com | [357 12-14 09:34:47.08 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 | [358 12-14 09:34:47.08 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 | [359 12-14 09:34:47.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x81, 0xc1, 0xf4, 0xbc, 0xce, 0xfe, 0xcf, 0xba, 0xa, 0x88, 0xde, 0x5c, 0x57, 0x53, 0xcf, 0x5d, 0xef, 0xb6, 0x4c, 0x49, 0x24, 0x89, 0xc2, 0x64, 0x6c, 0x98, 0xc7, 0xd6, 0x74, 0x70, 0xc, 0xfa} txOffsets= +peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=11922 +peer0.org2.example.com | ] +peer0.org2.example.com | [35a 12-14 09:34:47.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12016, bytesLength=11922] for tx ID: [] to index +peer0.org2.example.com | [35b 12-14 09:34:47.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12016, bytesLength=11922] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org2.example.com | [35c 12-14 09:34:47.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25698], isChainEmpty=[false], lastBlockNumber=[1] +peer0.org2.example.com | [35d 12-14 09:34:47.09 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 | [35e 12-14 09:34:47.09 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 | [35f 12-14 09:34:47.09 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 | [360 12-14 09:34:47.09 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 | [361 12-14 09:34:47.09 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 | [2cf 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [2d0 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [01bb4afc]sending state message INIT +peer1.org1.example.com | [2d1 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [01bb4afc]Received message INIT from shim +peer1.org1.example.com | [2d2 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [01bb4afc]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [2d3 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [2d4 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [01bb4afc]Received INIT, initializing chaincode +peer1.org1.example.com | [2d5 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org1.example.com | [2d6 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [01bb4afc]Init get response status: 200 +peer1.org1.example.com | [2d7 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [01bb4afc]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [2d8 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [01bb4afc]Move state message COMPLETED +peer1.org1.example.com | [2d9 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [01bb4afc]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [2da 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [01bb4afc]send state message COMPLETED +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +explorer | [2017-12-14 09:35:32.210] [ERROR] Helper - admin enrollment failed +explorer | [2017-12-14 09:35:32.211] [ERROR] Query - Error: Missing userContext parameter +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | [2017-12-14 09:35:32.212] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 142): Error: Cannot save null userContext. +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:35:32.224] [ERROR] Query - Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:35:33.344] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +peer1.org2.example.com | [356 12-14 09:34:47.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)(0xc42153aec0), Data:(*common.BlockData)(0xc42187a960), Metadata:(*common.BlockMetadata)(0xc42187a9a0)}, doMVCCValidation=true +peer0.org2.example.com | [362 12-14 09:34:47.09 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 | [2db 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [01bb4afc]Received message COMPLETED from shim +peer0.org1.example.com | [371 12-14 09:34:46.68 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 | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org2.example.com | [363 12-14 09:34:47.10 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 | [364 12-14 09:34:47.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org2.example.com | [357 12-14 09:34:47.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 | [358 12-14 09:34:47.24 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 | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org1.example.com | [2dc 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [01bb4afc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [2dd 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [01bb4afc-99e6-4852-9d19-5b6b6e0957d4]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [2de 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:01bb4afc-99e6-4852-9d19-5b6b6e0957d4 +peer1.org1.example.com | [2df 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [365 12-14 09:34:47.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] +explorer | [2017-12-14 09:35:33.344] [ERROR] Helper - admin enrollment failed +explorer | [2017-12-14 09:35:33.345] [ERROR] Query - Error: Missing userContext parameter +peer1.org2.example.com | [359 12-14 09:34:47.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x81, 0xc1, 0xf4, 0xbc, 0xce, 0xfe, 0xcf, 0xba, 0xa, 0x88, 0xde, 0x5c, 0x57, 0x53, 0xcf, 0x5d, 0xef, 0xb6, 0x4c, 0x49, 0x24, 0x89, 0xc2, 0x64, 0x6c, 0x98, 0xc7, 0xd6, 0x74, 0x70, 0xc, 0xfa} txOffsets= +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +peer1.org1.example.com | [2e0 12-14 09:34:40.76 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 | txId= locPointer=offset=70, bytesLength=11922 +peer0.org2.example.com | [366 12-14 09:34:47.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org2.example.com | [367 12-14 09:34:47.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer0.org1.example.com | [372 12-14 09:34:46.68 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 | [2e1 12-14 09:34:40.76 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 [c73c0a6c-b66a-4adc-8c9d-618b00d57654] +peer1.org2.example.com | ] +peer0.org2.example.com | [368 12-14 09:34:47.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer1.org1.example.com | [2e2 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry +peer1.org2.example.com | [35a 12-14 09:34:47.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12016, bytesLength=11922] for tx ID: [] to index +peer1.org2.example.com | [35b 12-14 09:34:47.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12016, bytesLength=11922] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org2.example.com | [35c 12-14 09:34:47.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=[25698], isChainEmpty=[false], lastBlockNumber=[1] +peer1.org2.example.com | [35d 12-14 09:34:47.25 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 | [35e 12-14 09:34:47.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 | [369 12-14 09:34:47.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org2.example.com | [36a 12-14 09:34:47.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [216 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [217 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [218 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +peer1.org2.example.com | [35f 12-14 09:34:47.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 +explorer | [2017-12-14 09:35:33.346] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer1.org1.example.com | [2e3 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] +peer1.org1.example.com | [2e4 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org2.example.com | [36b 12-14 09:34:47.10 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org2.example.com | [360 12-14 09:34:47.26 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 | [361 12-14 09:34:47.26 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 | [362 12-14 09:34:47.26 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 +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer0.org2.example.com | [36c 12-14 09:34:47.10 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org2.example.com | [36d 12-14 09:34:47.10 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org1.example.com | [2e5 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [2e6 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +orderer.example.com | [219 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [36e 12-14 09:34:47.10 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421a3bcb0 +peer0.org2.example.com | [36f 12-14 09:34:47.10 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\263\213\311\321\005\"\017businesschannel" signature_header:"\n\377\005\n\nOrdererMSP\022\360\005-----BEGIN -----\nMIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL\ngVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX\nKhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U\niXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv\nTg==\n-----END -----\n\022\030\252\350\377\306\217,\205<=\251z:$P[\024\225\354\373\337a\225&>" +peer0.org2.example.com | [370 12-14 09:34:47.10 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org2.example.com | [371 12-14 09:34:47.10 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [2e7 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit +orderer.example.com | [21a 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 145): Error: Cannot save null userContext. +peer1.org2.example.com | [363 12-14 09:34:47.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 [1] +peer1.org2.example.com | [364 12-14 09:34:47.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org2.example.com | [365 12-14 09:34:47.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] +peer0.org2.example.com | [372 12-14 09:34:47.10 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP fcb073bba41aef05a6a567ffd435bf0e89d43a1afdb7dbf96245382288964c63} +orderer.example.com | [21b 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [2e8 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit +peer1.org1.example.com | [2e9 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ffc0abc]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [373 12-14 09:34:47.10 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [374 12-14 09:34:47.10 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [366 12-14 09:34:47.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org1.example.com | [2ea 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ffc0abc]Move state message COMPLETED +peer1.org2.example.com | [367 12-14 09:34:47.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [375 12-14 09:34:47.10 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421b21000, header channel_header:"\010\001\032\006\010\263\213\311\321\005\"\017businesschannel" signature_header:"\n\377\005\n\nOrdererMSP\022\360\005-----BEGIN -----\nMIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL\ngVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX\nKhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U\niXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv\nTg==\n-----END -----\n\022\030\252\350\377\306\217,\205<=\251z:$P[\024\225\354\373\337a\225&>" +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org1.example.com | [373 12-14 09:34:46.68 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 | [374 12-14 09:34:46.68 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 | [375 12-14 09:34:46.68 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 | [376 12-14 09:34:46.68 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 | [2eb 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7ffc0abc]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [368 12-14 09:34:47.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org1.example.com | [2ec 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ffc0abc]send state message COMPLETED +peer0.org2.example.com | [376 12-14 09:34:47.10 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +orderer.example.com | [21c 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [377 12-14 09:34:46.69 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 | [378 12-14 09:34:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org1.example.com | [2ed 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7ffc0abc]Received message COMPLETED from shim +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:35:33.360] [ERROR] Query - Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:35:34.480] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer1.org2.example.com | [369 12-14 09:34:47.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org2.example.com | [36a 12-14 09:34:47.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org1.example.com | [2ee 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7ffc0abc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [21d 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0ABC060A1B08011A0608AF8BC9D10522...E403282EB40CB99880D99DB842278535 +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [377 12-14 09:34:47.10 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 | [36b 12-14 09:34:47.26 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org1.example.com | [2ef 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7ffc0abc4cb7bf54a97df3ef133209a2dfc7015538dd2fb90fc83f62a7dd73e8]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [2f0 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7ffc0abc4cb7bf54a97df3ef133209a2dfc7015538dd2fb90fc83f62a7dd73e8 +peer1.org1.example.com | [2f1 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [2f2 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [2f3 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org2.example.com | [36c 12-14 09:34:47.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +orderer.example.com | [21e 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 6A99E7C7491B251F27EC762282A87AF2637E6E892D685D7AEB5D0EB656502DBC +peer0.org2.example.com | [378 12-14 09:34:47.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 +peer0.org2.example.com | [379 12-14 09:34:47.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/Org1MSP +peer1.org1.example.com | [2f4 12-14 09:34:40.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org1.example.com | [2f5 12-14 09:34:46.54 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [36d 12-14 09:34:47.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org1.example.com | [379 12-14 09:34:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] +peer0.org1.example.com | [37a 12-14 09:34:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org1.example.com | [37b 12-14 09:34:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [37a 12-14 09:34:47.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/MSP +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +peer1.org1.example.com | [2f6 12-14 09:34:46.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org2.example.com | [37b 12-14 09:34:47.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 +orderer.example.com | [21f 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [2f7 12-14 09:34:46.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org1.example.com | [2f8 12-14 09:34:46.54 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4217a1e90 +peer1.org1.example.com | [2f9 12-14 09:34:46.54 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\261\213\311\321\005\"\017businesschannel" signature_header:"\n\377\005\n\nOrdererMSP\022\360\005-----BEGIN -----\nMIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL\ngVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX\nKhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U\niXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv\nTg==\n-----END -----\n\022\030Yt\364\244\327\302h\302\370\261\027\037*\322|\314h\203\325\303\320\201\030;" +peer1.org1.example.com | [2fa 12-14 09:34:46.54 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org1.example.com | [2fb 12-14 09:34:46.54 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [36e 12-14 09:34:47.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421df6240 +orderer.example.com | [220 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [221 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [37c 12-14 09:34:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org1.example.com | [37d 12-14 09:34:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [37e 12-14 09:34:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org1.example.com | [37f 12-14 09:34:46.69 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org2.example.com | [37c 12-14 09:34:47.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 +peer0.org2.example.com | [37d 12-14 09:34:47.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 +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org2.example.com | [36f 12-14 09:34:47.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\263\213\311\321\005\"\017businesschannel" signature_header:"\n\377\005\n\nOrdererMSP\022\360\005-----BEGIN -----\nMIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL\ngVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX\nKhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U\niXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv\nTg==\n-----END -----\n\022\030\252\350\377\306\217,\205<=\251z:$P[\024\225\354\373\337a\225&>" +peer1.org2.example.com | [370 12-14 09:34:47.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org2.example.com | [371 12-14 09:34:47.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [2fc 12-14 09:34:46.54 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP fcb073bba41aef05a6a567ffd435bf0e89d43a1afdb7dbf96245382288964c63} +peer1.org1.example.com | [2fd 12-14 09:34:46.54 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [37e 12-14 09:34:47.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 +explorer | [2017-12-14 09:35:34.480] [ERROR] Helper - admin enrollment failed +peer1.org1.example.com | [2fe 12-14 09:34:46.54 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [372 12-14 09:34:47.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP fcb073bba41aef05a6a567ffd435bf0e89d43a1afdb7dbf96245382288964c63} +peer1.org2.example.com | [373 12-14 09:34:47.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [374 12-14 09:34:47.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [37f 12-14 09:34:47.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 +explorer | [2017-12-14 09:35:34.481] [ERROR] Query - Error: Missing userContext parameter +peer1.org1.example.com | [2ff 12-14 09:34:46.54 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421698000, header channel_header:"\010\001\032\006\010\261\213\311\321\005\"\017businesschannel" signature_header:"\n\377\005\n\nOrdererMSP\022\360\005-----BEGIN -----\nMIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL\ngVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX\nKhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U\niXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv\nTg==\n-----END -----\n\022\030Yt\364\244\327\302h\302\370\261\027\037*\322|\314h\203\325\303\320\201\030;" +peer0.org1.example.com | [380 12-14 09:34:46.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org1.example.com | [381 12-14 09:34:46.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org1.example.com | [382 12-14 09:34:46.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421cdf1d0 +peer0.org1.example.com | [383 12-14 09:34:46.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\263\213\311\321\005\"\017businesschannel" signature_header:"\n\377\005\n\nOrdererMSP\022\360\005-----BEGIN -----\nMIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL\ngVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX\nKhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U\niXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv\nTg==\n-----END -----\n\022\030\252\350\377\306\217,\205<=\251z:$P[\024\225\354\373\337a\225&>" +peer0.org1.example.com | [384 12-14 09:34:46.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org2.example.com | [375 12-14 09:34:47.27 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421e0e000, header channel_header:"\010\001\032\006\010\263\213\311\321\005\"\017businesschannel" signature_header:"\n\377\005\n\nOrdererMSP\022\360\005-----BEGIN -----\nMIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL\ngVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX\nKhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U\niXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv\nTg==\n-----END -----\n\022\030\252\350\377\306\217,\205<=\251z:$P[\024\225\354\373\337a\225&>" +peer0.org2.example.com | [380 12-14 09:34:47.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.org1.example.com | [300 12-14 09:34:46.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [385 12-14 09:34:46.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [386 12-14 09:34:46.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP fcb073bba41aef05a6a567ffd435bf0e89d43a1afdb7dbf96245382288964c63} +peer1.org2.example.com | [376 12-14 09:34:47.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org2.example.com | [377 12-14 09:34:47.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org2.example.com | [381 12-14 09:34:47.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 +peer0.org2.example.com | [382 12-14 09:34:47.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.org2.example.com | [383 12-14 09:34:47.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 +peer1.org1.example.com | [301 12-14 09:34:46.54 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 | [378 12-14 09:34:47.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | [2017-12-14 09:35:34.482] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer0.org2.example.com | [384 12-14 09:34:47.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.org1.example.com | [302 12-14 09:34:46.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 +peer1.org2.example.com | [379 12-14 09:34:47.27 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 | [222 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer0.org1.example.com | [387 12-14 09:34:46.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [303 12-14 09:34:46.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.org2.example.com | [385 12-14 09:34:47.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 | [37a 12-14 09:34:47.27 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 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org1.example.com | [304 12-14 09:34:46.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 +peer1.org1.example.com | [305 12-14 09:34:46.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 +peer0.org2.example.com | [386 12-14 09:34:47.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.org2.example.com | [387 12-14 09:34:47.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 +peer0.org2.example.com | [388 12-14 09:34:47.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 148): Error: Cannot save null userContext. +peer1.org2.example.com | [37b 12-14 09:34:47.27 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 | [306 12-14 09:34:46.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 | [307 12-14 09:34:46.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 | [308 12-14 09:34:46.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 +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org2.example.com | [389 12-14 09:34:47.10 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 | [388 12-14 09:34:46.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [389 12-14 09:34:46.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421a42000, header channel_header:"\010\001\032\006\010\263\213\311\321\005\"\017businesschannel" signature_header:"\n\377\005\n\nOrdererMSP\022\360\005-----BEGIN -----\nMIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL\ngVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX\nKhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U\niXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv\nTg==\n-----END -----\n\022\030\252\350\377\306\217,\205<=\251z:$P[\024\225\354\373\337a\225&>" +peer1.org1.example.com | [309 12-14 09:34:46.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 +peer1.org2.example.com | [37c 12-14 09:34:47.27 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 | [37d 12-14 09:34:47.27 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 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [30a 12-14 09:34:46.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 +orderer.example.com | [223 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB8060A1708041A0608AF8BC9D10522...25827A242B10315F4C19B4B8C92AE251 +orderer.example.com | [224 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 035F04490B5723AD511EEEC2FC317C3964D2BD411F6DD4CA141AB9D1F627CFBC +explorer | [2017-12-14 09:35:34.493] [ERROR] Query - Error: Connect Failed +peer0.org2.example.com | [38a 12-14 09:34:47.10 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 | [38b 12-14 09:34:47.10 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 | [30b 12-14 09:34:46.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 | [30c 12-14 09:34:46.55 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 | [37e 12-14 09:34:47.27 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 | [225 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: testchainid] Broadcast is filtering message of type ORDERER_TRANSACTION +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:35:35.596] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer0.org2.example.com | [38c 12-14 09:34:47.10 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 | [30d 12-14 09:34:46.55 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 | [30e 12-14 09:34:46.55 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 | [226 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [227 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026400 gate 1513244079506153900 evaluation starts +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [38d 12-14 09:34:47.10 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 | [38e 12-14 09:34:47.10 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 | [37f 12-14 09:34:47.27 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 | [38a 12-14 09:34:46.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +orderer.example.com | [228 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026400 signed by 0 principal evaluation starts (used [false]) +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org1.example.com | [30f 12-14 09:34:46.55 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 | [310 12-14 09:34:46.55 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 | [38f 12-14 09:34:47.10 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 | [38b 12-14 09:34:46.69 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 | [229 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026400 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [22a 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [38c 12-14 09:34:46.69 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 | [380 12-14 09:34:47.27 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 | [381 12-14 09:34:47.27 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 | [382 12-14 09:34:47.27 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 | [390 12-14 09:34:47.10 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 +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer1.org1.example.com | [311 12-14 09:34:46.55 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 | [383 12-14 09:34:47.27 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 | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +orderer.example.com | KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +orderer.example.com | gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +peer0.org2.example.com | [391 12-14 09:34:47.10 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 | [312 12-14 09:34:46.55 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 | [384 12-14 09:34:47.27 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 +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +explorer | [2017-12-14 09:35:35.599] [ERROR] Helper - admin enrollment failed +peer0.org1.example.com | [38d 12-14 09:34:46.69 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 | [38e 12-14 09:34:46.69 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 | [313 12-14 09:34:46.55 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 | [314 12-14 09:34:46.55 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 | [392 12-14 09:34:47.10 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 | [393 12-14 09:34:47.10 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 +explorer | [2017-12-14 09:35:35.599] [ERROR] Query - Error: Missing userContext parameter +orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +orderer.example.com | KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +orderer.example.com | iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +peer1.org2.example.com | [385 12-14 09:34:47.27 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 | [386 12-14 09:34:47.27 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 | [394 12-14 09:34:47.10 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 | [395 12-14 09:34:47.10 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 +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | [2017-12-14 09:35:35.600] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer1.org2.example.com | [387 12-14 09:34:47.27 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 | [315 12-14 09:34:46.55 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 | [316 12-14 09:34:46.55 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 | [38f 12-14 09:34:46.69 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 | [390 12-14 09:34:46.69 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 +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer1.org2.example.com | [388 12-14 09:34:47.27 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 | [396 12-14 09:34:47.10 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 | Tg== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [22b 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [22c 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +peer1.org1.example.com | [317 12-14 09:34:46.55 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 | [389 12-14 09:34:47.27 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 | [38a 12-14 09:34:47.27 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 | [397 12-14 09:34:47.10 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 | [398 12-14 09:34:47.10 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 | [399 12-14 09:34:47.10 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 | [391 12-14 09:34:46.69 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 | [392 12-14 09:34:46.69 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 | [393 12-14 09:34:46.69 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 | [394 12-14 09:34:46.69 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 | [318 12-14 09:34:46.55 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 | [319 12-14 09:34:46.55 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 | [39a 12-14 09:34:47.10 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 | [39b 12-14 09:34:47.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 151): Error: Cannot save null userContext. +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org1.example.com | [31a 12-14 09:34:46.55 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 | [38b 12-14 09:34:47.27 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 | [39c 12-14 09:34:47.10 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 | [395 12-14 09:34:46.69 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 +orderer.example.com | [22d 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026400 principal matched by identity 0 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer1.org1.example.com | [31b 12-14 09:34:46.55 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 | [39d 12-14 09:34:47.10 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 | [39e 12-14 09:34:47.10 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 | [39f 12-14 09:34:47.10 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 | [38c 12-14 09:34:47.27 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 | [396 12-14 09:34:46.69 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 | [31c 12-14 09:34:46.55 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 | [31d 12-14 09:34:46.55 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 | [31e 12-14 09:34:46.55 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 | [3a0 12-14 09:34:47.10 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 | [3a1 12-14 09:34:47.10 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 | [38d 12-14 09:34:47.27 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 | [38e 12-14 09:34:47.27 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 | [38f 12-14 09:34:47.27 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 | [390 12-14 09:34:47.27 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 | [31f 12-14 09:34:46.55 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 12-14 09:34:46.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:35:35.619] [ERROR] Query - Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:35:36.696] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer0.org2.example.com | [3a2 12-14 09:34:47.10 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 | [321 12-14 09:34:46.55 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 | [391 12-14 09:34:47.27 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 | [397 12-14 09:34:46.69 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 | [22e 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 03 5f 04 49 0b 57 23 ad 51 1e ee c2 fc 31 7c 39 |._.I.W#.Q....1|9| +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer1.org2.example.com | [392 12-14 09:34:47.27 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 | [393 12-14 09:34:47.27 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 | [394 12-14 09:34:47.27 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 | [3a3 12-14 09:34:47.10 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.org1.example.com | [398 12-14 09:34:46.69 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 | [399 12-14 09:34:46.69 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 +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [322 12-14 09:34:46.56 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 | [323 12-14 09:34:46.56 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 | [395 12-14 09:34:47.27 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 | [396 12-14 09:34:47.27 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 | [397 12-14 09:34:47.27 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 | [398 12-14 09:34:47.27 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 | [399 12-14 09:34:47.27 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 | [3a4 12-14 09:34:47.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 +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +peer1.org2.example.com | [39a 12-14 09:34:47.27 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 | [39b 12-14 09:34:47.27 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 | [3a5 12-14 09:34:47.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.org2.example.com | [3a6 12-14 09:34:47.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.org2.example.com | [3a7 12-14 09:34:47.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/AnchorPeers +peer0.org1.example.com | [39a 12-14 09:34:46.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +explorer | [2017-12-14 09:35:36.699] [ERROR] Helper - admin enrollment failed +peer1.org1.example.com | [324 12-14 09:34:46.56 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 | [325 12-14 09:34:46.56 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 | [326 12-14 09:34:46.56 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 12-14 09:34:46.56 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 | [3a8 12-14 09:34:47.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.org2.example.com | [3a9 12-14 09:34:47.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/Writers +explorer | [2017-12-14 09:35:36.700] [ERROR] Query - Error: Missing userContext parameter +peer1.org2.example.com | [39c 12-14 09:34:47.29 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 | [39d 12-14 09:34:47.30 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 | [328 12-14 09:34:46.56 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 | [39b 12-14 09:34:46.69 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.org2.example.com | [3aa 12-14 09:34:47.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/Admins +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer1.org2.example.com | [39e 12-14 09:34:47.30 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 | [39f 12-14 09:34:47.30 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 | [3ab 12-14 09:34:47.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 | [39c 12-14 09:34:46.69 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 | [3a0 12-14 09:34:47.30 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 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | [2017-12-14 09:35:36.701] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer1.org1.example.com | [329 12-14 09:34:46.56 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 | [39d 12-14 09:34:46.70 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 | [39e 12-14 09:34:46.70 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 | [3ac 12-14 09:34:47.11 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 | 00000010 64 d2 bd 41 1f 6d d4 ca 14 1a b9 d1 f6 27 cf bc |d..A.m.......'..| +peer1.org2.example.com | [3a1 12-14 09:34:47.30 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 | [39f 12-14 09:34:46.70 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 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org2.example.com | [3ad 12-14 09:34:47.11 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 | [3ae 12-14 09:34:47.11 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 | [3af 12-14 09:34:47.11 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 | [32a 12-14 09:34:46.56 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 | [32b 12-14 09:34:46.56 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 | [32c 12-14 09:34:46.57 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 | [32d 12-14 09:34:46.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 154): Error: Cannot save null userContext. +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org2.example.com | [3a2 12-14 09:34:47.30 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 | [3a3 12-14 09:34:47.30 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 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [3b0 12-14 09:34:47.11 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 | [3a4 12-14 09:34:47.30 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 | [3a5 12-14 09:34:47.30 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 | [3a6 12-14 09:34:47.30 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 | [32e 12-14 09:34:46.57 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 | [32f 12-14 09:34:46.57 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 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:35:36.718] [ERROR] Query - Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [3b1 12-14 09:34:47.11 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 | [3a7 12-14 09:34:47.30 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 | [3a8 12-14 09:34:47.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/Org2MSP/AnchorPeers +orderer.example.com | [22f 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 dd 5a 0a 25 0c 82 20 b7 21 51 93 |0E.!..Z.%.. .!Q.| +peer1.org1.example.com | [330 12-14 09:34:46.57 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 | [3a0 12-14 09:34:46.70 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 | [3a1 12-14 09:34:46.70 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 | [3a2 12-14 09:34:46.70 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 | [3b2 12-14 09:34:47.11 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 | 00000010 a1 37 19 10 ec 44 b7 c7 ce a6 cb 34 eb fc 13 96 |.7...D.....4....| +peer1.org1.example.com | [331 12-14 09:34:46.57 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 +explorer | [2017-12-14 09:35:37.798] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer1.org2.example.com | [3a9 12-14 09:34:47.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/Org2MSP/Writers +peer0.org1.example.com | [3a3 12-14 09:34:46.70 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 | [3b3 12-14 09:34:47.11 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 | [3b4 12-14 09:34:47.11 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 | [3b5 12-14 09:34:47.11 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 | [332 12-14 09:34:46.57 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 | [333 12-14 09:34:46.57 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 | [334 12-14 09:34:46.57 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 | [335 12-14 09:34:46.58 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 | [336 12-14 09:34:46.58 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 | [3aa 12-14 09:34:47.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/Org2MSP/Admins +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer0.org1.example.com | [3a4 12-14 09:34:46.70 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 | [3a5 12-14 09:34:46.70 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 | [337 12-14 09:34:46.58 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 | [3b6 12-14 09:34:47.11 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" +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [3ab 12-14 09:34:47.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/Org2MSP/Readers +peer1.org2.example.com | [3ac 12-14 09:34:47.31 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 | [3b7 12-14 09:34:47.11 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 | [3b8 12-14 09:34:47.11 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 | [3b9 12-14 09:34:47.11 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 | [338 12-14 09:34:46.58 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 | [339 12-14 09:34:46.58 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 | [33a 12-14 09:34:46.58 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 | [3ad 12-14 09:34:47.31 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 | [3ba 12-14 09:34:47.11 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 | [3bb 12-14 09:34:47.11 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" +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +peer1.org1.example.com | [33b 12-14 09:34:46.58 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 | [3ae 12-14 09:34:47.31 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 | [3af 12-14 09:34:47.31 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 | [3b0 12-14 09:34:47.31 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 | [3b1 12-14 09:34:47.31 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 | [3bc 12-14 09:34:47.11 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 | 00000020 15 74 2f f3 87 02 20 51 4b 63 57 4c b6 9a 92 07 |.t/... QKcWL....| +peer1.org1.example.com | [33c 12-14 09:34:46.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer1.org2.example.com | [3b2 12-14 09:34:47.31 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 | [3bd 12-14 09:34:47.11 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 | [3be 12-14 09:34:47.11 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 | [3bf 12-14 09:34:47.11 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 | [3a6 12-14 09:34:46.70 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 | [3b3 12-14 09:34:47.31 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" +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +orderer.example.com | 00000030 61 df a6 56 65 9b e5 4a b2 f9 58 cd aa 11 cd 5f |a..Ve..J..X...._| +peer0.org2.example.com | [3c0 12-14 09:34:47.11 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 | [33d 12-14 09:34:46.58 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 | [3b4 12-14 09:34:47.31 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 | [3b5 12-14 09:34:47.31 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 | [3b6 12-14 09:34:47.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +explorer | [2017-12-14 09:35:37.799] [ERROR] Helper - admin enrollment failed +peer0.org2.example.com | [3c1 12-14 09:34:47.11 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 | [33e 12-14 09:34:46.58 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 | [3a7 12-14 09:34:46.70 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 | [3a8 12-14 09:34:46.70 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 | [3a9 12-14 09:34:46.70 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 +explorer | [2017-12-14 09:35:37.800] [ERROR] Query - Error: Missing userContext parameter +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org1.example.com | [33f 12-14 09:34:46.58 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 | [340 12-14 09:34:46.58 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 | [341 12-14 09:34:46.58 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 | 00000040 3f c9 1a 4b 5e 75 3c |?..K^u<| +peer1.org2.example.com | [3b7 12-14 09:34:47.31 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 | [3c2 12-14 09:34:47.11 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 +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | [2017-12-14 09:35:37.801] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer1.org1.example.com | [342 12-14 09:34:46.58 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 | [230 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026400 principal evaluation succeeds for identity 0 +peer0.org2.example.com | [3c3 12-14 09:34:47.11 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 | [3c4 12-14 09:34:47.11 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 | [3c5 12-14 09:34:47.11 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 | [3c6 12-14 09:34:47.11 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 | [3b8 12-14 09:34:47.31 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 | [343 12-14 09:34:46.58 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 | [344 12-14 09:34:46.58 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 | [345 12-14 09:34:46.58 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 | [346 12-14 09:34:46.58 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" +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer1.org2.example.com | [3b9 12-14 09:34:47.31 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 | [3c7 12-14 09:34:47.11 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 | [3c8 12-14 09:34:47.11 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 | [231 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026400 gate 1513244079506153900 evaluation succeeds +peer0.org1.example.com | [3aa 12-14 09:34:46.70 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 | [347 12-14 09:34:46.58 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 | [348 12-14 09:34:46.58 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 | [349 12-14 09:34:46.58 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 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org2.example.com | [3c9 12-14 09:34:47.11 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 | [3ca 12-14 09:34:47.11 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 | [3cb 12-14 09:34:47.11 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 | [3cc 12-14 09:34:47.11 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 | [3ba 12-14 09:34:47.31 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 | [3bb 12-14 09:34:47.31 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 | [3bc 12-14 09:34:47.31 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 | [3bd 12-14 09:34:47.31 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 | [34a 12-14 09:34:46.58 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 | [3ab 12-14 09:34:46.70 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 | [3cd 12-14 09:34:47.11 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 | [3ce 12-14 09:34:47.11 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 +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 157): Error: Cannot save null userContext. +peer1.org1.example.com | [34b 12-14 09:34:46.58 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 | [3be 12-14 09:34:47.31 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 | [3ac 12-14 09:34:46.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | [232 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039c7e0 1 [0xc4200260b0]}) Writers]} +orderer.example.com | [233 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [234 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [235 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [3cf 12-14 09:34:47.11 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 | [3ad 12-14 09:34:46.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org1.example.com | [34c 12-14 09:34:46.58 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 | [34d 12-14 09:34:46.58 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 | [34e 12-14 09:34:46.58 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 | [3bf 12-14 09:34:47.31 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 | [3c0 12-14 09:34:47.31 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 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [34f 12-14 09:34:46.58 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 | [3ae 12-14 09:34:46.71 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 | [236 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [237 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0ABC060A1B08011A0608AF8BC9D10522...07526561646572731A0641646D696E73 +orderer.example.com | [238 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: E68BC6A015CC161275F6604AFB22B0AF73A68DF184AF7B05B60ADE1749C8C900 +peer0.org2.example.com | [3d0 12-14 09:34:47.11 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 | [350 12-14 09:34:46.58 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 | [3af 12-14 09:34:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [3d1 12-14 09:34:47.11 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 | [3c1 12-14 09:34:47.31 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 | [3c2 12-14 09:34:47.31 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 | [3c3 12-14 09:34:47.31 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 | [239 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [23a 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [23b 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [351 12-14 09:34:46.58 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 | [352 12-14 09:34:46.58 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 | [3b0 12-14 09:34:46.71 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 | [3b1 12-14 09:34:46.71 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 | [3c4 12-14 09:34:47.31 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 | [3d2 12-14 09:34:47.11 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 | [3d3 12-14 09:34:47.11 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 | [3d4 12-14 09:34:47.11 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 | [353 12-14 09:34:46.58 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 | [354 12-14 09:34:46.58 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 | [3b2 12-14 09:34:46.71 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 | [3c5 12-14 09:34:47.31 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 | [23c 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [3d5 12-14 09:34:47.12 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 +explorer | [2017-12-14 09:35:37.817] [ERROR] Query - Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:35:38.919] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer1.org1.example.com | [355 12-14 09:34:46.58 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 | [3d6 12-14 09:34:47.12 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 12-14 09:34:47.31 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 | [3c7 12-14 09:34:47.31 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 | [3b3 12-14 09:34:46.71 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 +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [356 12-14 09:34:46.58 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 | [3d7 12-14 09:34:47.12 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 | [3d8 12-14 09:34:47.12 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 | [3d9 12-14 09:34:47.12 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 | [3c8 12-14 09:34:47.31 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 | [3b4 12-14 09:34:46.71 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 +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org2.example.com | [3da 12-14 09:34:47.12 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 | [3c9 12-14 09:34:47.31 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 | [3b5 12-14 09:34:46.71 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 | [357 12-14 09:34:46.59 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 | [23d 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +explorer | at emitErrorNT (net.js:1281:8) +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org2.example.com | [3db 12-14 09:34:47.12 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 | [3dc 12-14 09:34:47.12 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 | [3ca 12-14 09:34:47.31 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 | [3cb 12-14 09:34:47.31 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 | [23e 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +explorer | [2017-12-14 09:35:38.920] [ERROR] Helper - admin enrollment failed +explorer | [2017-12-14 09:35:38.920] [ERROR] Query - Error: Missing userContext parameter +peer1.org1.example.com | [358 12-14 09:34:46.59 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 | [3cc 12-14 09:34:47.31 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 | [3dd 12-14 09:34:47.12 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 | [3de 12-14 09:34:47.12 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 +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +orderer.example.com | [23f 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer0.org1.example.com | [3b6 12-14 09:34:46.71 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 | [3cd 12-14 09:34:47.32 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 | [359 12-14 09:34:46.59 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 | [35a 12-14 09:34:46.59 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 | [3df 12-14 09:34:47.14 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 | [3ce 12-14 09:34:47.32 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 +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org1.example.com | [35b 12-14 09:34:46.59 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 | [35c 12-14 09:34:46.59 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 | [35d 12-14 09:34:46.59 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 | [3e0 12-14 09:34:47.16 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 | [3cf 12-14 09:34:47.32 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 | [240 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer1.org1.example.com | [35e 12-14 09:34:46.59 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 | [3b7 12-14 09:34:46.71 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.org1.example.com | [3b8 12-14 09:34:46.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer1.org1.example.com | [35f 12-14 09:34:46.59 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 | [360 12-14 09:34:46.59 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 | [3d0 12-14 09:34:47.32 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 | [3d1 12-14 09:34:47.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: AnchorPeers +peer0.org2.example.com | [3e1 12-14 09:34:47.16 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 | [3e2 12-14 09:34:47.16 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 | [241 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [361 12-14 09:34:46.59 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 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [3d2 12-14 09:34:47.32 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 | [3b9 12-14 09:34:46.71 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 | [3e3 12-14 09:34:47.16 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 | [362 12-14 09:34:46.59 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 | [363 12-14 09:34:46.59 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 +explorer | [2017-12-14 09:35:38.921] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +orderer.example.com | [242 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [3e4 12-14 09:34:47.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer1.org2.example.com | [3d3 12-14 09:34:47.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.org2.example.com | [3d4 12-14 09:34:47.32 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 | [364 12-14 09:34:46.59 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 | [365 12-14 09:34:46.60 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 | [366 12-14 09:34:46.60 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 | [367 12-14 09:34:46.60 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 | [3e5 12-14 09:34:47.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org2.example.com | [3e6 12-14 09:34:47.17 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 160): Error: Cannot save null userContext. +peer0.org1.example.com | [3ba 12-14 09:34:46.71 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 | [3bb 12-14 09:34:46.71 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 | [3d5 12-14 09:34:47.32 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 | [3e7 12-14 09:34: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] +peer0.org2.example.com | [3e8 12-14 09:34: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)(0xc421a07200), Data:(*common.BlockData)(0xc421aeca40), Metadata:(*common.BlockMetadata)(0xc421aeca80)}, doMVCCValidation=true +peer1.org1.example.com | [368 12-14 09:34:46.62 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org2.example.com | [3d6 12-14 09:34:47.32 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 | [3e9 12-14 09:34: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 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [369 12-14 09:34:46.64 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 | [36a 12-14 09:34:46.64 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 | [3bc 12-14 09:34:46.71 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 | [3ea 12-14 09:34:47.17 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 | [3d7 12-14 09:34:47.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: AnchorPeers +peer1.org2.example.com | [3d8 12-14 09:34:47.32 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 | [3d9 12-14 09:34:47.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.org2.example.com | [3da 12-14 09:34:47.32 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 | [36b 12-14 09:34:46.64 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 | [36c 12-14 09:34:46.64 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 | [36d 12-14 09:34:46.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer1.org2.example.com | [3db 12-14 09:34:47.32 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 | [3eb 12-14 09:34:47.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xa5, 0x7a, 0x12, 0x2e, 0x19, 0xe9, 0xc0, 0x3a, 0xc1, 0x3e, 0xe4, 0x92, 0xd4, 0xc9, 0x23, 0xb3, 0xc, 0x4c, 0x41, 0x28, 0x7b, 0x58, 0x93, 0x4c, 0x9f, 0x41, 0x25, 0x50, 0x7f, 0xad, 0x55, 0xe5} txOffsets= +peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=11979 +peer1.org1.example.com | [36e 12-14 09:34:46.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | ] +orderer.example.com | [243 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [244 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [245 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | [246 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +explorer | [2017-12-14 09:35:38.936] [ERROR] Query - Error: Connect Failed +peer0.org2.example.com | [3ec 12-14 09:34:47.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25768, bytesLength=11979] for tx ID: [] to index +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [36f 12-14 09:34:46.64 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org1.example.com | [370 12-14 09:34:46.64 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 | [3dc 12-14 09:34:47.32 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 | [3bd 12-14 09:34:46.71 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 +explorer | [2017-12-14 09:35:39.991] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [371 12-14 09:34:46.64 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)(0xc421c93340), Metadata:(*common.BlockMetadata)(0xc421c93380)}, doMVCCValidation=true +peer1.org1.example.com | [372 12-14 09:34:46.65 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 | [3dd 12-14 09:34:47.32 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: +peer1.org2.example.com | [3de 12-14 09:34:47.32 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 | [3df 12-14 09:34:47.33 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 | [247 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [3ed 12-14 09:34:47.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25768, bytesLength=11979] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org1.example.com | [373 12-14 09:34:46.65 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 | [248 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [249 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [24a 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [24b 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [24c 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [3be 12-14 09:34:46.71 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 | [3e0 12-14 09:34:47.34 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +peer1.org2.example.com | [3e1 12-14 09:34:47.34 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 | [3ee 12-14 09:34:47.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39507], isChainEmpty=[false], lastBlockNumber=[2] +peer0.org2.example.com | [3ef 12-14 09:34:47.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) +peer1.org1.example.com | [374 12-14 09:34:46.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x81, 0xc1, 0xf4, 0xbc, 0xce, 0xfe, 0xcf, 0xba, 0xa, 0x88, 0xde, 0x5c, 0x57, 0x53, 0xcf, 0x5d, 0xef, 0xb6, 0x4c, 0x49, 0x24, 0x89, 0xc2, 0x64, 0x6c, 0x98, 0xc7, 0xd6, 0x74, 0x70, 0xc, 0xfa} txOffsets= +peer0.org1.example.com | [3bf 12-14 09:34:46.71 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 | [24d 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org2.example.com | [3e2 12-14 09:34:47.34 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +explorer | at emitErrorNT (net.js:1281:8) +peer0.org2.example.com | [3f0 12-14 09:34:47.17 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 | [24e 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [3c0 12-14 09:34:46.71 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 | txId= locPointer=offset=70, bytesLength=11922 +peer1.org2.example.com | [3e3 12-14 09:34:47.34 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 | [3e4 12-14 09:34:47.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer1.org2.example.com | [3e5 12-14 09:34:47.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +orderer.example.com | [24f 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [250 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [251 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [3c1 12-14 09:34:46.71 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" +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +explorer | [2017-12-14 09:35:39.991] [ERROR] Helper - admin enrollment failed +explorer | [2017-12-14 09:35:39.992] [ERROR] Query - Error: Missing userContext parameter +peer0.org1.example.com | [3c2 12-14 09:34:46.71 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 | [252 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [3e6 12-14 09:34:47.34 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org1.example.com | ] +peer0.org2.example.com | [3f1 12-14 09:34:47.17 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 +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org1.example.com | [3c3 12-14 09:34:46.71 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 | [253 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org2.example.com | [3e7 12-14 09:34:47.34 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 | [375 12-14 09:34:46.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12016, bytesLength=11922] for tx ID: [] to index +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer0.org1.example.com | [3c4 12-14 09:34:46.72 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 | [3f2 12-14 09:34:47.17 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 | [3e8 12-14 09:34:47.34 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)(0xc421a9bd80), Data:(*common.BlockData)(0xc421e04060), Metadata:(*common.BlockMetadata)(0xc421e040a0)}, doMVCCValidation=true +peer1.org2.example.com | [3e9 12-14 09:34:47.34 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 | [254 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [3c5 12-14 09:34:46.72 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 | [3c6 12-14 09:34:46.72 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 | [376 12-14 09:34:46.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12016, bytesLength=11922] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org1.example.com | [377 12-14 09:34:46.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25698], isChainEmpty=[false], lastBlockNumber=[1] +orderer.example.com | [255 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [256 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [257 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [258 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +orderer.example.com | [259 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org1.example.com | [3c7 12-14 09:34:46.73 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 | [3ea 12-14 09:34:47.34 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 | [3eb 12-14 09:34:47.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xa5, 0x7a, 0x12, 0x2e, 0x19, 0xe9, 0xc0, 0x3a, 0xc1, 0x3e, 0xe4, 0x92, 0xd4, 0xc9, 0x23, 0xb3, 0xc, 0x4c, 0x41, 0x28, 0x7b, 0x58, 0x93, 0x4c, 0x9f, 0x41, 0x25, 0x50, 0x7f, 0xad, 0x55, 0xe5} txOffsets= +peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=11979 +peer1.org2.example.com | ] +orderer.example.com | [25a 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | [25b 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | [25c 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | [25d 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [3c8 12-14 09:34:46.73 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" +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | [2017-12-14 09:35:39.992] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer1.org1.example.com | [378 12-14 09:34:46.66 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 | [379 12-14 09:34:46.66 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 | [3c9 12-14 09:34:46.73 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" +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer1.org2.example.com | [3ec 12-14 09:34:47.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25768, bytesLength=11979] for tx ID: [] to index +peer1.org1.example.com | [37a 12-14 09:34:46.66 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 | [37b 12-14 09:34:46.66 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 | [37c 12-14 09:34:46.66 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 +orderer.example.com | [25e 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [3ed 12-14 09:34:47.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25768, bytesLength=11979] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org2.example.com | [3f3 12-14 09:34:47.17 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 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org1.example.com | [37d 12-14 09:34:46.67 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 | [25f 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [3ca 12-14 09:34:46.73 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 | [3cb 12-14 09:34:46.73 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 | [3cc 12-14 09:34:46.73 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 | [260 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [261 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [262 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [37e 12-14 09:34:46.67 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 | [3ee 12-14 09:34:47.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39507], isChainEmpty=[false], lastBlockNumber=[2] +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 163): Error: Cannot save null userContext. +peer0.org1.example.com | [3cd 12-14 09:34:46.73 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 | [3ce 12-14 09:34:46.73 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 | [3cf 12-14 09:34:46.73 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 | [263 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [3ef 12-14 09:34:47.35 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 | [3f0 12-14 09:34:47.35 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 | [3f1 12-14 09:34:47.35 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 | [3f2 12-14 09:34:47.35 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 | [3f3 12-14 09:34:47.35 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 | [3d0 12-14 09:34:46.73 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 | [3d1 12-14 09:34:46.73 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 | [264 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [37f 12-14 09:34:46.67 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org2.example.com | [3f4 12-14 09:34:47.17 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 | [3f5 12-14 09:34:47.17 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 | [3f6 12-14 09:34:47.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [3d2 12-14 09:34:46.73 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 | [265 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [3f4 12-14 09:34:47.35 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 | [3f5 12-14 09:34:47.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 [2] +peer1.org2.example.com | [3f6 12-14 09:34:47.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org2.example.com | [3f7 12-14 09:34:47.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] +peer1.org1.example.com | [380 12-14 09:34:46.67 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] +peer0.org1.example.com | [3d3 12-14 09:34:46.73 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [266 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +peer1.org1.example.com | [381 12-14 09:34:46.67 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer0.org1.example.com | [3d4 12-14 09:34:46.73 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 | [3d5 12-14 09:34:46.73 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 | [267 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +peer1.org1.example.com | [382 12-14 09:34:46.67 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [383 12-14 09:34:46.67 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org1.example.com | [384 12-14 09:34:46.67 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org1.example.com | [385 12-14 09:34:46.67 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org1.example.com | [386 12-14 09:34:46.67 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [3d6 12-14 09:34:46.73 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 +orderer.example.com | [268 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +peer1.org2.example.com | [3f8 12-14 09:34:47.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org2.example.com | [3f7 12-14 09:34:47.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [3d7 12-14 09:34:46.74 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 | [269 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer1.org1.example.com | [387 12-14 09:34:46.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org1.example.com | [388 12-14 09:34:46.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org1.example.com | [389 12-14 09:34:46.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421c3edb0 +orderer.example.com | [26a 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org2.example.com | [3f8 12-14 09:34:47.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org1.example.com | [3d8 12-14 09:34:46.74 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 +explorer | [2017-12-14 09:35:40.004] [ERROR] Query - Error: Connect Failed +peer1.org1.example.com | [38a 12-14 09:34:46.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\263\213\311\321\005\"\017businesschannel" signature_header:"\n\377\005\n\nOrdererMSP\022\360\005-----BEGIN -----\nMIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL\ngVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX\nKhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U\niXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv\nTg==\n-----END -----\n\022\030\252\350\377\306\217,\205<=\251z:$P[\024\225\354\373\337a\225&>" +peer1.org1.example.com | [38b 12-14 09:34:46.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +orderer.example.com | [26b 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [26c 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [3f9 12-14 09:34:47.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [3fa 12-14 09:34:47.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org1.example.com | [3d9 12-14 09:34:46.74 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 | [26d 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org2.example.com | [3fb 12-14 09:34:47.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [3da 12-14 09:34:46.74 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 | [38c 12-14 09:34:46.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [38d 12-14 09:34:46.68 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP fcb073bba41aef05a6a567ffd435bf0e89d43a1afdb7dbf96245382288964c63} +peer1.org1.example.com | [38e 12-14 09:34:46.68 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [38f 12-14 09:34:46.68 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [26e 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [26f 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [270 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [271 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +peer1.org2.example.com | [3fc 12-14 09:34:47.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org1.example.com | [3db 12-14 09:34:46.74 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 | [3dc 12-14 09:34:46.74 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 | [390 12-14 09:34:46.68 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421a13000, header channel_header:"\010\001\032\006\010\263\213\311\321\005\"\017businesschannel" signature_header:"\n\377\005\n\nOrdererMSP\022\360\005-----BEGIN -----\nMIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL\ngVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX\nKhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U\niXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv\nTg==\n-----END -----\n\022\030\252\350\377\306\217,\205<=\251z:$P[\024\225\354\373\337a\225&>" +peer1.org1.example.com | [391 12-14 09:34:46.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [392 12-14 09:34:46.68 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 | [393 12-14 09:34:46.68 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 | [394 12-14 09:34:46.68 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 | [272 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +peer0.org1.example.com | [3dd 12-14 09:34:46.74 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 | [3de 12-14 09:34:46.74 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 | [3fd 12-14 09:34:48.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg -> WARN StateInfo message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\213\231\210\303\247\202\035p\326M\331\023|\367We\277\306\"\3221s:uk~\3760\267\220tC" channel_MAC:"\031\303 \351\347y\325\200\330\341yH^\267\221\321\236\025\020\236\005*\247J\376\246\013_G\240\203\342" > , Envelope: 105 bytes, Signature: 71 bytes is found invalid: PKIID wasn't found +peer1.org2.example.com | [3fe 12-14 09:34:48.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\213\231\210\303\247\202\035p\326M\331\023|\367We\277\306\"\3221s:uk~\3760\267\220tC" channel_MAC:"\031\303 \351\347y\325\200\330\341yH^\267\221\321\236\025\020\236\005*\247J\376\246\013_G\240\203\342" > , Envelope: 105 bytes, Signature: 71 bytes isn't valid +peer0.org2.example.com | [3f9 12-14 09:34:47.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [395 12-14 09:34:46.68 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 | [273 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [274 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [3df 12-14 09:34:46.74 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 | [3ff 12-14 09:34:48.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage -> DEBU Don't have StateInfo message of peer 172.21.0.5:7051 [15 250 74 86 255 134 183 7 249 123 23 20 73 177 218 37 180 227 77 207 22 52 106 103 14 226 123 248 37 214 6 88] +peer1.org2.example.com | [400 12-14 09:34:49.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer ���ç�p�M�|�We��"�1s:uk~�0��tC message sent from W�(����v e��b +peer1.org1.example.com | [396 12-14 09:34:46.68 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 | [3fa 12-14 09:34:47.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org1.example.com | [3e0 12-14 09:34:46.74 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 | [3e1 12-14 09:34:46.74 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 | [275 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | k*���\������� +peer1.org1.example.com | [397 12-14 09:34:46.68 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 | [398 12-14 09:34:46.68 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 | [3e2 12-14 09:34:46.74 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 | [276 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +explorer | [2017-12-14 09:35:41.060] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [401 12-14 09:34:49.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer ���ç�p�M�|�We��"�1s:uk~�0��tC message sent from �JV����{I��%��M�4jg�{�%�X +peer1.org2.example.com | [402 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org1.example.com | [3e3 12-14 09:34:46.74 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 | [3e4 12-14 09:34:46.74 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 | [3e5 12-14 09:34:46.74 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 | [3e6 12-14 09:34:46.75 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 | [277 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [278 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [279 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy ChannelCreationPolicy for Application +orderer.example.com | [27a 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [3e7 12-14 09:34:46.75 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 | [403 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421a8c270 +peer1.org1.example.com | [399 12-14 09:34:46.69 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 12-14 09:34:47.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +orderer.example.com | [27b 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [39a 12-14 09:34:46.69 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 | [3e8 12-14 09:34:46.75 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 | [27c 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [404 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [3e9 12-14 09:34:46.75 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 | [27d 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [39b 12-14 09:34:46.69 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 +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org1.example.com | [3ea 12-14 09:34:46.75 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 | [27e 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [27f 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [280 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +peer0.org2.example.com | [3fc 12-14 09:34:47.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +explorer | at emitErrorNT (net.js:1281:8) +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer0.org1.example.com | [3eb 12-14 09:34:46.75 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 | [281 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [282 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [283 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [284 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [285 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [286 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [3ec 12-14 09:34:46.75 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 +explorer | [2017-12-14 09:35:41.061] [ERROR] Helper - admin enrollment failed +peer1.org2.example.com | [405 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [406 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} +peer1.org2.example.com | [407 12-14 09:34:49.48 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 | [287 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [288 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [289 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +peer0.org1.example.com | [3ed 12-14 09:34:46.75 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 | [39c 12-14 09:34:46.69 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 | [3fd 12-14 09:34:48.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org2.example.com | [408 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [3ee 12-14 09:34:46.75 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 | [28a 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +peer1.org1.example.com | [39d 12-14 09:34:46.69 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 | [409 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421b49d10, header 0xc421a8c2a0 +explorer | [2017-12-14 09:35:41.061] [ERROR] Query - Error: Missing userContext parameter +peer0.org2.example.com | [3fe 12-14 09:34:48.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4217bdb90 +peer0.org1.example.com | [3ef 12-14 09:34:46.76 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 | [3f0 12-14 09:34:46.76 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 | [40a 12-14 09:34:49.48 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 | [40b 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 136e9353599a7ddd04e205c48b0b52cfa4acdf1b77e374f2b474d596b7fb285a +orderer.example.com | [28b 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org2.example.com | [3ff 12-14 09:34:48.97 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 | [3f1 12-14 09:34:46.77 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: +peer1.org1.example.com | [39e 12-14 09:34:46.69 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 | [40c 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 136e9353599a7ddd04e205c48b0b52cfa4acdf1b77e374f2b474d596b7fb285a channel id: +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +orderer.example.com | [28c 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [400 12-14 09:34:48.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [3f2 12-14 09:34:46.77 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 | [39f 12-14 09:34:46.69 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 | [40d 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 136e9353599a7ddd04e205c48b0b52cfa4acdf1b77e374f2b474d596b7fb285a channel id: version: 1.0.5 +orderer.example.com | [28d 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer0.org2.example.com | [401 12-14 09:34:48.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} +peer0.org1.example.com | [3f3 12-14 09:34:46.81 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 | [3a0 12-14 09:34:46.69 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 | [40e 12-14 09:34:49.48 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.5,txid=136e9353599a7ddd04e205c48b0b52cfa4acdf1b77e374f2b474d596b7fb285a,syscc=true,proposal=0xc421b49d10,canname=lscc:1.0.5 +orderer.example.com | [28e 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org2.example.com | [402 12-14 09:34:48.97 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 | [3f4 12-14 09:34:46.85 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 | [40f 12-14 09:34:49.48 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.5 +peer1.org1.example.com | [3a1 12-14 09:34:46.69 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 | [28f 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +explorer | [2017-12-14 09:35:41.061] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer0.org1.example.com | [3f5 12-14 09:34:46.85 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 | [410 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [403 12-14 09:34:48.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [3a2 12-14 09:34:46.69 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 | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer0.org1.example.com | [3f6 12-14 09:34:46.85 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 | [411 12-14 09:34:49.48 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.5 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [404 12-14 09:34:48.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421fde1e0, header 0xc4217bdbc0 +peer1.org1.example.com | [3a3 12-14 09:34:46.69 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 | [412 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [136e9353]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org1.example.com | [3a4 12-14 09:34:46.69 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 | [405 12-14 09:34:48.97 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 | [413 12-14 09:34:49.48 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... +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 166): Error: Cannot save null userContext. +peer0.org1.example.com | [3f7 12-14 09:34:46.85 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 | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +peer1.org1.example.com | [3a5 12-14 09:34:46.69 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 +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [3f8 12-14 09:34:46.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer1.org2.example.com | [414 12-14 09:34:49.48 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 | [406 12-14 09:34:48.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: f2fad119f2102a315be5b379cac1b65382e7f7b0fe52805b5c6b22077b94499e +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer0.org1.example.com | [3f9 12-14 09:34:46.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org1.example.com | [3a6 12-14 09:34:46.69 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 | [415 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [136e9353]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org1.example.com | [3fa 12-14 09:34:46.85 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org2.example.com | [407 12-14 09:34:48.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: f2fad119f2102a315be5b379cac1b65382e7f7b0fe52805b5c6b22077b94499e channel id: +peer1.org1.example.com | [3a7 12-14 09:34:46.69 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 | [416 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [136e9353]Move state message TRANSACTION +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +peer0.org1.example.com | [3fb 12-14 09:34:46.85 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 | [3a8 12-14 09:34:46.69 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 | [417 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [136e9353]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [408 12-14 09:34:48.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f2fad119f2102a315be5b379cac1b65382e7f7b0fe52805b5c6b22077b94499e channel id: version: 1.0.5 +peer0.org1.example.com | [3fc 12-14 09:34:46.85 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)(0xc42196ba40), Data:(*common.BlockData)(0xc421a06bc0), Metadata:(*common.BlockMetadata)(0xc421a06c00)}, doMVCCValidation=true +orderer.example.com | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +explorer | [2017-12-14 09:35:41.071] [ERROR] Query - Error: Connect Failed +peer1.org1.example.com | [3a9 12-14 09:34:46.69 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 | [418 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [409 12-14 09:34:48.97 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.5,txid=f2fad119f2102a315be5b379cac1b65382e7f7b0fe52805b5c6b22077b94499e,syscc=true,proposal=0xc421fde1e0,canname=lscc:1.0.5 +peer0.org1.example.com | [3fd 12-14 09:34:46.85 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 | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [419 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [136e9353]sending state message TRANSACTION +peer1.org1.example.com | [3aa 12-14 09:34:46.69 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 | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +peer0.org1.example.com | [3fe 12-14 09:34:46.85 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 | [40a 12-14 09:34:48.97 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.5 +explorer | [2017-12-14 09:35:42.159] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer1.org1.example.com | [3ab 12-14 09:34:46.69 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 | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +peer0.org1.example.com | [3ff 12-14 09:34:46.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xa5, 0x7a, 0x12, 0x2e, 0x19, 0xe9, 0xc0, 0x3a, 0xc1, 0x3e, 0xe4, 0x92, 0xd4, 0xc9, 0x23, 0xb3, 0xc, 0x4c, 0x41, 0x28, 0x7b, 0x58, 0x93, 0x4c, 0x9f, 0x41, 0x25, 0x50, 0x7f, 0xad, 0x55, 0xe5} txOffsets= +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer0.org2.example.com | [40b 12-14 09:34:48.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [41a 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [136e9353]Received message TRANSACTION from shim +peer1.org1.example.com | [3ac 12-14 09:34:46.70 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 | txId= locPointer=offset=70, bytesLength=11979 +explorer | at emitOne (events.js:96:13) +orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +peer1.org1.example.com | [3ad 12-14 09:34:46.70 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 | ] +explorer | at ClientRequest.emit (events.js:188:7) +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [41b 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [136e9353]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [3ae 12-14 09:34:46.70 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 | [400 12-14 09:34:46.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25768, bytesLength=11979] for tx ID: [] to index +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org2.example.com | [41c 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [136e9353]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [40c 12-14 09:34:48.97 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.5 +peer1.org1.example.com | [3af 12-14 09:34:46.70 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 | [3b0 12-14 09:34:46.70 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 | [290 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [41d 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [136e9353]Transaction completed. Sending COMPLETED +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [40d 12-14 09:34:48.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f2fad119]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [401 12-14 09:34:46.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25768, bytesLength=11979] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org1.example.com | [3b1 12-14 09:34:46.70 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 | [41e 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [136e9353]Move state message COMPLETED +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +peer0.org2.example.com | [40e 12-14 09:34:48.97 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 | [402 12-14 09:34:46.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=[39507], isChainEmpty=[false], lastBlockNumber=[2] +peer1.org2.example.com | [41f 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [136e9353]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at TLSSocket.emit (events.js:188:7) +peer1.org1.example.com | [3b2 12-14 09:34:46.70 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 | [403 12-14 09:34:46.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +explorer | at emitErrorNT (net.js:1281:8) +peer0.org2.example.com | [40f 12-14 09:34:48.97 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 | [404 12-14 09:34:46.85 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 | [3b3 12-14 09:34:46.70 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 | [420 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [136e9353]send state message COMPLETED +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org1.example.com | [405 12-14 09:34:46.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 +peer1.org1.example.com | [3b4 12-14 09:34:46.70 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 | [410 12-14 09:34:48.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f2fad119]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [421 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [136e9353]Received message COMPLETED from shim +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [406 12-14 09:34:46.86 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 | [3b5 12-14 09:34:46.70 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 | [411 12-14 09:34:48.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f2fad119]Move state message TRANSACTION +peer1.org2.example.com | [422 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [136e9353]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer0.org1.example.com | [407 12-14 09:34:46.86 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 | [3b6 12-14 09:34:46.70 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 | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +peer0.org2.example.com | [412 12-14 09:34:48.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f2fad119]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [423 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [136e9353599a7ddd04e205c48b0b52cfa4acdf1b77e374f2b474d596b7fb285a]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [408 12-14 09:34:46.86 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 | [3b7 12-14 09:34:46.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +explorer | [2017-12-14 09:35:42.159] [ERROR] Helper - admin enrollment failed +peer1.org2.example.com | [424 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:136e9353599a7ddd04e205c48b0b52cfa4acdf1b77e374f2b474d596b7fb285a +peer0.org2.example.com | [413 12-14 09:34:48.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [409 12-14 09:34:46.86 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 | [3b8 12-14 09:34:46.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +explorer | [2017-12-14 09:35:42.160] [ERROR] Query - Error: Missing userContext parameter +peer0.org2.example.com | [414 12-14 09:34:48.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f2fad119]sending state message TRANSACTION +peer0.org1.example.com | [40a 12-14 09:34:46.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org1.example.com | [3b9 12-14 09:34:46.70 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 | [425 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org1.example.com | [40b 12-14 09:34:46.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] +peer1.org1.example.com | [3ba 12-14 09:34:46.70 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 | [415 12-14 09:34:48.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f2fad119]Received message TRANSACTION from shim +peer0.org1.example.com | [40c 12-14 09:34:46.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org1.example.com | [3bb 12-14 09:34:46.70 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 | [426 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [40d 12-14 09:34:46.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [427 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org1.example.com | [3bc 12-14 09:34:46.70 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 | [40e 12-14 09:34:46.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +peer0.org2.example.com | [416 12-14 09:34:48.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f2fad119]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [3bd 12-14 09:34:46.70 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 | [40f 12-14 09:34:46.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org2.example.com | [428 12-14 09:34:49.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer1.org1.example.com | [3be 12-14 09:34:46.70 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 | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +peer0.org2.example.com | [417 12-14 09:34:48.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f2fad119]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [410 12-14 09:34:46.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org1.example.com | [3bf 12-14 09:34:46.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [429 12-14 09:34:50.29 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.org1.example.com | [411 12-14 09:34:46.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org1.example.com | [3c0 12-14 09:34:46.71 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 | [418 12-14 09:34:48.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f2fad119]Transaction completed. Sending COMPLETED +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +peer1.org2.example.com | [42a 12-14 09:34:50.29 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.org1.example.com | [412 12-14 09:34:46.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42208e2d0 +peer1.org1.example.com | [3c1 12-14 09:34:46.71 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 +explorer | [2017-12-14 09:35:42.160] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer1.org2.example.com | [42b 12-14 09:34:51.95 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Entering +peer0.org2.example.com | [419 12-14 09:34:48.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f2fad119]Move state message COMPLETED +peer1.org1.example.com | [3c2 12-14 09:34:46.71 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 | [413 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer1.org1.example.com | [3c3 12-14 09:34:46.71 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 | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +peer0.org1.example.com | [414 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [42d 12-14 09:34:51.95 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Exiting +peer1.org1.example.com | [3c4 12-14 09:34:46.71 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 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [41a 12-14 09:34:48.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f2fad119]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [415 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} +peer1.org1.example.com | [3c5 12-14 09:34:46.71 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 +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 169): Error: Cannot save null userContext. +peer1.org2.example.com | [42c 12-14 09:34:51.95 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Entering +peer1.org1.example.com | [3c6 12-14 09:34:46.71 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 | [416 12-14 09:34:46.87 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 | [42f 12-14 09:34:51.95 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Exiting +peer1.org1.example.com | [3c7 12-14 09:34:46.71 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 | [41b 12-14 09:34:48.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f2fad119]send state message COMPLETED +orderer.example.com | [291 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [417 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [42e 12-14 09:34:51.95 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 | [3c8 12-14 09:34:46.71 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" +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org1.example.com | [418 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421f41860, header 0xc42208e300 +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +peer1.org1.example.com | [3c9 12-14 09:34:46.71 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 | [41c 12-14 09:34:48.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f2fad119]Received message COMPLETED from shim +peer1.org2.example.com | [430 12-14 09:34:51.96 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try -> WARN Got error: rpc error: code = Canceled desc = context canceled ,at 1 attempt. Retrying in 1s +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [419 12-14 09:34:46.87 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 | [3ca 12-14 09:34:46.71 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 | [41d 12-14 09:34:48.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f2fad119]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org1.example.com | [3cb 12-14 09:34:46.71 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 | [41a 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 9938790236d17cafcf196e8743803007b7c1c08f35651885de897d10ebe00f12 +peer1.org2.example.com | [431 12-14 09:34:51.96 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> WARN [businesschannel] Receive error: Client is closing +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer0.org2.example.com | [41e 12-14 09:34:48.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f2fad119f2102a315be5b379cac1b65382e7f7b0fe52805b5c6b22077b94499e]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [3cc 12-14 09:34:46.71 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 | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +peer0.org1.example.com | [41b 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 9938790236d17cafcf196e8743803007b7c1c08f35651885de897d10ebe00f12 channel id: +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [3cd 12-14 09:34:46.71 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 | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org2.example.com | [41f 12-14 09:34:48.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f2fad119f2102a315be5b379cac1b65382e7f7b0fe52805b5c6b22077b94499e +peer1.org2.example.com | [432 12-14 09:34:51.96 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Entering +peer0.org1.example.com | [41c 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 9938790236d17cafcf196e8743803007b7c1c08f35651885de897d10ebe00f12 channel id: version: 1.0.5 +explorer | [2017-12-14 09:35:42.174] [ERROR] Query - Error: Connect Failed +peer1.org1.example.com | [3ce 12-14 09:34:46.71 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 | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org2.example.com | [433 12-14 09:34:51.96 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Exiting +peer0.org1.example.com | [41d 12-14 09:34:46.87 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.5,txid=9938790236d17cafcf196e8743803007b7c1c08f35651885de897d10ebe00f12,syscc=true,proposal=0xc421f41860,canname=lscc:1.0.5 +peer0.org2.example.com | [420 12-14 09:34:48.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [3cf 12-14 09:34:46.71 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" +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +peer0.org1.example.com | [41e 12-14 09:34:46.87 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.5 +peer1.org1.example.com | [3d0 12-14 09:34:46.71 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 | [41f 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [421 12-14 09:34:48.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [434 12-14 09:35:13.07 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org1.example.com | [3d1 12-14 09:34:46.71 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" +explorer | [2017-12-14 09:35:43.267] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org2.example.com | [435 12-14 09:35:13.07 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +peer1.org2.example.com | [436 12-14 09:35:13.07 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org1.example.com | [420 12-14 09:34:46.87 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.5 +peer0.org2.example.com | [422 12-14 09:34:48.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org1.example.com | [3d2 12-14 09:34:46.72 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 | [421 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [99387902]Inside sendExecuteMessage. Message TRANSACTION +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [422 12-14 09:34:46.87 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 | [3d3 12-14 09:34:46.72 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 | [423 12-14 09:34:48.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org2.example.com | [437 12-14 09:35:13.07 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421dc3ef0 +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +peer0.org1.example.com | [423 12-14 09:34:46.87 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... +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org2.example.com | [424 12-14 09:35:11.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org2.example.com | [438 12-14 09:35:13.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\271\213\311\321\005\020\214\333\221\310\003\"\017businesschannel*@666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030{\277\345\243\303\256\022\021\311B\363\266in\2428c\364\274\237\211\\x)" +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org1.example.com | [3d4 12-14 09:34:46.72 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 | [439 12-14 09:35:13.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [43a 12-14 09:35:13.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [425 12-14 09:35:11.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42223a6c0 +peer1.org1.example.com | [3d5 12-14 09:34:46.72 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 | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +peer0.org1.example.com | [424 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [99387902]sendExecuteMsg trigger event TRANSACTION +explorer | at TLSSocket.emit (events.js:188:7) +peer1.org2.example.com | [43b 12-14 09:35:13.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} +peer0.org2.example.com | [426 12-14 09:35:11.11 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 | [3d6 12-14 09:34:46.73 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 | [425 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [99387902]Move state message TRANSACTION +explorer | at emitErrorNT (net.js:1281:8) +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [3d7 12-14 09:34:46.73 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 | [43c 12-14 09:35:13.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [427 12-14 09:35:11.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer1.org1.example.com | [3d8 12-14 09:34:46.73 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 | [292 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org1.example.com | [426 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [99387902]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [43d 12-14 09:35:13.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer0.org2.example.com | [428 12-14 09:35:11.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} +peer1.org1.example.com | [3d9 12-14 09:34:46.73 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" +explorer | [2017-12-14 09:35:43.268] [ERROR] Helper - admin enrollment failed +peer0.org1.example.com | [427 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [293 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +peer0.org2.example.com | [429 12-14 09:35:11.11 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 | [43e 12-14 09:35:13.10 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421c0c000, header channel_header:"\010\003\032\014\010\271\213\311\321\005\020\214\333\221\310\003\"\017businesschannel*@666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030{\277\345\243\303\256\022\021\311B\363\266in\2428c\364\274\237\211\\x)" +peer0.org1.example.com | [428 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [99387902]sending state message TRANSACTION +orderer.example.com | [294 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [43f 12-14 09:35:13.10 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org2.example.com | [42a 12-14 09:35:11.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [3da 12-14 09:34:46.73 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +explorer | [2017-12-14 09:35:43.269] [ERROR] Query - Error: Missing userContext parameter +orderer.example.com | [295 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [429 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99387902]Received message TRANSACTION from shim +peer1.org1.example.com | [3db 12-14 09:34:46.73 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 | [440 12-14 09:35:13.10 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +orderer.example.com | [296 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +peer0.org1.example.com | [42a 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [99387902]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [42b 12-14 09:35:11.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4221f9b80, header 0xc42223a6f0 +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org1.example.com | [3dc 12-14 09:34:46.73 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 | [441 12-14 09:35:13.10 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [42b 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [99387902]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [297 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [42c 12-14 09:35:11.11 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 | [3dd 12-14 09:34:46.73 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 +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer1.org2.example.com | [442 12-14 09:35:13.10 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [42c 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99387902]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [42d 12-14 09:35:11.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d +orderer.example.com | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [3de 12-14 09:34:46.73 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 | [443 12-14 09:35:13.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b] +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [42d 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99387902]Move state message COMPLETED +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [42e 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [99387902]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [42f 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99387902]send state message COMPLETED +peer0.org1.example.com | [430 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [99387902]Received message COMPLETED from shim +peer0.org1.example.com | [431 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [99387902]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [432 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9938790236d17cafcf196e8743803007b7c1c08f35651885de897d10ebe00f12]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [444 12-14 09:35:13.10 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [445 12-14 09:35:13.10 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 | [446 12-14 09:35:13.10 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 [a7df8b9c-3c74-4480-b15d-36d42264ede9] +peer1.org1.example.com | [3df 12-14 09:34:46.73 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 +explorer | [2017-12-14 09:35:43.270] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer0.org1.example.com | [433 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9938790236d17cafcf196e8743803007b7c1c08f35651885de897d10ebe00f12 +peer0.org1.example.com | [434 12-14 09:34:46.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 | [435 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [436 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 +peer0.org1.example.com | [437 12-14 09:34:46.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +orderer.example.com | +/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer1.org1.example.com | [3e0 12-14 09:34:46.73 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 | [3e1 12-14 09:34:46.73 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 | [3e2 12-14 09:34:46.73 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 | [3e3 12-14 09:34:46.73 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 | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN +peer0.org1.example.com | [438 12-14 09:34:49.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org1.example.com | [439 12-14 09:34:49.95 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421537230 +peer0.org1.example.com | [43a 12-14 09:34:49.95 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 | [42e 12-14 09:35:11.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d] +peer1.org1.example.com | [3e4 12-14 09:34:46.73 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 | wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 +orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL +orderer.example.com | liPpNxLSsBU= +peer0.org1.example.com | [43b 12-14 09:34:49.95 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [42f 12-14 09:35:11.11 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 | [3e5 12-14 09:34:46.73 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 | [3e6 12-14 09:34:46.74 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 | [447 12-14 09:35:13.10 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=149b51f6-be46-40b8-ad4f-2ac54332fc6f,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer1.org2.example.com | [448 12-14 09:35:13.10 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b chaindID businesschannel +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [430 12-14 09:35:11.11 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 [540ad313-75cb-46e8-a6cb-5aa13f663152] +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer1.org1.example.com | [3e7 12-14 09:34:46.74 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 | [3e8 12-14 09:34:46.74 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 | [3e9 12-14 09:34:46.74 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 | [43c 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} +peer0.org2.example.com | [431 12-14 09:35:11.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d channel id: businesschannel +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [449 12-14 09:35:13.10 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.5 +peer0.org1.example.com | [43d 12-14 09:34:49.96 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 | [43e 12-14 09:34:49.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 | [43f 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422021ae0, header 0xc421537260 +peer0.org1.example.com | [440 12-14 09:34:49.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:"lscc" +orderer.example.com | [298 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [441 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b +peer1.org1.example.com | [3ea 12-14 09:34:46.74 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 | [432 12-14 09:35:11.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d channel id: businesschannel version: 1.0.5 +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 172): Error: Cannot save null userContext. +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [433 12-14 09:35:11.11 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.5,txid=d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d,syscc=true,proposal=0xc4221f9b80,canname=lscc:1.0.5 +peer0.org1.example.com | [442 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b] +peer0.org1.example.com | [443 12-14 09:34:49.96 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 | [444 12-14 09:34:49.96 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 [8e1c7cae-f772-4431-99eb-88de72317798] +peer0.org1.example.com | [445 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b channel id: businesschannel +peer0.org1.example.com | [446 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b channel id: businesschannel version: 1.0.5 +peer0.org1.example.com | [447 12-14 09:34:49.96 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.5,txid=666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b,syscc=true,proposal=0xc422021ae0,canname=lscc:1.0.5 +peer0.org1.example.com | [448 12-14 09:34:49.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) : lscc:1.0.5 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [299 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +peer0.org1.example.com | [449 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [44a 12-14 09:34:49.96 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.5 +peer0.org1.example.com | [44b 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [666265f2]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [44c 12-14 09:34:49.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... +peer0.org2.example.com | [434 12-14 09:35:11.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) : lscc:1.0.5 +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +peer1.org2.example.com | [44a 12-14 09:35:13.10 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [44b 12-14 09:35:13.10 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer1.org2.example.com | [44c 12-14 09:35:13.10 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [149b51f6]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [44d 12-14 09:35:13.10 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 | [44e 12-14 09:35:13.10 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [149b51f6]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [44d 12-14 09:34:49.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... +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [29a 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [29b 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [29c 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [29d 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [29e 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +peer1.org1.example.com | [3eb 12-14 09:34:46.74 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 | [3ec 12-14 09:34:46.74 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 | [3ed 12-14 09:34:46.74 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 | [3ee 12-14 09:34:46.74 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 | [3ef 12-14 09:34:46.74 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 | [3f0 12-14 09:34:46.74 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 | [3f1 12-14 09:34:46.74 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 | [29f 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [44e 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [666265f2]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [44f 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [666265f2]Move state message TRANSACTION +peer1.org2.example.com | [44f 12-14 09:35:13.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [149b51f6]Move state message TRANSACTION +peer1.org1.example.com | [3f2 12-14 09:34:46.74 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 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer0.org2.example.com | [435 12-14 09:35:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +peer0.org1.example.com | [450 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [666265f2]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [450 12-14 09:35:13.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [149b51f6]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [436 12-14 09:35:11.11 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.5 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [451 12-14 09:35:13.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [452 12-14 09:35:13.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [149b51f6]sending state message TRANSACTION +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer0.org1.example.com | [451 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [437 12-14 09:35:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d603c8c4]Inside sendExecuteMessage. Message TRANSACTION +explorer | [2017-12-14 09:35:43.284] [ERROR] Query - Error: Connect Failed +peer1.org1.example.com | [3f3 12-14 09:34:46.74 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 | [453 12-14 09:35:13.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [149b51f6]Received message TRANSACTION from shim +orderer.example.com | BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +peer0.org1.example.com | [452 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [666265f2]sending state message TRANSACTION +peer0.org2.example.com | [438 12-14 09:35:11.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... +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [454 12-14 09:35:13.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [149b51f6]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer1.org1.example.com | [3f4 12-14 09:34:46.74 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 | [453 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [666265f2]Received message TRANSACTION from shim +peer0.org2.example.com | [439 12-14 09:35:11.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 | [455 12-14 09:35:13.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [149b51f6]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +explorer | [2017-12-14 09:35:44.430] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer0.org1.example.com | [454 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [666265f2]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [3f5 12-14 09:34:46.74 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 +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer0.org2.example.com | [43a 12-14 09:35:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d603c8c4]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [456 12-14 09:35:13.10 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [3f6 12-14 09:34:46.75 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 | [43b 12-14 09:35:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d603c8c4]Move state message TRANSACTION +peer0.org1.example.com | [455 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [666265f2]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +peer1.org2.example.com | [457 12-14 09:35:13.10 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 | [43c 12-14 09:35:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d603c8c4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +explorer | at ClientRequest.emit (events.js:188:7) +peer1.org1.example.com | [3f7 12-14 09:34:46.75 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 | [458 12-14 09:35:13.11 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer0.org1.example.com | [456 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [666265f2]Sending GET_STATE +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer0.org2.example.com | [43d 12-14 09:35:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [3f8 12-14 09:34:46.75 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: +peer1.org2.example.com | [459 12-14 09:35:13.11 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +peer0.org1.example.com | [457 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [666265f2]Received message GET_STATE from shim +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [45a 12-14 09:35:13.11 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [3f9 12-14 09:34:46.76 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 | VA7fF8MfGA== +peer0.org1.example.com | [458 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [666265f2]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [43e 12-14 09:35:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d603c8c4]sending state message TRANSACTION +peer1.org1.example.com | [3fa 12-14 09:34:46.77 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 | [45b 12-14 09:35:13.11 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [3fb 12-14 09:34:46.78 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 | [459 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [666265f2]Received GET_STATE, invoking get state from ledger +orderer.example.com | [2a0 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [45c 12-14 09:35:13.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [faef7683-24c5-4aa1-852c-e0a8cae47439] +peer1.org1.example.com | [3fc 12-14 09:34:46.78 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 | [43f 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d603c8c4]Received message TRANSACTION from shim +peer0.org1.example.com | [45a 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at TLSSocket.emit (events.js:188:7) +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +peer1.org2.example.com | [45d 12-14 09:35:13.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org1.example.com | [3fd 12-14 09:34:46.78 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 | [3fe 12-14 09:34:46.78 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 | [3ff 12-14 09:34:46.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer1.org1.example.com | [400 12-14 09:34:46.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org1.example.com | [401 12-14 09:34:46.79 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org1.example.com | [402 12-14 09:34:46.79 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 | [45b 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [666265f2] getting state for chaincode lscc, key mycc, channel businesschannel +peer0.org1.example.com | [45c 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [45d 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [666265f2]No state associated with key: mycc. Sending RESPONSE with an empty payload +peer0.org1.example.com | [45e 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [666265f2]handleGetState serial send RESPONSE +peer0.org1.example.com | [45f 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [666265f2]Received message RESPONSE from shim +peer0.org1.example.com | [460 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [666265f2]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [461 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [666265f2]before send +peer0.org1.example.com | [462 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [666265f2]after send +peer0.org1.example.com | [463 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [666265f2]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [464 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [666265f2]GetState received payload RESPONSE +peer0.org1.example.com | [465 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [666265f2]Inside putstate +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [45e 12-14 09:35:13.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [faef7683-24c5-4aa1-852c-e0a8cae47439] +peer0.org1.example.com | [466 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [666265f2]Sending PUT_STATE +peer0.org1.example.com | [467 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [666265f2]Received message PUT_STATE from shim +peer0.org1.example.com | [468 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [666265f2]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org2.example.com | [440 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d603c8c4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [441 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d603c8c4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [45f 12-14 09:35:13.11 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +peer1.org2.example.com | [460 12-14 09:35:13.11 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)(0x9547d0)} +peer1.org2.example.com | [461 12-14 09:35:13.11 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer1.org2.example.com | [462 12-14 09:35:13.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [149b51f6]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [469 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [46a 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [666265f2]state is ready +peer0.org1.example.com | [46b 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [666265f2]Completed PUT_STATE. Sending RESPONSE +explorer | at emitErrorNT (net.js:1281:8) +peer1.org2.example.com | [463 12-14 09:35:13.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [149b51f6]Move state message COMPLETED +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +peer0.org1.example.com | [46c 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [666265f2]enterBusyState trigger event RESPONSE +peer1.org1.example.com | [403 12-14 09:34:46.79 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)(0xc4218d92c0), Data:(*common.BlockData)(0xc421809a60), Metadata:(*common.BlockMetadata)(0xc421809aa0)}, doMVCCValidation=true +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +peer0.org1.example.com | [46d 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [666265f2]Move state message RESPONSE +peer0.org1.example.com | [46e 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [666265f2]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer1.org2.example.com | [464 12-14 09:35:13.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [149b51f6]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [465 12-14 09:35:13.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [149b51f6]send state message COMPLETED +peer1.org2.example.com | [466 12-14 09:35:13.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [149b51f6]Received message COMPLETED from shim +peer1.org2.example.com | [467 12-14 09:35:13.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [149b51f6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [468 12-14 09:35:13.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [149b51f6-be46-40b8-ad4f-2ac54332fc6f]HandleMessage- COMPLETED. Notify +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +peer0.org1.example.com | [46f 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [404 12-14 09:34:46.79 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 | [442 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [d603c8c4]Sending GET_STATE +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer1.org2.example.com | [469 12-14 09:35:13.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:149b51f6-be46-40b8-ad4f-2ac54332fc6f +peer1.org2.example.com | [46a 12-14 09:35:13.11 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [46b 12-14 09:35:13.11 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 [a7df8b9c-3c74-4480-b15d-36d42264ede9] +peer1.org2.example.com | [46c 12-14 09:35:13.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org2.example.com | [46d 12-14 09:35:13.11 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 | [46e 12-14 09:35:13.11 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)(0xc421ccf9c0), Data:(*common.BlockData)(0xc4203641a0), Metadata:(*common.BlockMetadata)(0xc4203641e0)}, doMVCCValidation=true +peer1.org2.example.com | [46f 12-14 09:35:13.11 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 | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [2a1 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [2a2 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer0.org1.example.com | [470 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [666265f2]sending state message RESPONSE +peer1.org2.example.com | [470 12-14 09:35:13.11 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=mycc +peer1.org1.example.com | [405 12-14 09:34:46.79 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 | [406 12-14 09:34:46.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xa5, 0x7a, 0x12, 0x2e, 0x19, 0xe9, 0xc0, 0x3a, 0xc1, 0x3e, 0xe4, 0x92, 0xd4, 0xc9, 0x23, 0xb3, 0xc, 0x4c, 0x41, 0x28, 0x7b, 0x58, 0x93, 0x4c, 0x9f, 0x41, 0x25, 0x50, 0x7f, 0xad, 0x55, 0xe5} txOffsets= +peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=11979 +peer1.org1.example.com | ] +peer1.org1.example.com | [407 12-14 09:34:46.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25768, bytesLength=11979] for tx ID: [] to index +peer1.org1.example.com | [408 12-14 09:34:46.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25768, bytesLength=11979] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org1.example.com | [409 12-14 09:34:46.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39507], isChainEmpty=[false], lastBlockNumber=[2] +orderer.example.com | [2a3 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +peer0.org1.example.com | [471 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [666265f2]Received message RESPONSE from shim +peer1.org2.example.com | [471 12-14 09:35:13.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b] marked as valid by state validator +peer1.org2.example.com | [472 12-14 09:35:13.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xe8, 0xdd, 0x3a, 0xe6, 0xb8, 0x5d, 0x63, 0x1d, 0x8e, 0x54, 0xef, 0xc5, 0xa, 0x1b, 0x18, 0xb, 0x1e, 0xe6, 0x31, 0x77, 0x44, 0x87, 0xc7, 0x16, 0x8f, 0xea, 0x61, 0x39, 0xdd, 0xa3, 0xa7, 0xde} txOffsets= +peer1.org2.example.com | txId=666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b locPointer=offset=70, bytesLength=3388 +peer1.org2.example.com | ] +peer1.org2.example.com | [473 12-14 09:35:13.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39577, bytesLength=3388] for tx ID: [666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b] to index +peer1.org2.example.com | [474 12-14 09:35:13.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39577, bytesLength=3388] for tx number:[0] ID: [666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b] to blockNumTranNum index +peer1.org2.example.com | [475 12-14 09:35:13.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44726], isChainEmpty=[false], lastBlockNumber=[3] +orderer.example.com | [2a4 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +peer0.org1.example.com | [472 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [666265f2]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [473 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [666265f2]before send +peer0.org1.example.com | [474 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [666265f2]after send +peer0.org1.example.com | [475 12-14 09:34:49.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [666265f2]Received RESPONSE, communicated (state:ready) +orderer.example.com | [2a5 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [2a6 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer0.org2.example.com | [443 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d603c8c4]Received message GET_STATE from shim +peer0.org1.example.com | [476 12-14 09:34:49.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [666265f2]Received RESPONSE. Successfully updated state +peer0.org1.example.com | [477 12-14 09:34:49.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [666265f2]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [478 12-14 09:34:49.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [666265f2]Move state message COMPLETED +peer0.org1.example.com | [479 12-14 09:34:49.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [666265f2]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [47a 12-14 09:34:49.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [666265f2]send state message COMPLETED +peer0.org1.example.com | [47b 12-14 09:34:49.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [666265f2]Received message COMPLETED from shim +peer0.org1.example.com | [47c 12-14 09:34:49.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [666265f2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [47d 12-14 09:34:49.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b]HandleMessage- COMPLETED. Notify +orderer.example.com | [2a7 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [2a8 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +peer1.org1.example.com | [40a 12-14 09:34:46.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) +peer1.org1.example.com | [40b 12-14 09:34:46.80 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 | [40c 12-14 09:34:46.80 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 | [476 12-14 09:35:13.12 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 | [47e 12-14 09:34:49.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b +peer0.org1.example.com | [47f 12-14 09:34:49.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [480 12-14 09:34:49.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b,syscc=false,proposal=0xc422021ae0,canname=mycc:1.0 +peer0.org1.example.com | [481 12-14 09:34:49.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU launchAndWaitForRegister fetched 1818 bytes from file system +peer0.org1.example.com | [482 12-14 09:34:49.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched +peer0.org1.example.com | [483 12-14 09:34:49.97 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 | [484 12-14 09:34:49.98 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] +orderer.example.com | [2a9 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [485 12-14 09:34:49.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer0.org1.example.com) +peer0.org1.example.com | [486 12-14 09:34:49.98 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 +peer0.org1.example.com | [487 12-14 09:34:49.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=mycc:1.0 +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +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.org1.example.com | [488 12-14 09:34:49.98 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-mycc-1.0) lock +peer0.org1.example.com | [489 12-14 09:34:49.98 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-mycc-1.0) lock +peer0.org1.example.com | [48a 12-14 09:34:49.98 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-mycc-1.0 +peer0.org1.example.com | [48b 12-14 09:34:49.98 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org1.example.com-mycc-1.0(No such container: dev-peer0.org1.example.com-mycc-1.0) +peer0.org1.example.com | [48c 12-14 09:34:49.98 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org1.example.com-mycc-1.0 (No such container: dev-peer0.org1.example.com-mycc-1.0) +peer0.org1.example.com | [48d 12-14 09:34:49.98 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org1.example.com-mycc-1.0 (No such container: dev-peer0.org1.example.com-mycc-1.0) +peer0.org1.example.com | [48e 12-14 09:34:49.98 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org1.example.com-mycc-1.0 +peer0.org1.example.com | [48f 12-14 09:34:49.98 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v105_default +peer0.org1.example.com | [490 12-14 09:34:49.99 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 +peer0.org1.example.com | [491 12-14 09:34:49.99 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 | [492 12-14 09:34:49.99 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +peer0.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 +peer0.org1.example.com | ADD binpackage.tar /usr/local/bin +orderer.example.com | [2aa 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +peer1.org1.example.com | [40d 12-14 09:34:46.80 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 | [40e 12-14 09:34:46.80 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 | [477 12-14 09:35:13.12 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 | [444 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d603c8c4]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ +orderer.example.com | [2ab 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +explorer | [2017-12-14 09:35:44.430] [ERROR] Helper - admin enrollment failed +peer1.org2.example.com | [478 12-14 09:35:13.12 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 | [40f 12-14 09:34:46.80 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 | [445 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [d603c8c4]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +orderer.example.com | [2ac 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer1.org2.example.com | [479 12-14 09:35:13.12 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, 0x6d, 0x79, 0x63, 0x63}] +peer1.org1.example.com | [410 12-14 09:34:46.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 [2] +peer0.org2.example.com | [446 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | [2017-12-14 09:35:44.432] [ERROR] Query - Error: Missing userContext parameter +peer0.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +orderer.example.com | [2ad 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +peer1.org2.example.com | [47a 12-14 09:35:13.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer1.org1.example.com | [411 12-14 09:34:46.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org2.example.com | [447 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d603c8c4] getting state for chaincode lscc, key mycc, channel businesschannel +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org1.example.com | org.hyperledger.fabric.version="1.0.5" \ +orderer.example.com | [2ae 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer1.org2.example.com | [47b 12-14 09:35:13.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +peer0.org2.example.com | [448 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | org.hyperledger.fabric.base.version="0.3.2" +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org1.example.com | [412 12-14 09:34:46.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] +peer1.org2.example.com | [47c 12-14 09:35:13.12 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 | [449 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d603c8c4]No state associated with key: mycc. Sending RESPONSE with an empty payload +peer0.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.5 +peer1.org1.example.com | [413 12-14 09:34:46.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | [2af 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer1.org2.example.com | [47d 12-14 09:35:13.13 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 | [44a 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d603c8c4]handleGetState serial send RESPONSE +peer0.org1.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org2.example.com | [47e 12-14 09:35:13.13 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 | [44b 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d603c8c4]Received message RESPONSE from shim +orderer.example.com | [2b0 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +peer1.org1.example.com | [414 12-14 09:34:46.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt +peer1.org2.example.com | [47f 12-14 09:35:13.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org2.example.com | [44c 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d603c8c4]Handling ChaincodeMessage of type: RESPONSE(state:ready) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [493 12-14 09:34:50.00 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.5 +peer0.org2.example.com | [44d 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d603c8c4]before send +peer1.org2.example.com | [480 12-14 09:35:13.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b +orderer.example.com | [2b1 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [494 12-14 09:35:10.34 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 +peer1.org1.example.com | [415 12-14 09:34:46.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org2.example.com | [44e 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d603c8c4]after send +peer1.org2.example.com | [481 12-14 09:35:13.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] +explorer | [2017-12-14 09:35:44.432] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [495 12-14 09:35:10.34 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +peer1.org2.example.com | [482 12-14 09:35:13.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | [2b2 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +peer0.org2.example.com | [44f 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [d603c8c4]Received RESPONSE, communicated (state:ready) +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 175): Error: Cannot save null userContext. +peer0.org1.example.com | [496 12-14 09:35:10.34 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 +peer1.org1.example.com | [416 12-14 09:34:46.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org2.example.com | [483 12-14 09:35:13.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +orderer.example.com | [2b3 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org2.example.com | [450 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [d603c8c4]GetState received payload RESPONSE +peer0.org1.example.com | [497 12-14 09:35:10.42 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 +peer1.org1.example.com | [417 12-14 09:34:46.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org2.example.com | [451 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [d603c8c4]Inside putstate +orderer.example.com | [2b4 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +peer1.org2.example.com | [484 12-14 09:35:13.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org1.example.com | [498 12-14 09:35:10.95 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org1.example.com-mycc-1.0 +peer1.org1.example.com | [418 12-14 09:34:47.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org2.example.com | [452 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [d603c8c4]Sending PUT_STATE +peer1.org2.example.com | [485 12-14 09:35:13.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [499 12-14 09:35:10.95 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-mycc-1.0) +peer1.org1.example.com | [419 12-14 09:34:47.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421bf9380 +orderer.example.com | [2b5 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer1.org2.example.com | [486 12-14 09:35:13.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [453 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d603c8c4]Received message PUT_STATE from shim +peer0.org1.example.com | [49a 12-14 09:35:10.98 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 | [487 12-14 09:35:28.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org1.example.com | [41a 12-14 09:34:47.72 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 | [2b6 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +peer0.org2.example.com | [454 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d603c8c4]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer0.org1.example.com | [49b 12-14 09:35:10.98 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 | [488 12-14 09:35:28.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422690810 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [489 12-14 09:35:28.98 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 | [455 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [41b 12-14 09:34:47.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [2b7 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [49c 12-14 09:35:10.98 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 | [48a 12-14 09:35:28.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [2b8 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | [2b9 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +explorer | [2017-12-14 09:35:44.446] [ERROR] Query - Error: Connect Failed +peer1.org2.example.com | [48b 12-14 09:35:28.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} +peer0.org1.example.com | [49d 12-14 09:35:10.98 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.org2.example.com | [456 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d603c8c4]state is ready +orderer.example.com | [2ba 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +peer1.org1.example.com | [41c 12-14 09:34:47.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} +peer1.org1.example.com | [41d 12-14 09:34:47.72 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 | [41e 12-14 09:34:47.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [49e 12-14 09:35:10.98 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 mycc:1.0 +peer0.org2.example.com | [457 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d603c8c4]Completed PUT_STATE. Sending RESPONSE +orderer.example.com | [2bb 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [2bc 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [2bd 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | [2be 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | [2bf 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [2c0 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +peer0.org1.example.com | [49f 12-14 09:35:10.98 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:"mycc:1.0" , sending back REGISTERED +peer0.org1.example.com | [4a0 12-14 09:35:10.98 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 | [4a1 12-14 09:35:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed +peer1.org2.example.com | [48c 12-14 09:35:28.98 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 | [48d 12-14 09:35:28.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [48e 12-14 09:35:28.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42268a8c0, header 0xc422690840 +peer1.org2.example.com | [48f 12-14 09:35:28.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" +peer1.org2.example.com | [490 12-14 09:35:28.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 8798425c80346bce8bf0031754a54e67a52963adbc288bb7c51e218de9f75002 +peer1.org2.example.com | [491 12-14 09:35:28.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [8798425c80346bce8bf0031754a54e67a52963adbc288bb7c51e218de9f75002] +peer1.org2.example.com | [492 12-14 09:35:28.99 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 | [493 12-14 09:35:28.99 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 [101157fc-e8ed-4f9e-af56-2590ffba6ce0] +peer1.org2.example.com | [494 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 8798425c80346bce8bf0031754a54e67a52963adbc288bb7c51e218de9f75002 channel id: businesschannel +orderer.example.com | [2c1 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +peer0.org1.example.com | [4a2 12-14 09:35:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY +orderer.example.com | [2c2 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +peer0.org2.example.com | [458 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d603c8c4]enterBusyState trigger event RESPONSE +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:35:45.509] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org1.example.com | [4a3 12-14 09:35:10.98 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.org1.example.com | [4a4 12-14 09:35:10.98 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 | [4a5 12-14 09:35:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [666265f2]Move state message READY +peer0.org1.example.com | [4a6 12-14 09:35:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [666265f2]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [4a7 12-14 09:35:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [666265f2]Entered state ready +peer0.org1.example.com | [4a8 12-14 09:35:10.98 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:666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b +orderer.example.com | [2c3 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [2c4 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | [2c5 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [2c6 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | [2c7 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +orderer.example.com | [2c8 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | [2c9 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | [2ca 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | [2cb 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +orderer.example.com | [2cc 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel +orderer.example.com | [2cd 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +peer0.org1.example.com | [4a9 12-14 09:35:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [666265f2]sending state message READY +peer0.org1.example.com | [4aa 12-14 09:35:10.98 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 | [4ab 12-14 09:35:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org1.example.com | [4ac 12-14 09:35:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [41f 12-14 09:34:47.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421938a50, header 0xc421bf93b0 +peer1.org1.example.com | [420 12-14 09:34:47.72 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 | [421 12-14 09:34:47.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 00645376bafdf02bfdc987196a1d46939f3546a431c74fc970dbdb3c79176fb3 +peer1.org1.example.com | [422 12-14 09:34:47.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 00645376bafdf02bfdc987196a1d46939f3546a431c74fc970dbdb3c79176fb3 channel id: +peer1.org1.example.com | [423 12-14 09:34:47.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 00645376bafdf02bfdc987196a1d46939f3546a431c74fc970dbdb3c79176fb3 channel id: version: 1.0.5 +peer1.org1.example.com | [424 12-14 09:34:47.72 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.5,txid=00645376bafdf02bfdc987196a1d46939f3546a431c74fc970dbdb3c79176fb3,syscc=true,proposal=0xc421938a50,canname=lscc:1.0.5 +orderer.example.com | [2ce 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | [2cf 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +orderer.example.com | [2d0 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | [2d1 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +orderer.example.com | [2d2 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | [2d3 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +peer0.org1.example.com | [4ad 12-14 09:35:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +peer0.org1.example.com | [4ae 12-14 09:35:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [666265f2]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [4af 12-14 09:35:10.98 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.org1.example.com | [4b0 12-14 09:35:10.98 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 | [2d4 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | [2d5 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +peer0.org2.example.com | [459 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d603c8c4]Move state message RESPONSE +peer1.org2.example.com | [495 12-14 09:35:28.99 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.5,txid=8798425c80346bce8bf0031754a54e67a52963adbc288bb7c51e218de9f75002,syscc=true,proposal=0xc42268a8c0,canname=lscc:1.0.5 +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +peer0.org1.example.com | [4b1 12-14 09:35:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [666265f2]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [496 12-14 09:35:28.99 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.5 +peer1.org2.example.com | [497 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [2d6 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | [2d7 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +orderer.example.com | [2d8 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | [2d9 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer1.org1.example.com | [425 12-14 09:34:47.72 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.5 +peer1.org1.example.com | [426 12-14 09:34:47.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [45a 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d603c8c4]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer0.org2.example.com | [45b 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [45c 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d603c8c4]sending state message RESPONSE +orderer.example.com | [2da 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Application/Writers +orderer.example.com | [2db 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [2dc 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in /Application/Admins +orderer.example.com | [2dd 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [2de 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Application/Readers +peer0.org1.example.com | [4b2 12-14 09:35:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [666265f2]Move state message INIT +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org2.example.com | [45d 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d603c8c4]Received message RESPONSE from shim +peer1.org1.example.com | [427 12-14 09:34:47.72 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.5 +orderer.example.com | [2df 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org2.example.com | [498 12-14 09:35:28.99 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.5 +peer0.org1.example.com | [4b3 12-14 09:35:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [666265f2]Fabric side Handling ChaincodeMessage of type: INIT in state ready +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer0.org2.example.com | [45e 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d603c8c4]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org1.example.com | [428 12-14 09:34:47.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [00645376]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [499 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8798425c]Inside sendExecuteMessage. Message TRANSACTION +explorer | [2017-12-14 09:35:45.509] [ERROR] Helper - admin enrollment failed +peer0.org1.example.com | [4b4 12-14 09:35:10.98 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 | [45f 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d603c8c4]before send +orderer.example.com | [2e0 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [429 12-14 09:34:47.72 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... +explorer | [2017-12-14 09:35:45.510] [ERROR] Query - Error: Missing userContext parameter +peer0.org2.example.com | [460 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d603c8c4]after send +peer1.org2.example.com | [49a 12-14 09:35:28.99 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 | [42a 12-14 09:34:47.72 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... +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org1.example.com | [4b5 12-14 09:35:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [666265f2]sending state message INIT +peer0.org2.example.com | [461 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [d603c8c4]Received RESPONSE, communicated (state:ready) +peer0.org2.example.com | [462 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [d603c8c4]Received RESPONSE. Successfully updated state +orderer.example.com | [2e1 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org1.example.com | [42b 12-14 09:34:47.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [00645376]sendExecuteMsg trigger event TRANSACTION +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org2.example.com | [49b 12-14 09:35:28.99 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 | [463 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d603c8c4]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [4b6 12-14 09:35:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [666265f2]Received message PUT_STATE from shim +orderer.example.com | [2e2 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org1.example.com | [42c 12-14 09:34:47.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [00645376]Move state message TRANSACTION +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | [2017-12-14 09:35:45.510] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer0.org2.example.com | [464 12-14 09:35:11.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d603c8c4]Move state message COMPLETED +peer1.org2.example.com | [49c 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8798425c]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [4b7 12-14 09:35:10.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [666265f2]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +orderer.example.com | [2e3 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer1.org1.example.com | [42d 12-14 09:34:47.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [00645376]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +orderer.example.com | [2e4 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [4b8 12-14 09:35:10.98 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 | [465 12-14 09:35:11.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d603c8c4]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [42e 12-14 09:34:47.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [49d 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8798425c]Move state message TRANSACTION +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 178): Error: Cannot save null userContext. +orderer.example.com | [2e5 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org2.example.com | [466 12-14 09:35:11.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d603c8c4]send state message COMPLETED +peer0.org1.example.com | [4b9 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [666265f2]state is ready +peer1.org1.example.com | [42f 12-14 09:34:47.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [00645376]sending state message TRANSACTION +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org2.example.com | [49e 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8798425c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [467 12-14 09:35:11.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d603c8c4]Received message COMPLETED from shim +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [430 12-14 09:34:47.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [00645376]Received message TRANSACTION from shim +peer0.org1.example.com | [4ba 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [666265f2]Completed PUT_STATE. Sending RESPONSE +orderer.example.com | [2e6 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org2.example.com | [49f 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer1.org1.example.com | [431 12-14 09:34:47.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [00645376]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [468 12-14 09:35:11.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d603c8c4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [2e7 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [4bb 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [666265f2]enterBusyState trigger event RESPONSE +peer1.org1.example.com | [432 12-14 09:34:47.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [00645376]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [4a0 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8798425c]sending state message TRANSACTION +peer0.org2.example.com | [469 12-14 09:35:11.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d]HandleMessage- COMPLETED. Notify +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [4bc 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [666265f2]Move state message RESPONSE +peer1.org1.example.com | [433 12-14 09:34:47.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [00645376]Transaction completed. Sending COMPLETED +explorer | [2017-12-14 09:35:45.525] [ERROR] Query - Error: Connect Failed +peer0.org2.example.com | [46a 12-14 09:35:11.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d +orderer.example.com | [2e8 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [4bd 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [666265f2]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +orderer.example.com | [2e9 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [434 12-14 09:34:47.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [00645376]Move state message COMPLETED +peer0.org2.example.com | [46b 12-14 09:35:11.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [4a1 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8798425c]Received message TRANSACTION from shim +peer0.org1.example.com | [4be 12-14 09:35:10.99 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 | [2ea 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +explorer | [2017-12-14 09:35:46.620] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer1.org1.example.com | [435 12-14 09:34:47.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [00645376]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [4a2 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8798425c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [4bf 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [666265f2]sending state message RESPONSE +peer0.org2.example.com | [46c 12-14 09:35:11.13 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d,syscc=false,proposal=0xc4221f9b80,canname=mycc:1.0 +orderer.example.com | [2eb 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer1.org1.example.com | [436 12-14 09:34:47.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [00645376]send state message COMPLETED +peer1.org2.example.com | [4a3 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8798425c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [4c0 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [666265f2]Received message PUT_STATE from shim +peer1.org1.example.com | [437 12-14 09:34:47.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [00645376]Received message COMPLETED from shim +peer0.org2.example.com | [46d 12-14 09:35:11.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU launchAndWaitForRegister fetched 1818 bytes from file system +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [4a4 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [8798425c]Sending GET_STATE +orderer.example.com | [2ec 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +peer0.org1.example.com | [4c1 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [666265f2]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer1.org1.example.com | [438 12-14 09:34:47.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [00645376]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org2.example.com | [46e 12-14 09:35:11.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched +peer1.org2.example.com | [4a5 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8798425c]Received message GET_STATE from shim +orderer.example.com | [2ed 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026058 gate 1513244079553994600 evaluation starts +peer1.org1.example.com | [439 12-14 09:34:47.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [00645376bafdf02bfdc987196a1d46939f3546a431c74fc970dbdb3c79176fb3]HandleMessage- COMPLETED. Notify +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer0.org1.example.com | [4c2 12-14 09:35:10.99 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 | [46f 12-14 09:35:11.13 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 | [4a6 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8798425c]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | [2ee 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026058 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [43a 12-14 09:34:47.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:00645376bafdf02bfdc987196a1d46939f3546a431c74fc970dbdb3c79176fb3 +peer1.org1.example.com | [43b 12-14 09:34:47.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [43c 12-14 09:34:47.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [2ef 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026058 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +peer0.org2.example.com | [470 12-14 09:35:11.13 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] +peer0.org1.example.com | [4c3 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [666265f2]state is ready +peer1.org2.example.com | [4a7 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [8798425c]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [4a8 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at emitOne (events.js:96:13) +orderer.example.com | [2f0 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [471 12-14 09:35:11.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer0.org2.example.com) +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [4c4 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [666265f2]Completed PUT_STATE. Sending RESPONSE +peer1.org1.example.com | [43d 12-14 09:34:47.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org1.example.com | [43e 12-14 09:34:47.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org1.example.com | [43f 12-14 09:34:48.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer ��w`?~�Lz"I۷�Ak���D.�=(Ek�L$ message sent from W�(����v e��b +peer1.org1.example.com | k*���\������� +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [4a9 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8798425c] getting state for chaincode lscc, key mycc, channel businesschannel +peer0.org1.example.com | [4c5 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [666265f2]enterBusyState trigger event RESPONSE +peer0.org1.example.com | [4c6 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [666265f2]Move state message RESPONSE +peer0.org1.example.com | [4c7 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [666265f2]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +peer1.org2.example.com | [4aa 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org2.example.com | [4ab 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8798425c]Got state. Sending RESPONSE +peer1.org2.example.com | [4ac 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [8798425c]handleGetState serial send RESPONSE +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [4c8 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +peer1.org1.example.com | [440 12-14 09:34:49.35 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 +peer0.org2.example.com | [472 12-14 09:35:11.13 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 +peer0.org2.example.com | [473 12-14 09:35:11.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=mycc:1.0 +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | [4c9 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [666265f2]sending state message RESPONSE +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [4ad 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8798425c]Received message RESPONSE from shim +explorer | [2017-12-14 09:35:46.620] [ERROR] Helper - admin enrollment failed +peer1.org1.example.com | [441 12-14 09:34:49.35 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.org1.example.com | [442 12-14 09:34:52.75 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer ��w`?~�Lz"I۷�Ak���D.�=(Ek�L$ message sent from �JV����{I��%��M�4jg�{�%�X +peer1.org1.example.com | [443 12-14 09:34:52.77 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer ��w`?~�Lz"I۷�Ak���D.�=(Ek�L$ message sent from W�(����v e��b +peer0.org1.example.com | [4ca 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [666265f2]Received message COMPLETED from shim +explorer | [2017-12-14 09:35:46.621] [ERROR] Query - Error: Missing userContext parameter +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +peer0.org1.example.com | [4cb 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [666265f2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | k*���\������� +peer1.org2.example.com | [4ae 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8798425c]Handling ChaincodeMessage of type: RESPONSE(state:ready) +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +peer0.org1.example.com | [4cc 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [444 12-14 09:34:54.38 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.org2.example.com | [4af 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [8798425c]before send +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +peer0.org1.example.com | [4cd 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [2f1 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +peer1.org1.example.com | [445 12-14 09:34:54.40 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.org1.example.com | [4ce 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [4cf 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [4b0 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [8798425c]after send +peer0.org1.example.com | [4d0 12-14 09:35:10.99 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 | [2f2 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026058 principal matched by identity 0 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | [2017-12-14 09:35:46.621] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer1.org1.example.com | [446 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [4d1 12-14 09:35:10.99 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 [8e1c7cae-f772-4431-99eb-88de72317798] +orderer.example.com | [2f3 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 da dd 74 a9 35 9f 1f 14 e0 3c dd 86 1f 57 bf ba |..t.5....<...W..| +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 | [474 12-14 09:35:11.13 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org2.example.com-mycc-1.0) lock +peer0.org2.example.com | [475 12-14 09:35:11.13 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org2.example.com-mycc-1.0) lock +peer1.org1.example.com | [447 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org1.example.com | [4d2 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | 00000010 5e 42 96 9e e3 02 d8 b0 af 35 ce ae 94 24 39 56 |^B.......5...$9V| +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 181): Error: Cannot save null userContext. +peer1.org2.example.com | [4b1 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [8798425c]Received RESPONSE, communicated (state:ready) +peer1.org1.example.com | [448 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +orderer.example.com | [2f4 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c8 49 2b 30 49 6a be d9 eb a3 c9 |0E.!..I+0Ij.....| +peer0.org1.example.com | [4d3 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b channel id: businesschannel chaincode id: name:"lscc" +peer0.org2.example.com | [476 12-14 09:35:11.13 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org2.example.com-mycc-1.0 +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org2.example.com | [4b2 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [8798425c]GetState received payload RESPONSE +peer1.org1.example.com | [449 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422130cf0 +orderer.example.com | 00000010 b1 d7 c2 5c db 7d 7f 01 f0 f4 c5 4c a2 2a 38 b4 |...\.}.....L.*8.| +peer0.org2.example.com | [477 12-14 09:35:11.13 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org2.example.com-mycc-1.0(No such container: dev-peer0.org2.example.com-mycc-1.0) +peer0.org1.example.com | [4d4 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [44a 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\271\213\311\321\005\020\214\333\221\310\003\"\017businesschannel*@666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030{\277\345\243\303\256\022\021\311B\363\266in\2428c\364\274\237\211\\x)" +orderer.example.com | 00000020 03 c8 6f ec f5 02 20 26 98 0f ec d7 1d 2d b0 ca |..o... &.....-..| +peer0.org2.example.com | [478 12-14 09:35:11.13 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org2.example.com-mycc-1.0 (No such container: dev-peer0.org2.example.com-mycc-1.0) +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer0.org1.example.com | [4d5 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b channel id: businesschannel version: 1.0.5 +peer1.org2.example.com | [4b3 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8798425c]Transaction completed. Sending COMPLETED +orderer.example.com | 00000030 7b 73 23 a7 15 35 c6 37 da c7 d0 f8 5a 99 85 fc |{s#..5.7....Z...| +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [4d6 12-14 09:35:10.99 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.5,txid=666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b,syscc=true,proposal=0xc422021ae0,canname=escc:1.0.5 +peer1.org1.example.com | [44b 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [479 12-14 09:35:11.13 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org2.example.com-mycc-1.0 (No such container: dev-peer0.org2.example.com-mycc-1.0) +peer1.org2.example.com | [4b4 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8798425c]Move state message COMPLETED +explorer | [2017-12-14 09:35:46.634] [ERROR] Query - Error: Connect Failed +peer0.org1.example.com | [4d7 12-14 09:35:10.99 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.5 +orderer.example.com | 00000040 5a f7 c3 eb b0 dd b3 |Z......| +peer1.org1.example.com | [44c 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [47a 12-14 09:35:11.13 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org2.example.com-mycc-1.0 +peer1.org2.example.com | [4b5 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8798425c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [4b6 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8798425c]send state message COMPLETED +peer0.org1.example.com | [4d8 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [2f5 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026058 principal evaluation succeeds for identity 0 +explorer | [2017-12-14 09:35:47.715] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer0.org2.example.com | [47b 12-14 09:35:11.13 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v105_default +peer1.org1.example.com | [44d 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} +peer1.org2.example.com | [4b7 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8798425c]Received message COMPLETED from shim +peer1.org2.example.com | [4b8 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8798425c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [2f6 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026058 gate 1513244079553994600 evaluation succeeds +peer0.org1.example.com | [4d9 12-14 09:35:10.99 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.5 +peer0.org2.example.com | [47c 12-14 09:35:11.14 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-mycc-1.0 +peer0.org2.example.com | [47d 12-14 09:35:11.14 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 | [47e 12-14 09:35:11.15 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +peer1.org1.example.com | [44e 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [2f7 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [4da 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [666265f2]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [4db 12-14 09:35:10.99 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 | [4dc 12-14 09:35:10.99 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 | FROM hyperledger/fabric-baseos:x86_64-0.3.2 +peer1.org1.example.com | [44f 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [2f8 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [4dd 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [666265f2]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | ADD binpackage.tar /usr/local/bin +orderer.example.com | [2f9 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [2fa 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [2fb 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org1.example.com | [4de 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [666265f2]Move state message TRANSACTION +peer0.org1.example.com | [4df 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [666265f2]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [4e0 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +orderer.example.com | [2fc 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org1.example.com | [450 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42175ca80, header channel_header:"\010\003\032\014\010\271\213\311\321\005\020\214\333\221\310\003\"\017businesschannel*@666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030{\277\345\243\303\256\022\021\311B\363\266in\2428c\364\274\237\211\\x)" +peer1.org2.example.com | [4b9 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8798425c80346bce8bf0031754a54e67a52963adbc288bb7c51e218de9f75002]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +peer0.org1.example.com | [4e1 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [666265f2]sending state message TRANSACTION +explorer | at emitOne (events.js:96:13) +orderer.example.com | [2fd 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [451 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org2.example.com | [4ba 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8798425c80346bce8bf0031754a54e67a52963adbc288bb7c51e218de9f75002 +peer0.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org1.example.com | [4e2 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [666265f2]Received message TRANSACTION from shim +orderer.example.com | [2fe 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [452 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org2.example.com | [4bb 12-14 09:35:28.99 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 | org.hyperledger.fabric.version="1.0.5" \ +explorer | at emitErrorNT (net.js:1281:8) +orderer.example.com | [2ff 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [4e3 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [666265f2]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [4bc 12-14 09:35:28.99 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 | [4bd 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 8798425c80346bce8bf0031754a54e67a52963adbc288bb7c51e218de9f75002 channel id: businesschannel version: 1.0 +peer0.org2.example.com | org.hyperledger.fabric.base.version="0.3.2" +orderer.example.com | [300 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [453 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer0.org1.example.com | [4e4 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [666265f2]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.5 +orderer.example.com | [301 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [454 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org2.example.com | [4be 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=8798425c80346bce8bf0031754a54e67a52963adbc288bb7c51e218de9f75002,syscc=false,proposal=0xc42268a8c0,canname=mycc:1.0 +explorer | [2017-12-14 09:35:47.715] [ERROR] Helper - admin enrollment failed +peer0.org1.example.com | [4e5 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [4e6 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [302 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [455 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b] +explorer | [2017-12-14 09:35:47.716] [ERROR] Query - Error: Missing userContext parameter +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org1.example.com | [4e7 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [666265f2]Transaction completed. Sending COMPLETED +orderer.example.com | [303 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [456 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +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.org1.example.com | [4e8 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [666265f2]Move state message COMPLETED +orderer.example.com | [304 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [4bf 12-14 09:35:28.99 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.5,txid=8798425c80346bce8bf0031754a54e67a52963adbc288bb7c51e218de9f75002,syscc=true,proposal=0xc42268a8c0,canname=lscc:1.0.5 +peer1.org1.example.com | [457 12-14 09:35:13.06 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 +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer0.org1.example.com | [4e9 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [666265f2]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [305 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [4c0 12-14 09:35:28.99 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.5 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [4ea 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [666265f2]send state message COMPLETED +orderer.example.com | [306 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [458 12-14 09:35:13.06 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 [3fa05514-be38-472c-9b16-b526699c44a8] +peer0.org2.example.com | [47f 12-14 09:35:11.16 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.5 +peer1.org2.example.com | [4c1 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [4eb 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [666265f2]Received message COMPLETED from shim +orderer.example.com | [307 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [308 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [459 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=a53a71b9-b6fa-48f8-88af-8ccdc38bd683,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer1.org1.example.com | [45a 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b chaindID businesschannel +peer1.org1.example.com | [45b 12-14 09:35:13.06 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.5 +peer0.org1.example.com | [4ec 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [666265f2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [480 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] +orderer.example.com | [309 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +explorer | [2017-12-14 09:35:47.717] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer1.org2.example.com | [4c2 12-14 09:35:28.99 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.5 +peer1.org1.example.com | [45c 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [4ed 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [45d 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +orderer.example.com | [30a 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [30b 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [30c 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [30d 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [30e 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [30f 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [4ee 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b +peer1.org1.example.com | [45e 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a53a71b9]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [310 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [311 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +peer0.org1.example.com | [4ef 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [312 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer1.org2.example.com | [4c3 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8798425c]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [45f 12-14 09:35:13.06 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 | [460 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a53a71b9]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [4f0 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [313 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer0.org2.example.com | [481 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [4c4 12-14 09:35:28.99 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 | [4f1 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer1.org1.example.com | [461 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a53a71b9]Move state message TRANSACTION +peer0.org2.example.com | [482 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +orderer.example.com | [314 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 184): Error: Cannot save null userContext. +peer0.org1.example.com | [4f2 12-14 09:35:10.99 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 [8e1c7cae-f772-4431-99eb-88de72317798] +peer1.org1.example.com | [462 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a53a71b9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [483 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +orderer.example.com | [315 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [4f3 12-14 09:35:10.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org2.example.com | [4c5 12-14 09:35:28.99 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... +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [484 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org1.example.com | [4f4 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] +peer1.org2.example.com | [4c6 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8798425c]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [4c7 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8798425c]Move state message TRANSACTION +orderer.example.com | [316 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [463 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [485 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42035d2f0 +peer0.org1.example.com | [4f5 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer1.org2.example.com | [4c8 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8798425c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [317 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [4f6 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [464 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a53a71b9]sending state message TRANSACTION +peer0.org2.example.com | [486 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\271\213\311\321\005\020\214\333\221\310\003\"\017businesschannel*@666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030{\277\345\243\303\256\022\021\311B\363\266in\2428c\364\274\237\211\\x)" +peer0.org1.example.com | [4f7 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +orderer.example.com | [318 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +explorer | [2017-12-14 09:35:47.732] [ERROR] Query - Error: Connect Failed +peer0.org2.example.com | [487 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [4c9 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [4ca 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8798425c]sending state message TRANSACTION +peer0.org1.example.com | [4f8 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | [319 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +peer0.org2.example.com | [488 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [465 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a53a71b9]Received message TRANSACTION from shim +peer1.org2.example.com | [4cb 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8798425c]Received message TRANSACTION from shim +peer0.org1.example.com | [4f9 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422978030 +explorer | [2017-12-14 09:35:48.822] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer0.org2.example.com | [489 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} +peer1.org2.example.com | [4cc 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8798425c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [31a 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +peer0.org1.example.com | [4fa 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\271\213\311\321\005\020\214\333\221\310\003\"\017businesschannel*@666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030{\277\345\243\303\256\022\021\311B\363\266in\2428c\364\274\237\211\\x)" +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer1.org1.example.com | [466 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a53a71b9]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [4cd 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8798425c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [4fb 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [31b 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [48a 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [4ce 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [8798425c]Sending GET_STATE +peer0.org1.example.com | [4fc 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [467 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a53a71b9]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [31c 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [31d 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org2.example.com | [48b 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [4cf 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8798425c]Received message GET_STATE from shim +peer0.org1.example.com | [4fd 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} +orderer.example.com | [31e 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [468 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer0.org2.example.com | [48c 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421b3d500, header channel_header:"\010\003\032\014\010\271\213\311\321\005\020\214\333\221\310\003\"\017businesschannel*@666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030{\277\345\243\303\256\022\021\311B\363\266in\2428c\364\274\237\211\\x)" +orderer.example.com | [31f 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +peer0.org1.example.com | [4fe 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [4d0 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8798425c]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [469 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [48d 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org2.example.com | [4d1 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [8798425c]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [4ff 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [320 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [321 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +peer0.org2.example.com | [48e 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +peer0.org1.example.com | [500 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421a59500, header channel_header:"\010\003\032\014\010\271\213\311\321\005\020\214\333\221\310\003\"\017businesschannel*@666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030{\277\345\243\303\256\022\021\311B\363\266in\2428c\364\274\237\211\\x)" +orderer.example.com | [322 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer1.org2.example.com | [4d3 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8798425c] getting state for chaincode lscc, key mycc, channel businesschannel +peer0.org2.example.com | [48f 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org1.example.com | [46a 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org1.example.com | [501 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org2.example.com | [490 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +orderer.example.com | [323 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org1.example.com | [46b 12-14 09:35:13.06 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [502 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org2.example.com | [4d4 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org2.example.com | [491 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b] +explorer | [2017-12-14 09:35:48.823] [ERROR] Helper - admin enrollment failed +peer1.org1.example.com | [46c 12-14 09:35:13.06 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [324 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +peer0.org2.example.com | [492 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [4d5 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8798425c]Got state. Sending RESPONSE +explorer | [2017-12-14 09:35:48.823] [ERROR] Query - Error: Missing userContext parameter +peer0.org1.example.com | [503 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org1.example.com | [46d 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +orderer.example.com | [325 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +peer0.org2.example.com | [493 12-14 09:35:13.02 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 +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer1.org2.example.com | [4d6 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [8798425c]handleGetState serial send RESPONSE +peer0.org1.example.com | [504 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [46e 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [29cea9c0-3096-424a-9257-dfb2799cd033] +peer0.org2.example.com | [494 12-14 09:35:13.02 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 [7d2a922b-07c5-43c3-9c0a-49889feeb10a] +orderer.example.com | [326 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [4d7 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8798425c]Received message RESPONSE from shim +peer0.org1.example.com | [505 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b] +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +orderer.example.com | [327 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [46f 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org2.example.com | [495 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=f6ccb51e-6764-4ebb-8713-68bce971a3e9,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer1.org2.example.com | [4d8 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8798425c]Handling ChaincodeMessage of type: RESPONSE(state:ready) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [506 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +orderer.example.com | [328 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [470 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [29cea9c0-3096-424a-9257-dfb2799cd033] +peer0.org2.example.com | [496 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b chaindID businesschannel +explorer | [2017-12-14 09:35:48.824] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer0.org1.example.com | [507 12-14 09:35:13.03 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 | [329 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [4d9 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [8798425c]before send +peer1.org1.example.com | [471 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +orderer.example.com | [32a 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [508 12-14 09:35:13.03 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 [a0d5f4ef-ad9c-4efc-b9cb-475a83ff3648] +peer1.org2.example.com | [4da 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [8798425c]after send +peer0.org2.example.com | [497 12-14 09:35:13.02 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.5 +orderer.example.com | [32b 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [509 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=faef6761-48d2-4101-932d-50fc5d34349c,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer1.org1.example.com | [472 12-14 09:35:13.06 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)(0x9547d0)} +peer1.org2.example.com | [4db 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [8798425c]Received RESPONSE, communicated (state:ready) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org2.example.com | [498 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [473 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 187): Error: Cannot save null userContext. +peer0.org1.example.com | [50a 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b chaindID businesschannel +orderer.example.com | [32c 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org2.example.com | [499 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer1.org2.example.com | [4dc 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [8798425c]GetState received payload RESPONSE +peer1.org1.example.com | [474 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a53a71b9]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [50b 12-14 09:35:13.03 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.5 +orderer.example.com | [32d 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +peer0.org2.example.com | [49a 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f6ccb51e]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [475 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a53a71b9]Move state message COMPLETED +peer1.org2.example.com | [4dd 12-14 09:35:29.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8798425c]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [50c 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | [32e 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +peer0.org2.example.com | [49b 12-14 09:35:13.02 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 | [50d 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +orderer.example.com | [32f 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [49c 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f6ccb51e]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [50e 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [faef6761]Inside sendExecuteMessage. Message TRANSACTION +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [476 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a53a71b9]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [330 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [49d 12-14 09:35:13.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f6ccb51e]Move state message TRANSACTION +peer1.org2.example.com | [4de 12-14 09:35:29.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8798425c]Move state message COMPLETED +explorer | [2017-12-14 09:35:48.838] [ERROR] Query - Error: Connect Failed +peer0.org1.example.com | [50f 12-14 09:35:13.03 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 | [49e 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f6ccb51e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [331 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [477 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a53a71b9]send state message COMPLETED +peer0.org1.example.com | [510 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [faef6761]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [4df 12-14 09:35:29.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8798425c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [49f 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [478 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a53a71b9]Received message COMPLETED from shim +orderer.example.com | [332 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [511 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [faef6761]Move state message TRANSACTION +explorer | [2017-12-14 09:35:49.917] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer0.org2.example.com | [4a0 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f6ccb51e]sending state message TRANSACTION +peer1.org2.example.com | [4e0 12-14 09:35:29.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8798425c]send state message COMPLETED +peer1.org1.example.com | [479 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a53a71b9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [512 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [faef6761]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [333 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer0.org2.example.com | [4a1 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f6ccb51e]Received message TRANSACTION from shim +peer1.org2.example.com | [4d2 12-14 09:35:28.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [513 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [47a 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a53a71b9-b6fa-48f8-88af-8ccdc38bd683]HandleMessage- COMPLETED. Notify +explorer | at emitOne (events.js:96:13) +orderer.example.com | [334 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [4a2 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f6ccb51e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [4e1 12-14 09:35:29.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8798425c]Received message COMPLETED from shim +peer0.org1.example.com | [514 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [faef6761]sending state message TRANSACTION +peer1.org1.example.com | [47b 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a53a71b9-b6fa-48f8-88af-8ccdc38bd683 +orderer.example.com | [335 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +peer0.org1.example.com | [515 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [faef6761]Received message TRANSACTION from shim +peer0.org2.example.com | [4a3 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f6ccb51e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [4a4 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org1.example.com | [47c 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [4e2 12-14 09:35:29.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8798425c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [336 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +peer0.org1.example.com | [516 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [faef6761]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org2.example.com | [4a5 12-14 09:35:13.03 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 | [47d 12-14 09:35:13.06 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 [3fa05514-be38-472c-9b16-b526699c44a8] +peer1.org2.example.com | [4e3 12-14 09:35:29.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8798425c80346bce8bf0031754a54e67a52963adbc288bb7c51e218de9f75002]HandleMessage- COMPLETED. Notify +orderer.example.com | [337 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +peer0.org1.example.com | [517 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [faef6761]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer0.org2.example.com | [4a6 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer1.org1.example.com | [47e 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org2.example.com | [4e4 12-14 09:35:29.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8798425c80346bce8bf0031754a54e67a52963adbc288bb7c51e218de9f75002 +orderer.example.com | [338 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [518 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [4a7 12-14 09:35:13.03 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [4e5 12-14 09:35:29.00 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 | [47f 12-14 09:35:13.06 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 | [339 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [519 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +peer1.org2.example.com | [4e6 12-14 09:35:29.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched +peer1.org1.example.com | [480 12-14 09:35:13.06 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)(0xc421a76cc0), Data:(*common.BlockData)(0xc422066ee0), Metadata:(*common.BlockMetadata)(0xc422066f20)}, doMVCCValidation=true +orderer.example.com | [33a 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +peer0.org1.example.com | [51a 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer1.org2.example.com | [4e7 12-14 09:35:29.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer1.org1.example.com | [481 12-14 09:35:13.06 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 | [33b 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [51b 12-14 09:35:13.03 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [4a8 12-14 09:35:13.03 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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}} +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org2.example.com | [4e8 12-14 09:35:29.00 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] +peer1.org1.example.com | [482 12-14 09:35:13.06 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=mycc +orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +peer0.org1.example.com | [51c 12-14 09:35:13.03 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [4a9 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer0.org2.example.com | [4aa 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [93066cee-44f5-42c3-94cb-34fda63c319e] +peer0.org2.example.com | [4ab 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org1.example.com | [483 12-14 09:35:13.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b] marked as valid by state validator +peer0.org1.example.com | [51d 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer0.org1.example.com | [51e 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [92347bb9-f76f-4b66-81d2-2004d743e6e7] +peer0.org1.example.com | [51f 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [520 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [92347bb9-f76f-4b66-81d2-2004d743e6e7] +peer0.org1.example.com | [521 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer0.org1.example.com | [522 12-14 09:35:13.03 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)(0x9547d0)} +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +orderer.example.com | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [33c 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +peer0.org1.example.com | [523 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +peer0.org1.example.com | [524 12-14 09:35:13.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [faef6761]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [525 12-14 09:35:13.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [faef6761]Move state message COMPLETED +peer1.org2.example.com | [4e9 12-14 09:35:29.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer1.org2.example.com) +explorer | [2017-12-14 09:35:49.917] [ERROR] Helper - admin enrollment failed +explorer | [2017-12-14 09:35:49.917] [ERROR] Query - Error: Missing userContext parameter +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer0.org1.example.com | [526 12-14 09:35:13.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [faef6761]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [527 12-14 09:35:13.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [faef6761]send state message COMPLETED +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +peer0.org1.example.com | [528 12-14 09:35:13.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [faef6761]Received message COMPLETED from shim +peer0.org1.example.com | [529 12-14 09:35:13.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [faef6761]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [52a 12-14 09:35:13.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [faef6761-48d2-4101-932d-50fc5d34349c]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [52b 12-14 09:35:13.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:faef6761-48d2-4101-932d-50fc5d34349c +peer0.org1.example.com | [52c 12-14 09:35:13.04 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [484 12-14 09:35:13.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xe8, 0xdd, 0x3a, 0xe6, 0xb8, 0x5d, 0x63, 0x1d, 0x8e, 0x54, 0xef, 0xc5, 0xa, 0x1b, 0x18, 0xb, 0x1e, 0xe6, 0x31, 0x77, 0x44, 0x87, 0xc7, 0x16, 0x8f, 0xea, 0x61, 0x39, 0xdd, 0xa3, 0xa7, 0xde} txOffsets= +peer0.org2.example.com | [4ac 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [93066cee-44f5-42c3-94cb-34fda63c319e] +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [4ea 12-14 09:35:29.00 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 | [4eb 12-14 09:35:29.00 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=mycc: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 | [4ec 12-14 09:35:29.00 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org2.example.com-mycc-1.0) lock +peer1.org2.example.com | [4ed 12-14 09:35:29.00 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org2.example.com-mycc-1.0) lock +peer0.org1.example.com | [52d 12-14 09:35:13.04 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 [a0d5f4ef-ad9c-4efc-b9cb-475a83ff3648] +orderer.example.com | [33d 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | txId=666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b locPointer=offset=70, bytesLength=3388 +peer1.org2.example.com | [4ee 12-14 09:35:29.00 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer1.org2.example.com-mycc-1.0 +peer0.org2.example.com | [4ad 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +peer0.org1.example.com | [52e 12-14 09:35:13.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +explorer | [2017-12-14 09:35:49.917] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +peer1.org1.example.com | ] +peer1.org2.example.com | [4ef 12-14 09:35:29.00 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer1.org2.example.com-mycc-1.0(No such container: dev-peer1.org2.example.com-mycc-1.0) +peer0.org2.example.com | [4ae 12-14 09:35:13.03 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)(0x9547d0)} +peer0.org1.example.com | [52f 12-14 09:35:13.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] +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer1.org2.example.com | [4f0 12-14 09:35:29.00 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer1.org2.example.com-mycc-1.0 (No such container: dev-peer1.org2.example.com-mycc-1.0) +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | [485 12-14 09:35:13.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39577, bytesLength=3388] for tx ID: [666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b] to index +peer0.org2.example.com | [4af 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org1.example.com | [530 12-14 09:35:13.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)(0xc422514640), Data:(*common.BlockData)(0xc4223f5a20), Metadata:(*common.BlockMetadata)(0xc4223f5a60)}, doMVCCValidation=true +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [4f1 12-14 09:35:29.00 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org2.example.com-mycc-1.0 (No such container: dev-peer1.org2.example.com-mycc-1.0) +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org2.example.com | [4b0 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f6ccb51e]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [486 12-14 09:35:13.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39577, bytesLength=3388] for tx number:[0] ID: [666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b] to blockNumTranNum index +peer0.org1.example.com | [531 12-14 09:35:13.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.org2.example.com | [4f2 12-14 09:35:29.00 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org2.example.com-mycc-1.0 +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 190): Error: Cannot save null userContext. +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +peer1.org1.example.com | [487 12-14 09:35:13.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44726], isChainEmpty=[false], lastBlockNumber=[3] +peer0.org1.example.com | [532 12-14 09:35:13.04 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=mycc +peer0.org2.example.com | [4b1 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f6ccb51e]Move state message COMPLETED +peer1.org2.example.com | [4f3 12-14 09:35:29.00 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v105_default +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org1.example.com | [488 12-14 09:35:13.07 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 | [533 12-14 09:35:13.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b] marked as valid by state validator +peer1.org2.example.com | [4f4 12-14 09:35:29.00 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-mycc-1.0 +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org2.example.com | [4b2 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f6ccb51e]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org1.example.com | [489 12-14 09:35:13.07 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 | [534 12-14 09:35:13.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xe8, 0xdd, 0x3a, 0xe6, 0xb8, 0x5d, 0x63, 0x1d, 0x8e, 0x54, 0xef, 0xc5, 0xa, 0x1b, 0x18, 0xb, 0x1e, 0xe6, 0x31, 0x77, 0x44, 0x87, 0xc7, 0x16, 0x8f, 0xea, 0x61, 0x39, 0xdd, 0xa3, 0xa7, 0xde} txOffsets= +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [4b3 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f6ccb51e]send state message COMPLETED +peer1.org2.example.com | [4f5 12-14 09:35:29.01 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 | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +peer0.org1.example.com | txId=666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b locPointer=offset=70, bytesLength=3388 +peer1.org1.example.com | [48a 12-14 09:35:13.07 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 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer0.org2.example.com | [4b4 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f6ccb51e]Received message COMPLETED from shim +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org1.example.com | ] +peer1.org2.example.com | [4f6 12-14 09:35:29.01 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [48b 12-14 09:35:13.07 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, 0x6d, 0x79, 0x63, 0x63}] +peer1.org2.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +peer0.org1.example.com | [535 12-14 09:35:13.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39577, bytesLength=3388] for tx ID: [666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b] to index +explorer | [2017-12-14 09:35:49.932] [ERROR] Query - Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | ADD binpackage.tar /usr/local/bin +peer1.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ +peer0.org2.example.com | [4b5 12-14 09:35:13.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f6ccb51e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [4b6 12-14 09:35:13.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f6ccb51e-6764-4ebb-8713-68bce971a3e9]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [4b7 12-14 09:35:13.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f6ccb51e-6764-4ebb-8713-68bce971a3e9 +explorer | [2017-12-14 09:35:51.032] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +peer1.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +peer0.org1.example.com | [536 12-14 09:35:13.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39577, bytesLength=3388] for tx number:[0] ID: [666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b] to blockNumTranNum index +peer1.org1.example.com | [48c 12-14 09:35:13.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer1.org1.example.com | [48d 12-14 09:35:13.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +peer1.org1.example.com | [48e 12-14 09:35:13.07 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 | [48f 12-14 09:35:13.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 [3] with [1] transactions +peer1.org1.example.com | [490 12-14 09:35:13.07 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.org1.example.com | [491 12-14 09:35:13.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org2.example.com | [4b8 12-14 09:35:13.05 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +peer1.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +peer0.org1.example.com | [537 12-14 09:35:13.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44726], isChainEmpty=[false], lastBlockNumber=[3] +peer1.org1.example.com | [492 12-14 09:35:13.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b +peer0.org2.example.com | [4b9 12-14 09:35:13.05 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 [7d2a922b-07c5-43c3-9c0a-49889feeb10a] +explorer | at emitOne (events.js:96:13) +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | org.hyperledger.fabric.version="1.0.5" \ +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org1.example.com | [538 12-14 09:35:13.05 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 | [539 12-14 09:35:13.05 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 | [53a 12-14 09:35:13.05 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 | [4ba 12-14 09:35:13.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +orderer.example.com | [33e 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer1.org2.example.com | org.hyperledger.fabric.base.version="0.3.2" +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org1.example.com | [493 12-14 09:35:13.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] +peer0.org1.example.com | [53b 12-14 09:35:13.05 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, 0x6d, 0x79, 0x63, 0x63}] +peer0.org2.example.com | [4bb 12-14 09:35:13.05 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 | [33f 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +peer1.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.5 +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [494 12-14 09:35:13.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org1.example.com | [53c 12-14 09:35:13.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +peer0.org2.example.com | [4bc 12-14 09:35:13.05 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)(0xc420133300), Data:(*common.BlockData)(0xc4219db360), Metadata:(*common.BlockMetadata)(0xc4219db3a0)}, doMVCCValidation=true +peer1.org2.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +orderer.example.com | [340 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org1.example.com | [495 12-14 09:35:13.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [496 12-14 09:35:13.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org1.example.com | [497 12-14 09:35:13.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +explorer | at TLSSocket.emit (events.js:188:7) +peer1.org2.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt +peer0.org1.example.com | [53d 12-14 09:35:13.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer0.org2.example.com | [4bd 12-14 09:35:13.05 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 | [341 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [342 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [343 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +peer1.org1.example.com | [498 12-14 09:35:13.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +explorer | at emitErrorNT (net.js:1281:8) +peer0.org1.example.com | [53e 12-14 09:35:13.05 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 | [53f 12-14 09:35:13.05 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 | [540 12-14 09:35:13.05 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 | [541 12-14 09:35:13.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [542 12-14 09:35:13.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b +peer1.org2.example.com | [4f7 12-14 09:35:29.01 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.5 +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org2.example.com | [4be 12-14 09:35:13.05 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=mycc +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer1.org1.example.com | [499 12-14 09:35:30.70 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [543 12-14 09:35:13.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org2.example.com | [4f8 12-14 09:35:30.70 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org2.example.com | [4bf 12-14 09:35:13.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b] marked as valid by state validator +peer0.org1.example.com | [544 12-14 09:35:13.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 +peer1.org1.example.com | [49a 12-14 09:35:30.70 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org2.example.com | [4f9 12-14 09:35:30.70 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +explorer | [2017-12-14 09:35:51.032] [ERROR] Helper - admin enrollment failed +peer0.org1.example.com | [545 12-14 09:35:13.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +orderer.example.com | +/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer1.org2.example.com | [4fa 12-14 09:35:30.70 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +explorer | [2017-12-14 09:35:51.032] [ERROR] Query - Error: Missing userContext parameter +peer1.org1.example.com | [49b 12-14 09:35:30.70 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org2.example.com | [4c0 12-14 09:35:13.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xe8, 0xdd, 0x3a, 0xe6, 0xb8, 0x5d, 0x63, 0x1d, 0x8e, 0x54, 0xef, 0xc5, 0xa, 0x1b, 0x18, 0xb, 0x1e, 0xe6, 0x31, 0x77, 0x44, 0x87, 0xc7, 0x16, 0x8f, 0xea, 0x61, 0x39, 0xdd, 0xa3, 0xa7, 0xde} txOffsets= +peer1.org2.example.com | [4fb 12-14 09:35:30.70 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421a05a10 +peer0.org1.example.com | [546 12-14 09:35:13.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN +peer0.org2.example.com | txId=666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b locPointer=offset=70, bytesLength=3388 +peer1.org1.example.com | [49c 12-14 09:35:30.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421448570 +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer1.org2.example.com | [4fc 12-14 09:35:30.70 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\317\213\311\321\005\020\270\271\2514\"\017businesschannel*@d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030v\377M'\2357\021\315-\351\035p%\010\326\n7\002\270C\306\302\201\373" +peer1.org1.example.com | [49d 12-14 09:35:30.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\317\213\311\321\005\020\270\271\2514\"\017businesschannel*@d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030v\377M'\2357\021\315-\351\035p%\010\326\n7\002\270C\306\302\201\373" +peer0.org2.example.com | ] +peer0.org1.example.com | [547 12-14 09:35:13.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org2.example.com | [4fd 12-14 09:35:30.70 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [49e 12-14 09:35:30.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 +peer0.org2.example.com | [4c1 12-14 09:35:13.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39577, bytesLength=3388] for tx ID: [666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b] to index +peer0.org1.example.com | [548 12-14 09:35:13.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org2.example.com | [4fe 12-14 09:35:30.70 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [49f 12-14 09:35:30.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer0.org2.example.com | [4c2 12-14 09:35:13.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39577, bytesLength=3388] for tx number:[0] ID: [666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b] to blockNumTranNum index +peer0.org1.example.com | [549 12-14 09:35:30.66 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] +peer1.org2.example.com | [4ff 12-14 09:35:30.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} +peer1.org1.example.com | [4a0 12-14 09:35:30.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} +orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL +peer0.org2.example.com | [4c3 12-14 09:35:13.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44726], isChainEmpty=[false], lastBlockNumber=[3] +peer0.org1.example.com | [54a 12-14 09:35:30.67 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] +peer1.org2.example.com | [500 12-14 09:35:30.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [4a1 12-14 09:35:30.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org2.example.com | [4c4 12-14 09:35:13.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) +peer1.org2.example.com | [501 12-14 09:35:30.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | liPpNxLSsBU= +peer1.org1.example.com | [4a2 12-14 09:35:30.72 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +explorer | [2017-12-14 09:35:51.033] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer0.org1.example.com | [54b 12-14 09:35:30.67 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org2.example.com | [4c5 12-14 09:35:13.07 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 | [502 12-14 09:35:30.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421c0c000, header channel_header:"\010\003\032\013\010\317\213\311\321\005\020\270\271\2514\"\017businesschannel*@d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030v\377M'\2357\021\315-\351\035p%\010\326\n7\002\270C\306\302\201\373" +peer1.org1.example.com | [4a3 12-14 09:35:30.72 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42175ca80, header channel_header:"\010\003\032\013\010\317\213\311\321\005\020\270\271\2514\"\017businesschannel*@d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030v\377M'\2357\021\315-\351\035p%\010\326\n7\002\270C\306\302\201\373" +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer0.org2.example.com | [4c6 12-14 09:35:28.11 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org2.example.com-mycc-1.0-15b571b3ce849066b7ec74497da3b27e54e0df1345daff3951b94245ce09c42b +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [54c 12-14 09:35:30.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org2.example.com | [503 12-14 09:35:30.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org1.example.com | [4a4 12-14 09:35:30.72 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org2.example.com | [4c7 12-14 09:35:28.11 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +orderer.example.com | [344 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [504 12-14 09:35:30.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org2.example.com | [4c8 12-14 09:35:28.11 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-mycc-1.0 +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 193): Error: Cannot save null userContext. +peer0.org1.example.com | [54d 12-14 09:35:30.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org1.example.com | [4a5 12-14 09:35:30.72 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org2.example.com | [505 12-14 09:35:30.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org2.example.com | [4c9 12-14 09:35:28.20 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org2.example.com-mycc-1.0-15b571b3ce849066b7ec74497da3b27e54e0df1345daff3951b94245ce09c42b +peer0.org1.example.com | [54e 12-14 09:35:30.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422465620 +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org1.example.com | [4a6 12-14 09:35:30.72 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org2.example.com | [506 12-14 09:35:30.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org2.example.com | [4ca 12-14 09:35:28.59 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org2.example.com-mycc-1.0 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [4a7 12-14 09:35:30.72 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org2.example.com | [507 12-14 09:35:30.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d] +peer0.org2.example.com | [4cb 12-14 09:35:28.59 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org2.example.com-mycc-1.0) +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [54f 12-14 09:35:30.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\317\213\311\321\005\020\270\271\2514\"\017businesschannel*@d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030v\377M'\2357\021\315-\351\035p%\010\326\n7\002\270C\306\302\201\373" +peer1.org1.example.com | [4a8 12-14 09:35:30.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d] +peer1.org2.example.com | [508 12-14 09:35:30.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer0.org2.example.com | [4cc 12-14 09:35:28.61 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 | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [509 12-14 09:35:30.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 +peer1.org1.example.com | [4a9 12-14 09:35:30.72 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer0.org2.example.com | [4cd 12-14 09:35:28.61 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 | [550 12-14 09:35:30.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer0.org2.example.com | [4ce 12-14 09:35:28.61 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 | [50a 12-14 09:35:30.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 [8e8208e2-9a42-46fe-a953-0ae10b7a2249] +peer1.org1.example.com | [4aa 12-14 09:35:30.72 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 | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +peer0.org2.example.com | [4cf 12-14 09:35:28.61 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 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [4ab 12-14 09:35:30.72 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 [24b5fda6-83b5-4648-af21-897274fd21f2] +peer0.org1.example.com | [551 12-14 09:35:30.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [50b 12-14 09:35:30.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.5,txid=8e97d0fc-a9a6-43e8-b9f9-89ede55f8b3c,syscc=true,proposal=0x0,canname=vscc:1.0.5 +explorer | [2017-12-14 09:35:51.054] [ERROR] Query - Error: Connect Failed +peer0.org2.example.com | [4d0 12-14 09:35:28.61 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 mycc:1.0 +peer1.org1.example.com | [4ac 12-14 09:35:30.72 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=fdc56067-5b2b-4506-9458-0d30e46d6bcc,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer0.org1.example.com | [552 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [4d1 12-14 09:35:28.61 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:"mycc:1.0" , sending back REGISTERED +peer1.org1.example.com | [4ad 12-14 09:35:30.72 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d chaindID businesschannel +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [50c 12-14 09:35:30.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d chaindID businesschannel +peer0.org2.example.com | [4d2 12-14 09:35:28.61 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 | [4ae 12-14 09:35:30.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.5 +peer0.org1.example.com | [553 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +explorer | [2017-12-14 09:35:52.151] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [4d3 12-14 09:35:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed +peer1.org1.example.com | [4af 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +peer0.org2.example.com | [4d4 12-14 09:35:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer0.org1.example.com | [554 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +peer1.org1.example.com | [4b0 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer0.org2.example.com | [4d5 12-14 09:35:28.61 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 | [50d 12-14 09:35:30.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.5 +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [555 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421ec7500, header channel_header:"\010\003\032\013\010\317\213\311\321\005\020\270\271\2514\"\017businesschannel*@d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030v\377M'\2357\021\315-\351\035p%\010\326\n7\002\270C\306\302\201\373" +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +peer0.org2.example.com | [4d6 12-14 09:35:28.61 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... +peer1.org2.example.com | [50e 12-14 09:35:30.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | at ClientRequest.emit (events.js:188:7) +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +peer1.org1.example.com | [4b1 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fdc56067]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [4d7 12-14 09:35:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d603c8c4]Move state message READY +peer0.org1.example.com | [556 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org2.example.com | [50f 12-14 09:35:30.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +orderer.example.com | zekLSULI9G2UUYA77A== +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org1.example.com | [4b2 12-14 09:35:30.73 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 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org2.example.com | [4d8 12-14 09:35:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d603c8c4]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [4b3 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fdc56067]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [4d9 12-14 09:35:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [d603c8c4]Entered state ready +peer0.org2.example.com | [4da 12-14 09:35:28.61 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:d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d +peer1.org2.example.com | [510 12-14 09:35:30.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8e97d0fc]Inside sendExecuteMessage. Message TRANSACTION +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [558 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org2.example.com | [4dc 12-14 09:35:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU sending init completed +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [4b4 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fdc56067]Move state message TRANSACTION +explorer | at TLSSocket.emit (events.js:188:7) +peer1.org2.example.com | [511 12-14 09:35:30.72 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 | [559 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +orderer.example.com | [345 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +explorer | at emitErrorNT (net.js:1281:8) +peer0.org2.example.com | [4dd 12-14 09:35:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org1.example.com | [4b5 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fdc56067]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [512 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8e97d0fc]sendExecuteMsg trigger event TRANSACTION +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org1.example.com | [55a 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d] +peer1.org1.example.com | [4b6 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [4de 12-14 09:35:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [513 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8e97d0fc]Move state message TRANSACTION +peer0.org1.example.com | [55b 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer1.org1.example.com | [4b7 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fdc56067]sending state message TRANSACTION +peer1.org1.example.com | [4b8 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fdc56067]Received message TRANSACTION from shim +peer1.org1.example.com | [4b9 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fdc56067]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [4ba 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [fdc56067]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [4bb 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org1.example.com | [4bc 12-14 09:35:30.73 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 | [4bd 12-14 09:35:30.75 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [514 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8e97d0fc]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [55c 12-14 09:35:30.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 +peer0.org1.example.com | [55d 12-14 09:35:30.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 [88819dd6-0b0b-4368-8118-5be9406b69da] +peer0.org1.example.com | [55e 12-14 09:35:30.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.5,txid=828fe259-b82a-4ded-a1a8-db35663cab97,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer0.org1.example.com | [55f 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d chaindID businesschannel +peer0.org1.example.com | [560 12-14 09:35:30.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.5 +peer0.org1.example.com | [561 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [562 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer0.org1.example.com | [563 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [828fe259]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [564 12-14 09:35:30.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.org1.example.com | [565 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [828fe259]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [566 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [828fe259]Move state message TRANSACTION +peer0.org1.example.com | [567 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [828fe259]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [568 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [569 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [828fe259]sending state message TRANSACTION +peer0.org1.example.com | [56a 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [828fe259]Received message TRANSACTION from shim +peer0.org1.example.com | [56b 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [828fe259]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [56c 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [828fe259]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [56d 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org1.example.com | [56e 12-14 09:35:30.68 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 | [56f 12-14 09:35:30.69 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer0.org1.example.com | [570 12-14 09:35:30.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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [571 12-14 09:35:30.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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [572 12-14 09:35:30.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer0.org1.example.com | [573 12-14 09:35:30.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 [df03a7ed-35a8-49d6-bf22-fc91fe53627a] +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org1.example.com | [4be 12-14 09:35:30.75 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [4bf 12-14 09:35:30.75 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [4c0 12-14 09:35:30.75 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer1.org1.example.com | [4c1 12-14 09:35:30.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [88c7b888-4a05-409d-ae41-e7680f50ef93] +peer1.org1.example.com | [4c2 12-14 09:35:30.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org1.example.com | [4c3 12-14 09:35:30.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [88c7b888-4a05-409d-ae41-e7680f50ef93] +peer1.org1.example.com | [4c4 12-14 09:35:30.75 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +peer0.org2.example.com | [4df 12-14 09:35:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +peer0.org2.example.com | [4e0 12-14 09:35:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d603c8c4]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [4e1 12-14 09:35:28.61 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 | [4e2 12-14 09:35:28.61 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... +peer0.org2.example.com | [4e3 12-14 09:35:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d603c8c4]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [4db 12-14 09:35:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d603c8c4]sending state message READY +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [346 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [347 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org2.example.com | [515 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [574 12-14 09:35:30.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +explorer | [2017-12-14 09:35:52.151] [ERROR] Helper - admin enrollment failed +peer1.org1.example.com | [4c5 12-14 09:35:30.75 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)(0x9547d0)} +peer1.org1.example.com | [4c6 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated +peer1.org1.example.com | [4c7 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fdc56067]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [4c8 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fdc56067]Move state message COMPLETED +peer0.org2.example.com | [4e4 12-14 09:35:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d603c8c4]Move state message INIT +orderer.example.com | [348 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [349 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [34a 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [34b 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +orderer.example.com | RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +orderer.example.com | kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +orderer.example.com | VA7fF8MfGA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [34c 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [34d 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +peer0.org1.example.com | [575 12-14 09:35:30.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [df03a7ed-35a8-49d6-bf22-fc91fe53627a] +peer0.org1.example.com | [576 12-14 09:35:30.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +peer0.org1.example.com | [577 12-14 09:35:30.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)(0x9547d0)} +peer0.org1.example.com | [578 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated +peer0.org1.example.com | [579 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [828fe259]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [57a 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [828fe259]Move state message COMPLETED +peer0.org1.example.com | [57b 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [828fe259]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [57c 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [828fe259]send state message COMPLETED +peer1.org2.example.com | [516 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8e97d0fc]sending state message TRANSACTION +peer1.org1.example.com | [4c9 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fdc56067]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [4ca 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fdc56067]send state message COMPLETED +peer1.org1.example.com | [4cb 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fdc56067]Received message COMPLETED from shim +peer1.org1.example.com | [4cc 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fdc56067]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [4cd 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fdc56067-5b2b-4506-9458-0d30e46d6bcc]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [4ce 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:fdc56067-5b2b-4506-9458-0d30e46d6bcc +peer1.org1.example.com | [4cf 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [4e5 12-14 09:35:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d603c8c4]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [4e6 12-14 09:35:28.61 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 | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +explorer | [2017-12-14 09:35:52.152] [ERROR] Query - Error: Missing userContext parameter +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | [2017-12-14 09:35:52.152] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 196): Error: Cannot save null userContext. +peer1.org1.example.com | [4d0 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d, error Chaincode mycc is already instantiated +peer0.org1.example.com | [57d 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [828fe259]Received message COMPLETED from shim +peer0.org1.example.com | [57e 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [828fe259]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [4e7 12-14 09:35:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d603c8c4]sending state message INIT +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:35:52.166] [ERROR] Query - Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:35:53.251] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +explorer | [2017-12-14 09:35:53.252] [ERROR] Helper - admin enrollment failed +explorer | [2017-12-14 09:35:53.253] [ERROR] Query - Error: Missing userContext parameter +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org1.example.com | [4d1 12-14 09:35:30.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 [24b5fda6-83b5-4648-af21-897274fd21f2] +peer1.org2.example.com | [517 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e97d0fc]Received message TRANSACTION from shim +explorer | [2017-12-14 09:35:53.254] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [57f 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [828fe259-b82a-4ded-a1a8-db35663cab97]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [580 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:828fe259-b82a-4ded-a1a8-db35663cab97 +peer0.org1.example.com | [581 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [4d2 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d returned error Chaincode mycc is already instantiated +peer1.org1.example.com | [4d3 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org1.example.com | [4d4 12-14 09:35:30.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] +peer1.org1.example.com | [4d5 12-14 09:35:30.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)(0xc422079e40), Data:(*common.BlockData)(0xc42176cfe0), Metadata:(*common.BlockMetadata)(0xc42176d020)}, doMVCCValidation=true +peer1.org1.example.com | [4d6 12-14 09:35:30.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.org1.example.com | [4d7 12-14 09:35:30.76 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.org2.example.com | [4e8 12-14 09:35:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d603c8c4]Received message PUT_STATE from shim +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 199): Error: Cannot save null userContext. +peer1.org2.example.com | [518 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8e97d0fc]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [519 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8e97d0fc]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [51a 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org2.example.com | [51b 12-14 09:35:30.76 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 | [51c 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer1.org2.example.com | [51d 12-14 09:35:30.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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [582 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d, error Chaincode mycc is already instantiated +peer1.org1.example.com | [4d8 12-14 09:35:30.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0xe1, 0xaa, 0x67, 0x31, 0xdc, 0xd6, 0xb, 0x9f, 0xdb, 0x7e, 0x68, 0xf9, 0x7b, 0x5b, 0x52, 0x72, 0x93, 0x51, 0x28, 0x46, 0xf3, 0x9c, 0xb6, 0x5d, 0xd4, 0x48, 0xaf, 0x4, 0xaa, 0x49, 0xd5, 0x9b} txOffsets= +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [34e 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [34f 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [350 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [351 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [352 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer1.org2.example.com | [51e 12-14 09:35:30.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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | txId=d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d locPointer=offset=70, bytesLength=3388 +peer1.org1.example.com | ] +peer1.org1.example.com | [4d9 12-14 09:35:30.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44796, bytesLength=3388] for tx ID: [d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d] to index +peer0.org2.example.com | [4e9 12-14 09:35:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d603c8c4]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer1.org2.example.com | [51f 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer0.org1.example.com | [583 12-14 09:35:30.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 [88819dd6-0b0b-4368-8118-5be9406b69da] +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org1.example.com | [4da 12-14 09:35:30.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44796, bytesLength=3388] for tx number:[0] ID: [d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d] to blockNumTranNum index +peer0.org2.example.com | [4ea 12-14 09:35:28.61 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 | [353 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer1.org2.example.com | [520 12-14 09:35:30.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 [d247fa9d-e95d-4180-9445-47c840694ca2] +peer0.org1.example.com | [584 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d returned error Chaincode mycc is already instantiated +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [4db 12-14 09:35:30.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49945], isChainEmpty=[false], lastBlockNumber=[4] +peer0.org2.example.com | [4eb 12-14 09:35:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d603c8c4]state is ready +orderer.example.com | [354 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer1.org2.example.com | [521 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [585 12-14 09:35:30.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org1.example.com | [4dc 12-14 09:35:30.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) +peer0.org2.example.com | [4ec 12-14 09:35:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d603c8c4]Completed PUT_STATE. Sending RESPONSE +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +orderer.example.com | [355 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [4ed 12-14 09:35:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d603c8c4]enterBusyState trigger event RESPONSE +peer1.org2.example.com | [522 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [d247fa9d-e95d-4180-9445-47c840694ca2] +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [586 12-14 09:35:30.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] +peer1.org1.example.com | [4dd 12-14 09:35:30.77 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 | [356 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [523 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +peer0.org2.example.com | [4ee 12-14 09:35:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d603c8c4]Move state message RESPONSE +explorer | [2017-12-14 09:35:53.279] [ERROR] Query - Error: Connect Failed +peer0.org1.example.com | [587 12-14 09:35:30.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)(0xc42275dc00), Data:(*common.BlockData)(0xc4219bc060), Metadata:(*common.BlockMetadata)(0xc4219bc0a0)}, doMVCCValidation=true +peer0.org2.example.com | [4ef 12-14 09:35:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d603c8c4]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer1.org1.example.com | [4de 12-14 09:35:30.77 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 | [524 12-14 09:35:30.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)(0x9547d0)} +orderer.example.com | [357 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [588 12-14 09:35:30.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 +peer1.org1.example.com | [4df 12-14 09:35:30.77 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 | [4f0 12-14 09:35:28.62 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 | [525 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated +orderer.example.com | [358 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +explorer | [2017-12-14 09:35:54.479] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer0.org1.example.com | [589 12-14 09:35:30.74 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.org2.example.com | [4f1 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d603c8c4]sending state message RESPONSE +peer1.org1.example.com | [4e0 12-14 09:35:30.77 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 +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +orderer.example.com | [359 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org1.example.com | [58a 12-14 09:35:30.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0xe1, 0xaa, 0x67, 0x31, 0xdc, 0xd6, 0xb, 0x9f, 0xdb, 0x7e, 0x68, 0xf9, 0x7b, 0x5b, 0x52, 0x72, 0x93, 0x51, 0x28, 0x46, 0xf3, 0x9c, 0xb6, 0x5d, 0xd4, 0x48, 0xaf, 0x4, 0xaa, 0x49, 0xd5, 0x9b} txOffsets= +peer0.org2.example.com | [4f2 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d603c8c4]Received message PUT_STATE from shim +peer1.org1.example.com | [4e1 12-14 09:35:30.77 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 +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [526 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e97d0fc]Transaction completed. Sending COMPLETED +orderer.example.com | [35a 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | txId=d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d locPointer=offset=70, bytesLength=3388 +peer0.org2.example.com | [4f3 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d603c8c4]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +explorer | at ClientRequest.emit (events.js:188:7) +peer1.org2.example.com | [527 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e97d0fc]Move state message COMPLETED +peer1.org1.example.com | [4e2 12-14 09:35:30.77 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 | [35b 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org2.example.com | [4f4 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer0.org1.example.com | ] +peer1.org2.example.com | [528 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8e97d0fc]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [35c 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org1.example.com | [4e3 12-14 09:35:30.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [58b 12-14 09:35:30.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44796, bytesLength=3388] for tx ID: [d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d] to index +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [4f5 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d603c8c4]state is ready +orderer.example.com | [35d 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [529 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e97d0fc]send state message COMPLETED +peer1.org1.example.com | [4e4 12-14 09:35:30.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org1.example.com | [58c 12-14 09:35:30.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44796, bytesLength=3388] for tx number:[0] ID: [d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d] to blockNumTranNum index +orderer.example.com | [35e 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [52a 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8e97d0fc]Received message COMPLETED from shim +peer0.org2.example.com | [4f6 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d603c8c4]Completed PUT_STATE. Sending RESPONSE +peer1.org1.example.com | [4e5 12-14 09:35:30.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] +peer0.org1.example.com | [58d 12-14 09:35:30.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=[49945], isChainEmpty=[false], lastBlockNumber=[4] +explorer | at emitErrorNT (net.js:1281:8) +orderer.example.com | [35f 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org2.example.com | [4f7 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d603c8c4]enterBusyState trigger event RESPONSE +peer1.org2.example.com | [52b 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8e97d0fc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [4e6 12-14 09:35:30.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org1.example.com | [58e 12-14 09:35:30.75 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 | [360 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [4e7 12-14 09:35:30.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [52c 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8e97d0fc-a9a6-43e8-b9f9-89ede55f8b3c]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [58f 12-14 09:35:30.75 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 | [4e8 12-14 09:35:30.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | [361 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org2.example.com | [4f8 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d603c8c4]Move state message RESPONSE +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org2.example.com | [52d 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8e97d0fc-a9a6-43e8-b9f9-89ede55f8b3c +peer1.org1.example.com | [4e9 12-14 09:35:30.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +orderer.example.com | [362 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [590 12-14 09:35:30.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.org2.example.com | [4f9 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d603c8c4]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer0.org2.example.com | [4fa 12-14 09:35:28.62 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 | [52e 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +explorer | [2017-12-14 09:35:54.479] [ERROR] Helper - admin enrollment failed +orderer.example.com | [363 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [591 12-14 09:35:30.75 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 | [4ea 12-14 09:35:30.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org2.example.com | [4fb 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d603c8c4]sending state message RESPONSE +peer1.org2.example.com | [52f 12-14 09:35:30.77 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d, error Chaincode mycc is already instantiated +explorer | [2017-12-14 09:35:54.480] [ERROR] Query - Error: Missing userContext parameter +orderer.example.com | [364 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [4eb 12-14 09:35:47.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer1.org2.example.com | [530 12-14 09:35:30.77 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 [8e8208e2-9a42-46fe-a953-0ae10b7a2249] +peer0.org1.example.com | [592 12-14 09:35:30.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 [4] with [1] transactions +peer0.org2.example.com | [4fc 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d603c8c4]Received message COMPLETED from shim +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org1.example.com | [4ec 12-14 09:35:47.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421b84a80 +peer1.org2.example.com | [531 12-14 09:35:30.77 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d returned error Chaincode mycc is already instantiated +orderer.example.com | [365 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [593 12-14 09:35:30.75 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 | [4fd 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d603c8c4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [4ed 12-14 09:35:47.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 | [366 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer1.org2.example.com | [532 12-14 09:35:30.77 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org2.example.com | [4fe 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [594 12-14 09:35:30.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 [4] +peer1.org1.example.com | [4ee 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [533 12-14 09:35:30.77 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 | [595 12-14 09:35:30.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +orderer.example.com | [367 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [4ff 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d +peer1.org1.example.com | [4ef 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} +peer1.org2.example.com | [534 12-14 09:35:30.77 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)(0xc421ccfcc0), Data:(*common.BlockData)(0xc4216f9e80), Metadata:(*common.BlockMetadata)(0xc4216f9ec0)}, doMVCCValidation=true +peer1.org2.example.com | [535 12-14 09:35:30.77 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 | [368 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [596 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d +peer1.org1.example.com | [4f0 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +explorer | [2017-12-14 09:35:54.480] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer1.org2.example.com | [536 12-14 09:35:30.77 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.org2.example.com | [500 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [369 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [501 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [4f1 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [537 12-14 09:35:30.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0xe1, 0xaa, 0x67, 0x31, 0xdc, 0xd6, 0xb, 0x9f, 0xdb, 0x7e, 0x68, 0xf9, 0x7b, 0x5b, 0x52, 0x72, 0x93, 0x51, 0x28, 0x46, 0xf3, 0x9c, 0xb6, 0x5d, 0xd4, 0x48, 0xaf, 0x4, 0xaa, 0x49, 0xd5, 0x9b} txOffsets= +peer0.org1.example.com | [597 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer0.org2.example.com | [502 12-14 09:35: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 +peer1.org1.example.com | [4f2 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4218f09b0, header 0xc421b84ab0 +peer1.org2.example.com | txId=d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d locPointer=offset=70, bytesLength=3388 +orderer.example.com | [36a 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [598 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org2.example.com | [503 12-14 09:35: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 [540ad313-75cb-46e8-a6cb-5aa13f663152] +peer1.org2.example.com | ] +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +orderer.example.com | [36b 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org1.example.com | [599 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [4f3 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" +peer1.org2.example.com | [538 12-14 09:35:30.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44796, bytesLength=3388] for tx ID: [d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d] to index +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 202): Error: Cannot save null userContext. +peer0.org2.example.com | [504 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [59a 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | [36c 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [539 12-14 09:35:30.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44796, bytesLength=3388] for tx number:[0] ID: [d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d] to blockNumTranNum index +peer0.org2.example.com | [505 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d channel id: businesschannel chaincode id: name:"lscc" +peer0.org1.example.com | [59b 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org1.example.com | [4f4 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: c4f7351544b90404a46bf1830fb8680fc9dbcd54b5c5a9859dd7b5d38ecaba54 +peer1.org2.example.com | [53a 12-14 09:35:30.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=[49945], isChainEmpty=[false], lastBlockNumber=[4] +orderer.example.com | [36d 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [59c 12-14 09:35:30.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [506 12-14 09:35: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 +peer1.org1.example.com | [4f5 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c4f7351544b90404a46bf1830fb8680fc9dbcd54b5c5a9859dd7b5d38ecaba54] +peer1.org2.example.com | [53b 12-14 09:35:30.78 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 | [59d 12-14 09:35:47.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org2.example.com | [508 12-14 09:35:28.62 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 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer1.org1.example.com | [4f6 12-14 09:35:47.30 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 | [53c 12-14 09:35:30.78 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 | [36e 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer0.org2.example.com | [507 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d channel id: businesschannel version: 1.0.5 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [59e 12-14 09:35:47.15 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4216b13b0 +peer1.org2.example.com | [53d 12-14 09:35:46.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer1.org2.example.com-mycc-1.0-26c2ef32838554aac4f7ad6f100aca865e87959c9a126e86d764c8d01f8346ab +peer0.org2.example.com | [509 12-14 09:35:28.62 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, 0x6d, 0x79, 0x63, 0x63}] +peer0.org1.example.com | [59f 12-14 09:35:47.15 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 | [4f7 12-14 09:35:47.30 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 [e4070b6d-b68e-4f19-8e18-db298feb7290] +orderer.example.com | [36f 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +explorer | [2017-12-14 09:35:54.494] [ERROR] Query - Error: Connect Failed +peer1.org2.example.com | [53e 12-14 09:35:46.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +peer0.org2.example.com | [50a 12-14 09:35: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.5,txid=d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d,syscc=true,proposal=0xc4221f9b80,canname=escc:1.0.5 +peer1.org1.example.com | [4f8 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: c4f7351544b90404a46bf1830fb8680fc9dbcd54b5c5a9859dd7b5d38ecaba54 channel id: businesschannel +orderer.example.com | [370 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer1.org2.example.com | [53f 12-14 09:35:46.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-mycc-1.0 +peer0.org2.example.com | [50c 12-14 09:35: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.5 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [5a0 12-14 09:35:47.15 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [540 12-14 09:35:46.54 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org2.example.com-mycc-1.0-26c2ef32838554aac4f7ad6f100aca865e87959c9a126e86d764c8d01f8346ab +peer0.org2.example.com | [50b 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +orderer.example.com | [371 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [4f9 12-14 09:35:47.30 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.5,txid=c4f7351544b90404a46bf1830fb8680fc9dbcd54b5c5a9859dd7b5d38ecaba54,syscc=true,proposal=0xc4218f09b0,canname=lscc:1.0.5 +explorer | [2017-12-14 09:35:55.577] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer1.org2.example.com | [541 12-14 09:35:46.98 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org2.example.com-mycc-1.0 +peer0.org2.example.com | [50e 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +peer0.org1.example.com | [5a1 12-14 09:35:47.15 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +orderer.example.com | [372 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org2.example.com | [542 12-14 09:35:46.98 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org2.example.com-mycc-1.0) +peer1.org1.example.com | [4fa 12-14 09:35:47.30 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.5 +peer0.org2.example.com | [50d 12-14 09:35: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 | [5a2 12-14 09:35:47.15 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 | [543 12-14 09:35:47.02 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 | [4fb 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [373 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [5a3 12-14 09:35:47.15 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [50f 12-14 09:35: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.5 +peer1.org2.example.com | [544 12-14 09:35:47.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +explorer | at ClientRequest.emit (events.js:188:7) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +orderer.example.com | [374 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org1.example.com | [4fc 12-14 09:35:47.30 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.5 +peer1.org2.example.com | [545 12-14 09:35:47.02 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.org2.example.com | [510 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d603c8c4]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [5a4 12-14 09:35:47.15 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4202c0af0, header 0xc4216b13e0 +orderer.example.com | [375 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org2.example.com | [546 12-14 09:35:47.02 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 +explorer | at emitErrorNT (net.js:1281:8) +peer1.org1.example.com | [4fd 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c4f73515]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [5a5 12-14 09:35:47.15 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" +peer0.org2.example.com | [511 12-14 09:35: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... +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer1.org2.example.com | [547 12-14 09:35:47.02 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 mycc:1.0 +orderer.example.com | [376 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [5a6 12-14 09:35:47.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442 +peer1.org1.example.com | [4fe 12-14 09:35:47.30 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.org2.example.com | [512 12-14 09:35: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... +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +orderer.example.com | [377 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org2.example.com | [548 12-14 09:35:47.02 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:"mycc:1.0" , sending back REGISTERED +peer1.org1.example.com | [4ff 12-14 09:35:47.30 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 | [5a7 12-14 09:35:47.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442] +peer0.org2.example.com | [513 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d603c8c4]sendExecuteMsg trigger event TRANSACTION +explorer | [2017-12-14 09:35:55.577] [ERROR] Helper - admin enrollment failed +peer1.org2.example.com | [549 12-14 09:35:47.02 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 | [500 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c4f73515]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [514 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d603c8c4]Move state message TRANSACTION +orderer.example.com | [378 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [5a8 12-14 09:35:47.15 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 +explorer | [2017-12-14 09:35:55.578] [ERROR] Query - Error: Missing userContext parameter +peer1.org2.example.com | [54a 12-14 09:35:47.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed +orderer.example.com | [379 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org1.example.com | [5a9 12-14 09:35:47.15 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 [ef271dcf-87c4-4cde-983b-c3c8962e1c86] +peer1.org1.example.com | [501 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4f73515]Move state message TRANSACTION +peer0.org2.example.com | [515 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d603c8c4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer1.org2.example.com | [54b 12-14 09:35:47.02 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 | [37a 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [5aa 12-14 09:35:47.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442 channel id: businesschannel +peer1.org1.example.com | [502 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4f73515]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer0.org2.example.com | [516 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [37b 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org2.example.com | [54c 12-14 09:35:47.02 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.org1.example.com | [503 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer0.org2.example.com | [517 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d603c8c4]sending state message TRANSACTION +peer0.org1.example.com | [5ab 12-14 09:35:47.15 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.5,txid=c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442,syscc=true,proposal=0xc4202c0af0,canname=lscc:1.0.5 +orderer.example.com | [37c 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org1.example.com | [504 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4f73515]sending state message TRANSACTION +peer1.org2.example.com | [54d 12-14 09:35:47.02 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... +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org2.example.com | [518 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d603c8c4]Received message TRANSACTION from shim +peer0.org1.example.com | [5ac 12-14 09:35:47.15 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.5 +peer1.org1.example.com | [505 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4f73515]Received message TRANSACTION from shim +orderer.example.com | [37d 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org2.example.com | [54e 12-14 09:35:47.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8798425c]Move state message READY +peer0.org2.example.com | [519 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d603c8c4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +explorer | [2017-12-14 09:35:55.578] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer0.org1.example.com | [5ad 12-14 09:35:47.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [37e 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [506 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4f73515]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [51a 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d603c8c4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [54f 12-14 09:35:47.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8798425c]Fabric side Handling ChaincodeMessage of type: READY in state established +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +orderer.example.com | [37f 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org1.example.com | [5ae 12-14 09:35:47.15 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.5 +peer0.org2.example.com | [51b 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org2.example.com | [550 12-14 09:35:47.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [8798425c]Entered state ready +peer1.org1.example.com | [507 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c4f73515]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [380 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [5af 12-14 09:35:47.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c604fc3a]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [51c 12-14 09:35:28.62 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 | [508 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c4f73515]Sending GET_STATE +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 205): Error: Cannot save null userContext. +peer1.org2.example.com | [551 12-14 09:35:47.02 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:8798425c80346bce8bf0031754a54e67a52963adbc288bb7c51e218de9f75002 +orderer.example.com | [381 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | [382 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +peer0.org2.example.com | [51d 12-14 09:35:28.62 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 | [51e 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org2.example.com | [51f 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d603c8c4]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [520 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d603c8c4]Move state message COMPLETED +peer0.org2.example.com | [521 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d603c8c4]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [383 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200268a0 gate 1513244079586774500 evaluation starts +peer0.org1.example.com | [5b0 12-14 09:35:47.15 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 | [552 12-14 09:35:47.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8798425c]sending state message READY +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org1.example.com | [509 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4f73515]Received message GET_STATE from shim +peer1.org1.example.com | [50a 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4f73515]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [522 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d603c8c4]send state message COMPLETED +peer0.org2.example.com | [524 12-14 09:35:28.62 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 | [525 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org2.example.com | [526 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b +orderer.example.com | [384 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200268a0 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [50b 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c4f73515]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [553 12-14 09:35:47.02 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 | [5b1 12-14 09:35:47.15 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 | [5b2 12-14 09:35:47.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c604fc3a]sendExecuteMsg trigger event TRANSACTION +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | [385 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200268a0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +peer1.org1.example.com | [50c 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [554 12-14 09:35:47.02 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 | [527 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] +peer0.org1.example.com | [5b3 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c604fc3a]Move state message TRANSACTION +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +orderer.example.com | [386 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [50d 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c4f73515] getting state for chaincode lscc, key mycc, channel businesschannel +peer0.org2.example.com | [528 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [555 12-14 09:35:47.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [5b4 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c604fc3a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [529 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [50e 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [5b5 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [5b6 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c604fc3a]sending state message TRANSACTION +peer0.org1.example.com | [5b7 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c604fc3a]Received message TRANSACTION from shim +peer0.org1.example.com | [5b8 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c604fc3a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +explorer | [2017-12-14 09:35:55.595] [ERROR] Query - Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | [2017-12-14 09:35:56.678] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [5b9 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c604fc3a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [50f 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c4f73515]Got state. Sending RESPONSE +peer1.org2.example.com | [556 12-14 09:35:47.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +peer0.org2.example.com | [52a 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +explorer | at emitOne (events.js:96:13) +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org1.example.com | [5ba 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c604fc3a]Sending GET_STATE +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +explorer | at emitOne (events.js:96:13) +explorer | at TLSSocket.emit (events.js:188:7) +explorer | at emitErrorNT (net.js:1281:8) +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +explorer | [2017-12-14 09:35:56.678] [ERROR] Helper - admin enrollment failed +explorer | [2017-12-14 09:35:56.678] [ERROR] Query - Error: Missing userContext parameter +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer1.org1.example.com | [510 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c4f73515]handleGetState serial send RESPONSE +peer1.org1.example.com | [511 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4f73515]Received message RESPONSE from shim +peer1.org2.example.com | [557 12-14 09:35:47.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8798425c]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [558 12-14 09:35:47.02 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 | [559 12-14 09:35:47.02 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 | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org2.example.com | [55a 12-14 09:35:47.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8798425c]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [52b 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org1.example.com | [512 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4f73515]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [5bb 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c604fc3a]Received message GET_STATE from shim +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +peer0.org2.example.com | [52c 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org1.example.com | [513 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c4f73515]before send +peer1.org2.example.com | [55b 12-14 09:35:47.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8798425c]Move state message TRANSACTION +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +peer0.org1.example.com | [5bc 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c604fc3a]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [523 12-14 09:35:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d603c8c4]Received message COMPLETED from shim +peer1.org2.example.com | [55c 12-14 09:35:47.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8798425c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +peer1.org1.example.com | [514 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c4f73515]after send +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [55d 12-14 09:35:47.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 | [52d 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d603c8c4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | zekLSULI9G2UUYA77A== +explorer | [2017-12-14 09:35:56.678] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer1.org2.example.com | [55e 12-14 09:35:47.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8798425c]sending state message TRANSACTION +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [5bd 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c604fc3a]Received GET_STATE, invoking get state from ledger +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer0.org2.example.com | [52e 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [5be 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [55f 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8798425c]Received message GET_STATE from shim +orderer.example.com | [387 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +peer1.org1.example.com | [515 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [c4f73515]Received RESPONSE, communicated (state:ready) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [5bf 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c604fc3a] getting state for chaincode lscc, key mycc, channel businesschannel +peer1.org2.example.com | [560 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8798425c]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [52f 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d +peer1.org1.example.com | [516 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c4f73515]GetState received payload RESPONSE +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 208): Error: Cannot save null userContext. +peer0.org1.example.com | [5c0 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org2.example.com | [561 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [8798425c]Received GET_STATE, invoking get state from ledger +peer1.org1.example.com | [517 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4f73515]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [530 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +orderer.example.com | [388 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200268a0 principal matched by identity 0 +peer0.org1.example.com | [5c1 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c604fc3a]Got state. Sending RESPONSE +peer1.org1.example.com | [518 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4f73515]Move state message COMPLETED +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [562 12-14 09:35:47.03 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 | [5c2 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c604fc3a]handleGetState serial send RESPONSE +peer1.org1.example.com | [519 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4f73515]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [531 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [389 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 da dd 74 a9 35 9f 1f 14 e0 3c dd 86 1f 57 bf ba |..t.5....<...W..| +peer1.org1.example.com | [51a 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4f73515]send state message COMPLETED +peer0.org1.example.com | [5c3 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c604fc3a]Received message RESPONSE from shim +peer0.org2.example.com | [532 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer1.org2.example.com | [563 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8798425c] getting state for chaincode mycc, key a, channel businesschannel +orderer.example.com | 00000010 5e 42 96 9e e3 02 d8 b0 af 35 ce ae 94 24 39 56 |^B.......5...$9V| +peer1.org1.example.com | [51b 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4f73515]Received message COMPLETED from shim +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [533 12-14 09:35:28.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 [540ad313-75cb-46e8-a6cb-5aa13f663152] +peer1.org2.example.com | [564 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a +orderer.example.com | [38a 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c8 49 2b 30 49 6a be d9 eb a3 c9 |0E.!..I+0Ij.....| +peer1.org1.example.com | [51c 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4f73515]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [5c4 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c604fc3a]Handling ChaincodeMessage of type: RESPONSE(state:ready) +explorer | [2017-12-14 09:35:56.693] [ERROR] Query - Error: Connect Failed +peer1.org1.example.com | [51d 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4f7351544b90404a46bf1830fb8680fc9dbcd54b5c5a9859dd7b5d38ecaba54]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [534 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org2.example.com | [565 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8798425c]Got state. Sending RESPONSE +orderer.example.com | 00000010 b1 d7 c2 5c db 7d 7f 01 f0 f4 c5 4c a2 2a 38 b4 |...\.}.....L.*8.| +peer0.org1.example.com | [5c5 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c604fc3a]before send +peer0.org1.example.com | [5c6 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c604fc3a]after send +peer0.org1.example.com | [5c7 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [c604fc3a]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [5c8 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c604fc3a]GetState received payload RESPONSE +peer1.org2.example.com | [566 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [8798425c]handleGetState serial send RESPONSE +orderer.example.com | 00000020 03 c8 6f ec f5 02 20 26 98 0f ec d7 1d 2d b0 ca |..o... &.....-..| +peer1.org1.example.com | [51e 12-14 09:35:47.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c4f7351544b90404a46bf1830fb8680fc9dbcd54b5c5a9859dd7b5d38ecaba54 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [535 12-14 09:35:30.65 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] +peer0.org1.example.com | [5c9 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c604fc3a]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [567 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8798425c]Received message COMPLETED from shim +peer1.org1.example.com | [51f 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +explorer | [2017-12-14 09:35:57.772] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer0.org2.example.com | [536 12-14 09:35:30.65 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] +orderer.example.com | 00000030 7b 73 23 a7 15 35 c6 37 da c7 d0 f8 5a 99 85 fc |{s#..5.7....Z...| +orderer.example.com | 00000040 5a f7 c3 eb b0 dd b3 |Z......| +peer0.org1.example.com | [5ca 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c604fc3a]Move state message COMPLETED +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer1.org1.example.com | [520 12-14 09:35:47.31 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 | [38b 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200268a0 principal evaluation succeeds for identity 0 +peer0.org2.example.com | [537 12-14 09:35:30.65 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [5cb 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c604fc3a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [521 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c4f7351544b90404a46bf1830fb8680fc9dbcd54b5c5a9859dd7b5d38ecaba54 channel id: businesschannel version: 1.0 +peer1.org2.example.com | [568 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8798425c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [5cc 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c604fc3a]send state message COMPLETED +orderer.example.com | [38c 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200268a0 gate 1513244079586774500 evaluation succeeds +peer0.org2.example.com | [538 12-14 09:35:30.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org1.example.com | [522 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=c4f7351544b90404a46bf1830fb8680fc9dbcd54b5c5a9859dd7b5d38ecaba54,syscc=false,proposal=0xc4218f09b0,canname=mycc:1.0 +explorer | at ClientRequest.emit (events.js:188:7) +peer1.org2.example.com | [569 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8798425c80346bce8bf0031754a54e67a52963adbc288bb7c51e218de9f75002]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [5cd 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c604fc3a]Received message COMPLETED from shim +peer1.org1.example.com | [523 12-14 09:35:47.31 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.5,txid=c4f7351544b90404a46bf1830fb8680fc9dbcd54b5c5a9859dd7b5d38ecaba54,syscc=true,proposal=0xc4218f09b0,canname=lscc:1.0.5 +orderer.example.com | [38d 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [539 12-14 09:35:30.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org2.example.com | [56a 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8798425c80346bce8bf0031754a54e67a52963adbc288bb7c51e218de9f75002 +peer0.org1.example.com | [5ce 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c604fc3a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [524 12-14 09:35:47.31 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.5 +peer0.org2.example.com | [53a 12-14 09:35:30.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42225a240 +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer0.org1.example.com | [5cf 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [525 12-14 09:35:47.31 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 | [56b 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [38e 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [5d0 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442 +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [53b 12-14 09:35:30.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\317\213\311\321\005\020\270\271\2514\"\017businesschannel*@d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030v\377M'\2357\021\315-\351\035p%\010\326\n7\002\270C\306\302\201\373" +orderer.example.com | [38f 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [526 12-14 09:35:47.31 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.5 +explorer | at TLSSocket.emit (events.js:188:7) +peer1.org2.example.com | [56c 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [53c 12-14 09:35:30.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [5d1 12-14 09:35:47.16 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 | [527 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c4f73515]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [390 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [56d 12-14 09:35:47.03 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 | [53d 12-14 09:35:30.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +explorer | at emitErrorNT (net.js:1281:8) +peer1.org1.example.com | [528 12-14 09:35:47.31 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 | [5d2 12-14 09:35:47.16 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 | [53e 12-14 09:35:30.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} +peer1.org1.example.com | [529 12-14 09:35:47.31 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... +orderer.example.com | [391 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [5d3 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442 channel id: businesschannel version: 1.0 +peer0.org2.example.com | [53f 12-14 09:35:30.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer1.org1.example.com | [52a 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c4f73515]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [56e 12-14 09:35:47.03 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 [101157fc-e8ed-4f9e-af56-2590ffba6ce0] +peer0.org1.example.com | [5d4 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442,syscc=false,proposal=0xc4202c0af0,canname=mycc:1.0 +peer0.org1.example.com | [5d5 12-14 09:35:47.16 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) : mycc:1.0 +peer0.org1.example.com | [5d6 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org2.example.com | [56f 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [540 12-14 09:35:30.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [52b 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4f73515]Move state message TRANSACTION +peer0.org1.example.com | [5d7 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +orderer.example.com | [392 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +explorer | [2017-12-14 09:35:57.772] [ERROR] Helper - admin enrollment failed +peer0.org2.example.com | [541 12-14 09:35:30.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421dc6a80, header channel_header:"\010\003\032\013\010\317\213\311\321\005\020\270\271\2514\"\017businesschannel*@d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030v\377M'\2357\021\315-\351\035p%\010\326\n7\002\270C\306\302\201\373" +peer1.org2.example.com | [571 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 8798425c80346bce8bf0031754a54e67a52963adbc288bb7c51e218de9f75002 channel id: businesschannel chaincode id: name:"mycc" +peer1.org1.example.com | [52c 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4f73515]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [5d8 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c604fc3a]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [542 12-14 09:35:30.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +explorer | [2017-12-14 09:35:57.773] [ERROR] Query - Error: Missing userContext parameter +orderer.example.com | [393 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer0.org1.example.com | [5d9 12-14 09:35:47.16 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 | [5da 12-14 09:35:47.16 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 | [5db 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c604fc3a]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [543 12-14 09:35:30.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +orderer.example.com | [394 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [52d 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [570 12-14 09:35:47.03 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 | [5dc 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c604fc3a]Move state message TRANSACTION +peer0.org2.example.com | [544 12-14 09:35:30.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +orderer.example.com | [395 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [5dd 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c604fc3a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [572 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +peer0.org2.example.com | [545 12-14 09:35:30.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +orderer.example.com | [396 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [5de 12-14 09:35:47.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.org1.example.com | [52e 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4f73515]sending state message TRANSACTION +peer0.org2.example.com | [546 12-14 09:35:30.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d] +orderer.example.com | [397 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [5df 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c604fc3a]sending state message TRANSACTION +peer1.org1.example.com | [52f 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4f73515]Received message TRANSACTION from shim +peer0.org2.example.com | [547 12-14 09:35:30.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +orderer.example.com | [398 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [573 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 8798425c80346bce8bf0031754a54e67a52963adbc288bb7c51e218de9f75002 channel id: businesschannel version: 1.0.5 +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer0.org1.example.com | [5e0 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c604fc3a]Received message GET_STATE from shim +peer0.org2.example.com | [548 12-14 09:35:30.66 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 | [399 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [5e1 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c604fc3a]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [574 12-14 09:35:47.03 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.5,txid=8798425c80346bce8bf0031754a54e67a52963adbc288bb7c51e218de9f75002,syscc=true,proposal=0xc42268a8c0,canname=escc:1.0.5 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org2.example.com | [549 12-14 09:35:30.66 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 [5d44348d-0859-4e24-9955-5ce2fb5b45fd] +peer1.org1.example.com | [530 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4f73515]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [39a 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [5e2 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c604fc3a]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [575 12-14 09:35:47.03 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.5 +peer0.org2.example.com | [54a 12-14 09:35:30.66 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=1b0a6fca-ee8f-4f8f-aaec-3653b219a5de,syscc=true,proposal=0x0,canname=vscc:1.0.5 +explorer | [2017-12-14 09:35:57.773] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer1.org1.example.com | [531 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c4f73515]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [39b 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [5e3 12-14 09:35:47.16 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 | [54b 12-14 09:35:30.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d chaindID businesschannel +peer1.org2.example.com | [576 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer0.org1.example.com | [5e4 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c604fc3a] getting state for chaincode mycc, key a, channel businesschannel +peer0.org2.example.com | [54c 12-14 09:35:30.66 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.5 +orderer.example.com | [39c 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [532 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c4f73515]Sending GET_STATE +peer0.org1.example.com | [5e5 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [577 12-14 09:35:47.03 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.5 +peer0.org2.example.com | [54d 12-14 09:35:30.66 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [39d 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [533 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4f73515]Received message GET_STATE from shim +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 211): Error: Cannot save null userContext. +peer0.org1.example.com | [5e6 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c604fc3a]Got state. Sending RESPONSE +orderer.example.com | [39e 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [578 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8798425c]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [534 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4f73515]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [5e7 12-14 09:35:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c604fc3a]handleGetState serial send RESPONSE +peer0.org2.example.com | [54e 12-14 09:35:30.66 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +orderer.example.com | [39f 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [579 12-14 09:35:47.03 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 | [5e8 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c604fc3a]Received message GET_STATE from shim +peer1.org1.example.com | [535 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c4f73515]Received GET_STATE, invoking get state from ledger +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | [3a0 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +peer0.org1.example.com | [5e9 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c604fc3a]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [536 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [54f 12-14 09:35:30.66 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1b0a6fca]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [57a 12-14 09:35:47.03 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 | [3a1 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org1.example.com | [5ea 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c604fc3a]Received GET_STATE, invoking get state from ledger +peer0.org2.example.com | [550 12-14 09:35:30.66 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | [2017-12-14 09:35:57.790] [ERROR] Query - Error: Connect Failed +orderer.example.com | [3a2 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [5eb 12-14 09:35:47.17 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 | [57b 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8798425c]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [57c 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8798425c]Move state message TRANSACTION +peer1.org2.example.com | [57d 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8798425c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [57f 12-14 09:35:47.03 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 | [551 12-14 09:35:30.66 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1b0a6fca]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [5ec 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c604fc3a] getting state for chaincode mycc, key b, channel businesschannel +peer1.org1.example.com | [537 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c4f73515] getting state for chaincode lscc, key mycc, channel businesschannel +peer1.org2.example.com | [580 12-14 09:35:47.03 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 | [552 12-14 09:35:30.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1b0a6fca]Move state message TRANSACTION +peer0.org1.example.com | [5ed 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=b +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | [3a3 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [5ee 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c604fc3a]Got state. Sending RESPONSE +peer1.org2.example.com | [581 12-14 09:35:47.03 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 | [538 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org2.example.com | [553 12-14 09:35:30.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1b0a6fca]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [5ef 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c604fc3a]handleGetState serial send RESPONSE +orderer.example.com | [3a4 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +explorer | [2017-12-14 09:35:58.879] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer1.org1.example.com | [539 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c4f73515]Got state. Sending RESPONSE +peer0.org2.example.com | [554 12-14 09:35:30.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [5f0 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c604fc3a]Received message PUT_STATE from shim +orderer.example.com | [3a5 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [57e 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer1.org1.example.com | [53a 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c4f73515]handleGetState serial send RESPONSE +peer0.org2.example.com | [555 12-14 09:35:30.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1b0a6fca]sending state message TRANSACTION +peer0.org1.example.com | [5f1 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c604fc3a]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +orderer.example.com | [3a6 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +peer1.org2.example.com | [582 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8798425c]sending state message TRANSACTION +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [53b 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4f73515]Received message RESPONSE from shim +peer0.org1.example.com | [5f2 12-14 09:35:47.17 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 | [556 12-14 09:35:30.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1b0a6fca]Received message TRANSACTION from shim +orderer.example.com | [3a7 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +peer0.org1.example.com | [5f3 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c604fc3a]state is ready +peer1.org2.example.com | [583 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8798425c]Received message TRANSACTION from shim +explorer | at ClientRequest.emit (events.js:188:7) +peer1.org1.example.com | [53c 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4f73515]Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | [3a8 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +peer0.org2.example.com | [557 12-14 09:35:30.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1b0a6fca]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [584 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8798425c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [5f4 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c604fc3a]Completed PUT_STATE. Sending RESPONSE +peer1.org1.example.com | [53d 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c4f73515]before send +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org2.example.com | [585 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8798425c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [3a9 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer0.org1.example.com | [5f5 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c604fc3a]enterBusyState trigger event RESPONSE +peer1.org1.example.com | [53e 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c4f73515]after send +peer0.org2.example.com | [558 12-14 09:35:30.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1b0a6fca]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [5f6 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c604fc3a]Move state message RESPONSE +peer1.org2.example.com | [586 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [3aa 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org1.example.com | [540 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c4f73515]GetState received payload RESPONSE +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org1.example.com | [5f7 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c604fc3a]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +orderer.example.com | [3ab 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [559 12-14 09:35:30.66 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org1.example.com | [53f 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [c4f73515]Received RESPONSE, communicated (state:ready) +peer1.org2.example.com | [587 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [5f8 12-14 09:35:47.17 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 | [55a 12-14 09:35:30.66 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 | [3ac 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [541 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4f73515]Transaction completed. Sending COMPLETED +explorer | at emitErrorNT (net.js:1281:8) +peer1.org2.example.com | [588 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8798425c]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [5f9 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c604fc3a]sending state message RESPONSE +peer0.org2.example.com | [55b 12-14 09:35:30.67 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +orderer.example.com | [3ad 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [542 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4f73515]Move state message COMPLETED +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org2.example.com | [55c 12-14 09:35:30.67 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [3ae 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [543 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4f73515]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [5fa 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c604fc3a]Received message PUT_STATE from shim +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org1.example.com | [544 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4f73515]send state message COMPLETED +peer1.org2.example.com | [589 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8798425c]Move state message COMPLETED +explorer | [2017-12-14 09:35:58.880] [ERROR] Helper - admin enrollment failed +peer0.org1.example.com | [5fb 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c604fc3a]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org2.example.com | [55d 12-14 09:35:30.67 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [58a 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8798425c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [545 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4f73515]Received message COMPLETED from shim +orderer.example.com | [3af 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +explorer | [2017-12-14 09:35:58.880] [ERROR] Query - Error: Missing userContext parameter +peer0.org2.example.com | [55e 12-14 09:35:30.67 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer0.org1.example.com | [5fc 12-14 09:35:47.17 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 | [546 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4f73515]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [3b0 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +peer1.org2.example.com | [58b 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8798425c]send state message COMPLETED +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org2.example.com | [55f 12-14 09:35:30.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [90a70ce9-4c9d-4739-8825-ef09951cfe0e] +peer0.org1.example.com | [5fd 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c604fc3a]state is ready +orderer.example.com | [3b1 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +peer1.org1.example.com | [547 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4f7351544b90404a46bf1830fb8680fc9dbcd54b5c5a9859dd7b5d38ecaba54]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [58c 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8798425c]Received message COMPLETED from shim +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer0.org1.example.com | [5fe 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c604fc3a]Completed PUT_STATE. Sending RESPONSE +peer0.org2.example.com | [560 12-14 09:35:30.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org2.example.com | [58d 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8798425c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [3b2 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer0.org1.example.com | [5ff 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c604fc3a]enterBusyState trigger event RESPONSE +peer1.org1.example.com | [548 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c4f7351544b90404a46bf1830fb8680fc9dbcd54b5c5a9859dd7b5d38ecaba54 +peer1.org2.example.com | [58e 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8798425c80346bce8bf0031754a54e67a52963adbc288bb7c51e218de9f75002]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [561 12-14 09:35:30.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [90a70ce9-4c9d-4739-8825-ef09951cfe0e] +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org1.example.com | [549 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [3b3 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [562 12-14 09:35:30.67 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +peer1.org2.example.com | [58f 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8798425c80346bce8bf0031754a54e67a52963adbc288bb7c51e218de9f75002 +peer0.org1.example.com | [600 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c604fc3a]Move state message RESPONSE +orderer.example.com | [3b4 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [563 12-14 09:35:30.67 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)(0x9547d0)} +peer1.org1.example.com | [54a 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched +peer1.org2.example.com | [590 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +explorer | [2017-12-14 09:35:58.880] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer0.org1.example.com | [601 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c604fc3a]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +orderer.example.com | [3b5 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +peer1.org1.example.com | [54b 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer0.org2.example.com | [564 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated +peer1.org2.example.com | [591 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [3b6 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [602 12-14 09:35:47.17 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 | [54c 12-14 09:35:47.31 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.org2.example.com | [592 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [3b7 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +peer1.org2.example.com | [593 12-14 09:35:47.03 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 [101157fc-e8ed-4f9e-af56-2590ffba6ce0] +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 214): Error: Cannot save null userContext. +peer0.org2.example.com | [565 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1b0a6fca]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [603 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c604fc3a]sending state message RESPONSE +orderer.example.com | [3b8 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer1.org1.example.com | [54d 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer1.org1.example.com) +peer0.org1.example.com | [604 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c604fc3a]Received message COMPLETED from shim +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org2.example.com | [566 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1b0a6fca]Move state message COMPLETED +orderer.example.com | [3b9 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +peer1.org1.example.com | [54e 12-14 09:35:47.31 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 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [594 12-14 09:35:47.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [605 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c604fc3a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [567 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1b0a6fca]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [54f 12-14 09:35:47.31 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 | [3ba 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer0.org2.example.com | [568 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1b0a6fca]send state message COMPLETED +peer0.org1.example.com | [606 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [595 12-14 09:35:47.04 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 | CORE_CHAINCODE_ID_NAME=mycc:1.0 +orderer.example.com | [3bb 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [607 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442 +peer0.org2.example.com | [569 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1b0a6fca]Received message COMPLETED from shim +peer1.org2.example.com | [596 12-14 09:35:47.04 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +explorer | [2017-12-14 09:35:58.887] [ERROR] Query - Error: Connect Failed +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +orderer.example.com | [3bc 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [597 12-14 09:35:47.04 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d +peer0.org1.example.com | [608 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [56a 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1b0a6fca]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [598 12-14 09:35:47.04 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] +orderer.example.com | [3bd 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org2.example.com | [56b 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1b0a6fca-ee8f-4f8f-aaec-3653b219a5de]HandleMessage- COMPLETED. Notify +explorer | [2017-12-14 09:35:59.952] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer0.org1.example.com | [609 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [3be 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [599 12-14 09:35:47.04 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org2.example.com | [56c 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1b0a6fca-ee8f-4f8f-aaec-3653b219a5de +peer0.org1.example.com | [60a 12-14 09:35:47.17 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 +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +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 | [3bf 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [60b 12-14 09:35:47.17 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 [ef271dcf-87c4-4cde-983b-c3c8962e1c86] +peer1.org2.example.com | [59a 12-14 09:35:47.04 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [56d 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [550 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org1.example.com-mycc-1.0) lock +peer0.org1.example.com | [60c 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org2.example.com | [59b 12-14 09:35:47.04 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org2.example.com | [56e 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d, error Chaincode mycc is already instantiated +orderer.example.com | [3c0 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [551 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org1.example.com-mycc-1.0) lock +peer0.org1.example.com | [60d 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442 channel id: businesschannel chaincode id: name:"mycc" +peer1.org2.example.com | [59c 12-14 09:35:47.04 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +orderer.example.com | [3c1 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [56f 12-14 09:35:30.68 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 [5d44348d-0859-4e24-9955-5ce2fb5b45fd] +peer0.org1.example.com | [60e 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +peer1.org1.example.com | [552 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer1.org1.example.com-mycc-1.0 +peer1.org2.example.com | [59d 12-14 09:35:47.04 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [553 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer1.org1.example.com-mycc-1.0(No such container: dev-peer1.org1.example.com-mycc-1.0) +peer0.org2.example.com | [570 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d returned error Chaincode mycc is already instantiated +orderer.example.com | [3c2 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +peer1.org2.example.com | [59e 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org1.example.com | [554 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer1.org1.example.com-mycc-1.0 (No such container: dev-peer1.org1.example.com-mycc-1.0) +peer0.org1.example.com | [60f 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442 channel id: businesschannel version: 1.0.5 +explorer | at TLSSocket.emit (events.js:188:7) +orderer.example.com | [3c3 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +peer0.org2.example.com | [571 12-14 09:35:30.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org1.example.com | [555 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org1.example.com-mycc-1.0 (No such container: dev-peer1.org1.example.com-mycc-1.0) +peer1.org2.example.com | [59f 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +explorer | at emitErrorNT (net.js:1281:8) +peer0.org1.example.com | [610 12-14 09:35:47.17 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.5,txid=c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442,syscc=true,proposal=0xc4202c0af0,canname=escc:1.0.5 +peer0.org2.example.com | [572 12-14 09:35:30.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] +orderer.example.com | [3c4 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer1.org2.example.com | [5a0 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org1.example.com | [556 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org1.example.com-mycc-1.0 +peer0.org1.example.com | [611 12-14 09:35:47.17 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.5 +peer0.org2.example.com | [573 12-14 09:35:30.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)(0xc4223dfe40), Data:(*common.BlockData)(0xc421c77740), Metadata:(*common.BlockMetadata)(0xc421c77780)}, doMVCCValidation=true +orderer.example.com | [3c5 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org1.example.com | [557 12-14 09:35:47.31 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v105_default +peer1.org2.example.com | [5a1 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4223f7740 +peer0.org1.example.com | [612 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [558 12-14 09:35:47.32 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-mycc-1.0 +explorer | [2017-12-14 09:35:59.952] [ERROR] Helper - admin enrollment failed +peer0.org2.example.com | [574 12-14 09:35:30.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.org2.example.com | [5a2 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\363\213\311\321\005\020\274\312\205J\"\017businesschannel*@c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030\245A\005\021\243KGf\234\277\223\025\235=\255/\223EL\014[\232<\366" +orderer.example.com | [3c6 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [613 12-14 09:35:47.17 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.5 +peer1.org1.example.com | [559 12-14 09:35:47.32 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 | [575 12-14 09:35:30.69 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] +explorer | [2017-12-14 09:35:59.952] [ERROR] Query - Error: Missing userContext parameter +peer1.org2.example.com | [5a3 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [3c7 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [614 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c604fc3a]Inside sendExecuteMessage. Message TRANSACTION +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org2.example.com | [576 12-14 09:35:30.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0xe1, 0xaa, 0x67, 0x31, 0xdc, 0xd6, 0xb, 0x9f, 0xdb, 0x7e, 0x68, 0xf9, 0x7b, 0x5b, 0x52, 0x72, 0x93, 0x51, 0x28, 0x46, 0xf3, 0x9c, 0xb6, 0x5d, 0xd4, 0x48, 0xaf, 0x4, 0xaa, 0x49, 0xd5, 0x9b} txOffsets= +peer1.org1.example.com | [55a 12-14 09:35:47.32 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +orderer.example.com | [3c8 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [615 12-14 09:35:47.17 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 | [5a4 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | txId=d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d locPointer=offset=70, bytesLength=3388 +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org2.example.com | [5a5 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} +peer0.org1.example.com | [616 12-14 09:35:47.17 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 | [3c9 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 +peer1.org2.example.com | [5a6 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer0.org1.example.com | [617 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c604fc3a]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [3ca 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | ] +peer1.org1.example.com | ADD binpackage.tar /usr/local/bin +peer1.org2.example.com | [5a7 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [618 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c604fc3a]Move state message TRANSACTION +orderer.example.com | [3cb 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +peer1.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ +peer0.org2.example.com | [577 12-14 09:35:30.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44796, bytesLength=3388] for tx ID: [d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d] to index +explorer | [2017-12-14 09:35:59.952] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +orderer.example.com | [3cc 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +peer0.org1.example.com | [619 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c604fc3a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [578 12-14 09:35:30.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44796, bytesLength=3388] for tx number:[0] ID: [d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d] to blockNumTranNum index +peer1.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +peer0.org1.example.com | [61a 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer1.org2.example.com | [5a8 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4215f2800, header channel_header:"\010\003\032\013\010\363\213\311\321\005\020\274\312\205J\"\017businesschannel*@c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030\245A\005\021\243KGf\234\277\223\025\235=\255/\223EL\014[\232<\366" +orderer.example.com | [3cd 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +peer0.org2.example.com | [579 12-14 09:35:30.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=[49945], isChainEmpty=[false], lastBlockNumber=[4] +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +peer0.org1.example.com | [61b 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c604fc3a]sending state message TRANSACTION +peer1.org2.example.com | [5a9 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +orderer.example.com | [3ce 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [5aa 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [61c 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c604fc3a]Received message TRANSACTION from shim +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 217): Error: Cannot save null userContext. +peer1.org2.example.com | [5ab 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +orderer.example.com | [3cf 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org1.example.com | org.hyperledger.fabric.version="1.0.5" \ +peer0.org2.example.com | [57a 12-14 09:35:30.73 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 | [5ac 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org1.example.com | [61d 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c604fc3a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [3d0 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +peer1.org1.example.com | org.hyperledger.fabric.base.version="0.3.2" +peer0.org2.example.com | [57b 12-14 09:35:30.73 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 | [5ad 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442] +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | [3d1 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [61e 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c604fc3a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.5 +peer1.org2.example.com | [5ae 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer0.org2.example.com | [57c 12-14 09:35:30.73 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 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +peer1.org2.example.com | [5af 12-14 09:35:49.24 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 [5c3cdf34-8a53-4a27-8249-5f0e598cd5f5] +peer0.org1.example.com | [61f 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org1.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org2.example.com | [57d 12-14 09:35:30.73 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 | [5b0 12-14 09:35:49.24 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=mycc +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [620 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt +peer0.org2.example.com | [57e 12-14 09:35:30.73 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 | [5b1 12-14 09:35:49.24 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 [5c3cdf34-8a53-4a27-8249-5f0e598cd5f5] +peer0.org1.example.com | [621 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c604fc3a]Transaction completed. Sending COMPLETED +explorer | [2017-12-14 09:35:59.963] [ERROR] Query - Error: Connect Failed +peer1.org1.example.com | [55b 12-14 09:35:47.32 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.5 +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer0.org2.example.com | [57f 12-14 09:35:30.73 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 | [5b2 12-14 09:35:49.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 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [55c 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +peer1.org2.example.com | [5b3 12-14 09:35:49.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 [e48a6182-3160-4b8e-88ea-bc363dcee9c6] +peer0.org1.example.com | [622 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c604fc3a]Move state message COMPLETED +peer0.org2.example.com | [580 12-14 09:35:30.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 [4] +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +explorer | [2017-12-14 09:36:01.066] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer1.org1.example.com | [55d 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org2.example.com | [5b4 12-14 09:35:49.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.5,txid=de3259fd-74fb-4555-8583-9563bebede3f,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer0.org1.example.com | [623 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c604fc3a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [581 12-14 09:35:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer1.org2.example.com | [5b5 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442 chaindID businesschannel +peer0.org2.example.com | [582 12-14 09:35:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [5b6 12-14 09:35:49.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.5 +peer0.org1.example.com | [624 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c604fc3a]send state message COMPLETED +peer1.org1.example.com | [55e 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +peer0.org2.example.com | [583 12-14 09:35:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] +explorer | at ClientRequest.emit (events.js:188:7) +peer1.org2.example.com | [5b7 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [625 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c604fc3a]Received message COMPLETED from shim +peer1.org1.example.com | [55f 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4221cc270 +peer1.org2.example.com | [5b8 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +orderer.example.com | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +peer0.org1.example.com | [626 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c604fc3a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [584 12-14 09:35:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org1.example.com | [560 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\363\213\311\321\005\020\274\312\205J\"\017businesschannel*@c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030\245A\005\021\243KGf\234\277\223\025\235=\255/\223EL\014[\232<\366" +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer0.org1.example.com | [627 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442]HandleMessage- COMPLETED. Notify +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer1.org2.example.com | [5b9 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [de3259fd]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [585 12-14 09:35:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [628 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442 +peer1.org1.example.com | [561 12-14 09:35:49.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 | [5ba 12-14 09:35:49.24 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 | [562 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [5bb 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [de3259fd]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [629 12-14 09:35:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [586 12-14 09:35:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +peer1.org2.example.com | [5bc 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de3259fd]Move state message TRANSACTION +peer1.org1.example.com | [563 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} +peer0.org1.example.com | [62a 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +peer0.org2.example.com | [587 12-14 09:35:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +explorer | at TLSSocket.emit (events.js:188:7) +peer1.org2.example.com | [5bd 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [de3259fd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +peer1.org1.example.com | [564 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +explorer | at emitErrorNT (net.js:1281:8) +peer0.org1.example.com | [62b 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org2.example.com | [588 12-14 09:35:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [5be 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [565 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [62c 12-14 09:35:47.18 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 [ef271dcf-87c4-4cde-983b-c3c8962e1c86] +peer0.org2.example.com | [589 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +orderer.example.com | [3d2 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [566 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421b38000, header channel_header:"\010\003\032\013\010\363\213\311\321\005\020\274\312\205J\"\017businesschannel*@c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030\245A\005\021\243KGf\234\277\223\025\235=\255/\223EL\014[\232<\366" +peer1.org2.example.com | [5bf 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de3259fd]sending state message TRANSACTION +peer0.org1.example.com | [62d 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org2.example.com | [58a 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] +peer1.org2.example.com | [5c0 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de3259fd]Received message TRANSACTION from shim +peer0.org1.example.com | [62e 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] +peer0.org2.example.com | [58b 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org1.example.com | [567 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [62f 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] +peer0.org2.example.com | [58c 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +explorer | [2017-12-14 09:36:01.066] [ERROR] Helper - admin enrollment failed +peer1.org2.example.com | [5c1 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [de3259fd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | [568 12-14 09:35:49.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 | [58d 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org1.example.com | [630 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +explorer | [2017-12-14 09:36:01.067] [ERROR] Query - Error: Missing userContext parameter +peer1.org2.example.com | [5c2 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [de3259fd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [569 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org2.example.com | [58e 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4229d0780 +peer1.org2.example.com | [5c3 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org1.example.com | [56a 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [631 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org2.example.com | [5c4 12-14 09:35:49.24 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 | [58f 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\363\213\311\321\005\020\274\312\205J\"\017businesschannel*@c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030\245A\005\021\243KGf\234\277\223\025\235=\255/\223EL\014[\232<\366" +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [632 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org1.example.com | [56b 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442] +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer1.org2.example.com | [5c5 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org2.example.com | [590 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [633 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422616000 +peer1.org2.example.com | [5c6 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de3259fd]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [56c 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +peer0.org2.example.com | [591 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [5c7 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de3259fd]Move state message COMPLETED +peer1.org1.example.com | [56d 12-14 09:35:49.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 [5ce6b3b7-9126-4ff7-a2db-077a02181517] +peer0.org1.example.com | [634 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\363\213\311\321\005\020\274\312\205J\"\017businesschannel*@c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030\245A\005\021\243KGf\234\277\223\025\235=\255/\223EL\014[\232<\366" +explorer | [2017-12-14 09:36:01.067] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer1.org2.example.com | [5c8 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [de3259fd]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org2.example.com | [592 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} +peer1.org1.example.com | [56e 12-14 09:35:49.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=mycc +peer0.org1.example.com | [635 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +peer1.org2.example.com | [5c9 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de3259fd]send state message COMPLETED +peer0.org2.example.com | [593 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [636 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [56f 12-14 09:35:49.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 [5ce6b3b7-9126-4ff7-a2db-077a02181517] +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [5ca 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de3259fd]Received message COMPLETED from shim +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +peer0.org1.example.com | [637 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} +peer1.org1.example.com | [570 12-14 09:35:49.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 | [594 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 220): Error: Cannot save null userContext. +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +peer1.org2.example.com | [5cb 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [de3259fd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [571 12-14 09:35:49.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 [6e8ee03d-d2e8-405d-9307-2f16d7846e6c] +peer0.org1.example.com | [638 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [595 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc420343000, header channel_header:"\010\003\032\013\010\363\213\311\321\005\020\274\312\205J\"\017businesschannel*@c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030\245A\005\021\243KGf\234\277\223\025\235=\255/\223EL\014[\232<\366" +orderer.example.com | -----END CERTIFICATE----- +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org1.example.com | [572 12-14 09:35:49.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.5,txid=7afb65c3-710c-4c1d-a02e-555eb490c3de,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer0.org1.example.com | [639 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [596 12-14 09:35:49.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 | [5cc 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [de3259fd-74fb-4555-8583-9563bebede3f]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [573 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442 chaindID businesschannel +orderer.example.com | [3d3 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [574 12-14 09:35:49.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.5 +peer0.org1.example.com | [63a 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42188a800, header channel_header:"\010\003\032\013\010\363\213\311\321\005\020\274\312\205J\"\017businesschannel*@c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030\245A\005\021\243KGf\234\277\223\025\235=\255/\223EL\014[\232<\366" +peer1.org2.example.com | [5cd 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:de3259fd-74fb-4555-8583-9563bebede3f +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +peer0.org2.example.com | [597 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org1.example.com | [575 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [63b 12-14 09:35:49.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 | [5ce 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [598 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | [576 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer0.org1.example.com | [63c 12-14 09:35:49.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 | [5cf 12-14 09:35:49.24 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 [e48a6182-3160-4b8e-88ea-bc363dcee9c6] +peer0.org2.example.com | [599 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +explorer | [2017-12-14 09:36:01.078] [ERROR] Query - Error: Connect Failed +peer1.org1.example.com | [577 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7afb65c3]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [63d 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org2.example.com | [5d0 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org2.example.com | [59a 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442] +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [578 12-14 09:35:49.22 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 | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +peer0.org1.example.com | [63e 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org2.example.com | [59b 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [5d1 12-14 09:35:49.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] +explorer | [2017-12-14 09:36:02.138] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer1.org1.example.com | [579 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7afb65c3]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [63f 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442] +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org2.example.com | [5d2 12-14 09:35:49.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)(0xc4222c55c0), Data:(*common.BlockData)(0xc421af1640), Metadata:(*common.BlockMetadata)(0xc421af1680)}, doMVCCValidation=true +peer0.org2.example.com | [59c 12-14 09:35:49.20 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 [d5b879a0-e873-481f-87c1-8dbc5b524744] +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer1.org1.example.com | [57a 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7afb65c3]Move state message TRANSACTION +peer0.org1.example.com | [640 12-14 09:35:49.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org2.example.com | [59d 12-14 09:35:49.25 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=mycc +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [5d3 12-14 09:35:49.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 | [57b 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7afb65c3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +peer0.org1.example.com | [641 12-14 09:35:49.20 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 [4af84265-feef-4231-94dc-ae49d0a64091] +peer0.org2.example.com | [59e 12-14 09:35:49.25 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 [d5b879a0-e873-481f-87c1-8dbc5b524744] +explorer | at ClientRequest.emit (events.js:188:7) +peer1.org2.example.com | [5d4 12-14 09:35:49.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=mycc +peer1.org1.example.com | [57c 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [642 12-14 09:35:49.20 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=mycc +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org2.example.com | [5d5 12-14 09:35:49.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=mycc, key=a +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org2.example.com | [59f 12-14 09:35:49.25 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 +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [57d 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7afb65c3]sending state message TRANSACTION +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +peer0.org1.example.com | [643 12-14 09:35:49.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 [4af84265-feef-4231-94dc-ae49d0a64091] +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org2.example.com | [5a0 12-14 09:35:49.25 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 [26bd7fe9-5d89-4750-87d6-a8c48f5f7d93] +peer1.org2.example.com | [5d6 12-14 09:35:49.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=mycc, key=b +peer1.org1.example.com | [57e 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7afb65c3]Received message TRANSACTION from shim +explorer | at emitErrorNT (net.js:1281:8) +peer0.org2.example.com | [5a1 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=dd83361c-3f67-479f-b218-62e346347f94,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer0.org1.example.com | [644 12-14 09:35:49.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 | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +peer1.org2.example.com | [5d7 12-14 09:35:49.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 [c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442] marked as valid by state validator +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org1.example.com | [645 12-14 09:35:49.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 [b2a1d098-825f-41c4-a82b-b336aff90bf9] +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org2.example.com | [5d8 12-14 09:35:49.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x9b, 0x95, 0xb3, 0x7b, 0x11, 0xfd, 0xc9, 0x9e, 0x30, 0x1a, 0xb0, 0x98, 0x35, 0x8, 0x41, 0x3a, 0x5c, 0x97, 0x3e, 0x83, 0xb, 0x3f, 0xe5, 0xfb, 0xd3, 0xaf, 0x9a, 0x1f, 0x2c, 0x58, 0x50, 0x1f} txOffsets= +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +peer1.org1.example.com | [57f 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7afb65c3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +explorer | [2017-12-14 09:36:02.138] [ERROR] Helper - admin enrollment failed +peer0.org2.example.com | [5a2 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442 chaindID businesschannel +peer0.org1.example.com | [646 12-14 09:35:49.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.5,txid=6aeb18ca-972f-4d89-829d-342852579c73,syscc=true,proposal=0x0,canname=vscc:1.0.5 +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | txId=c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442 locPointer=offset=70, bytesLength=2848 +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 223): Error: Cannot save null userContext. +peer0.org2.example.com | [5a3 12-14 09:35:49.25 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.5 +peer1.org1.example.com | [580 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7afb65c3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | ] +orderer.example.com | [3d4 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +explorer | [2017-12-14 09:36:02.139] [ERROR] Query - Error: Missing userContext parameter +peer0.org1.example.com | [647 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442 chaindID businesschannel +peer0.org2.example.com | [5a4 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [581 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org2.example.com | [5d9 12-14 09:35:49.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50015, bytesLength=2848] for tx ID: [c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442] to index +orderer.example.com | [3d5 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org1.example.com | [648 12-14 09:35:49.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.5 +peer1.org1.example.com | [582 12-14 09:35:49.22 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 | [5a5 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer1.org2.example.com | [5da 12-14 09:35:49.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50015, bytesLength=2848] for tx number:[0] ID: [c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442] to blockNumTranNum index +orderer.example.com | [3d6 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org1.example.com | [583 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org2.example.com | [5a6 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dd83361c]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [649 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer1.org2.example.com | [5db 12-14 09:35:49.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=[54623], isChainEmpty=[false], lastBlockNumber=[5] +orderer.example.com | [3d7 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org1.example.com | [584 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7afb65c3]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [5a7 12-14 09:35:49.25 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 | [64a 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [5dc 12-14 09:35:49.27 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 | [585 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7afb65c3]Move state message COMPLETED +peer0.org2.example.com | [5a8 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dd83361c]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [3d8 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +explorer | [2017-12-14 09:36:02.139] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer1.org1.example.com | [586 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7afb65c3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [5dd 12-14 09:35:49.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 | [5a9 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dd83361c]Move state message TRANSACTION +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +orderer.example.com | [3d9 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [587 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7afb65c3]send state message COMPLETED +peer0.org1.example.com | [64b 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [6aeb18ca]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [5de 12-14 09:35:49.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 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org2.example.com | [5aa 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dd83361c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [588 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7afb65c3]Received message COMPLETED from shim +peer0.org1.example.com | [64c 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org2.example.com | [5ab 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [5df 12-14 09:35:49.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer0.org1.example.com | [64d 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [6aeb18ca]sendExecuteMsg trigger event TRANSACTION +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [589 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7afb65c3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer0.org1.example.com | [64e 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6aeb18ca]Move state message TRANSACTION +peer1.org1.example.com | [58a 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7afb65c3-710c-4c1d-a02e-555eb490c3de]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [5ac 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dd83361c]sending state message TRANSACTION +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [5e0 12-14 09:35:49.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +peer0.org1.example.com | [64f 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6aeb18ca]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [5ad 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dd83361c]Received message TRANSACTION from shim +explorer | [2017-12-14 09:36:02.170] [ERROR] Query - Error: Connect Failed +peer1.org2.example.com | [5e1 12-14 09:35:49.27 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 | [58b 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7afb65c3-710c-4c1d-a02e-555eb490c3de +peer0.org1.example.com | [650 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [5ae 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dd83361c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +explorer | [2017-12-14 09:36:03.262] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer1.org2.example.com | [5e2 12-14 09:35:49.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 [5] with [1] transactions +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +peer1.org1.example.com | [58c 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [651 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6aeb18ca]sending state message TRANSACTION +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer1.org2.example.com | [5e3 12-14 09:35:49.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 [5] +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [5af 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [dd83361c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [58d 12-14 09:35:49.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 [6e8ee03d-d2e8-405d-9307-2f16d7846e6c] +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [652 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6aeb18ca]Received message TRANSACTION from shim +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +peer1.org2.example.com | [5e4 12-14 09:35:49.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org1.example.com | [58e 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org1.example.com | [653 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6aeb18ca]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [5b0 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org2.example.com | [5e5 12-14 09:35:49.28 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442 +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer0.org1.example.com | [654 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [6aeb18ca]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [58f 12-14 09:35:49.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] +peer1.org2.example.com | [5e6 12-14 09:35:49.28 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [655 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org2.example.com | [5b1 12-14 09:35:49.25 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 | [590 12-14 09:35:49.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)(0xc421df9e00), Data:(*common.BlockData)(0xc4221c5920), Metadata:(*common.BlockMetadata)(0xc4221c5960)}, doMVCCValidation=true +peer0.org1.example.com | [656 12-14 09:35:49.21 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 | BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +peer1.org2.example.com | [5e7 12-14 09:35:49.28 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org2.example.com | [5b2 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org1.example.com | [657 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer1.org1.example.com | [591 12-14 09:35:49.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 +explorer | at emitErrorNT (net.js:1281:8) +peer0.org2.example.com | [5b3 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dd83361c]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [5e8 12-14 09:35:49.28 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +orderer.example.com | RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer0.org1.example.com | [658 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6aeb18ca]Transaction completed. Sending COMPLETED +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org2.example.com | [5b4 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dd83361c]Move state message COMPLETED +peer1.org2.example.com | [5e9 12-14 09:35:49.28 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org1.example.com | [659 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6aeb18ca]Move state message COMPLETED +peer1.org1.example.com | [592 12-14 09:35:49.22 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=mycc +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer0.org2.example.com | [5b5 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dd83361c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [5ea 12-14 09:35:49.28 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [65a 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6aeb18ca]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [593 12-14 09:35:49.22 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=mycc, key=a +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +explorer | [2017-12-14 09:36:03.262] [ERROR] Helper - admin enrollment failed +peer0.org2.example.com | [5b6 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dd83361c]send state message COMPLETED +peer0.org1.example.com | [65b 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6aeb18ca]send state message COMPLETED +peer1.org1.example.com | [594 12-14 09:35:49.22 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=mycc, key=b +explorer | [2017-12-14 09:36:03.263] [ERROR] Query - Error: Missing userContext parameter +peer0.org2.example.com | [5b7 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dd83361c]Received message COMPLETED from shim +peer1.org1.example.com | [595 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442] marked as valid by state validator +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org1.example.com | [65c 12-14 09:35:49.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6aeb18ca]Received message COMPLETED from shim +orderer.example.com | kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +peer1.org2.example.com | [5eb 12-14 09:35:49.28 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org2.example.com | [5b8 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dd83361c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [596 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x9b, 0x95, 0xb3, 0x7b, 0x11, 0xfd, 0xc9, 0x9e, 0x30, 0x1a, 0xb0, 0x98, 0x35, 0x8, 0x41, 0x3a, 0x5c, 0x97, 0x3e, 0x83, 0xb, 0x3f, 0xe5, 0xfb, 0xd3, 0xaf, 0x9a, 0x1f, 0x2c, 0x58, 0x50, 0x1f} txOffsets= +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer0.org1.example.com | [65d 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6aeb18ca]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [5b9 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dd83361c-3f67-479f-b218-62e346347f94]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | txId=c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442 locPointer=offset=70, bytesLength=2848 +peer1.org2.example.com | [5ec 12-14 09:36:05.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer0.org1.example.com | [65e 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6aeb18ca-972f-4d89-829d-342852579c73]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [5ba 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:dd83361c-3f67-479f-b218-62e346347f94 +peer1.org1.example.com | ] +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [5ed 12-14 09:36:05.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc424d94390 +peer0.org1.example.com | [65f 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:6aeb18ca-972f-4d89-829d-342852579c73 +orderer.example.com | VA7fF8MfGA== +peer0.org2.example.com | [5bb 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [597 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50015, bytesLength=2848] for tx ID: [c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442] to index +explorer | [2017-12-14 09:36:03.265] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer0.org1.example.com | [660 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [598 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50015, bytesLength=2848] for tx number:[0] ID: [c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442] to blockNumTranNum index +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [5bc 12-14 09:35:49.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 [26bd7fe9-5d89-4750-87d6-a8c48f5f7d93] +peer0.org1.example.com | [661 12-14 09:35:49.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 [b2a1d098-825f-41c4-a82b-b336aff90bf9] +peer1.org1.example.com | [599 12-14 09:35:49.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=[54623], isChainEmpty=[false], lastBlockNumber=[5] +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [5ee 12-14 09:36:05.72 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 | [3da 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [5bd 12-14 09:35:49.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org1.example.com | [662 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org1.example.com | [59a 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 226): Error: Cannot save null userContext. +peer0.org2.example.com | [5be 12-14 09:35:49.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.org1.example.com | [663 12-14 09:35:49.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 | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +peer1.org1.example.com | [59b 12-14 09:35:49.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 | [5ef 12-14 09:36:05.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org2.example.com | [5bf 12-14 09:35:49.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)(0xc4226b0340), Data:(*common.BlockData)(0xc421ec9300), Metadata:(*common.BlockMetadata)(0xc421ec9340)}, doMVCCValidation=true +peer0.org1.example.com | [664 12-14 09:35:49.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)(0xc4215e3380), Data:(*common.BlockData)(0xc421838ee0), Metadata:(*common.BlockMetadata)(0xc421838f20)}, doMVCCValidation=true +peer1.org1.example.com | [59c 12-14 09:36:05.05 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer1.org1.example.com-mycc-1.0-cd123150154e6bf2df7ce682e0b1bcbea40499416f37a6da3aae14c4eb51b08d +peer1.org2.example.com | [5f0 12-14 09:36:05.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [5c0 12-14 09:35:49.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.org1.example.com | [665 12-14 09:35:49.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.org1.example.com | [59d 12-14 09:36:05.05 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org2.example.com | [5f1 12-14 09:36:05.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer0.org2.example.com | [5c1 12-14 09:35:49.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=mycc +peer0.org1.example.com | [666 12-14 09:35:49.22 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=mycc +peer1.org1.example.com | [59e 12-14 09:36:05.05 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-mycc-1.0 +peer0.org2.example.com | [5c2 12-14 09:35:49.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=mycc, key=a +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [667 12-14 09:35:49.22 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=mycc, key=a +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +peer1.org1.example.com | [59f 12-14 09:36:05.15 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org1.example.com-mycc-1.0-cd123150154e6bf2df7ce682e0b1bcbea40499416f37a6da3aae14c4eb51b08d +peer1.org2.example.com | [5f2 12-14 09:36:05.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [5c3 12-14 09:35:49.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=mycc, key=b +explorer | [2017-12-14 09:36:03.277] [ERROR] Query - Error: Connect Failed +peer0.org1.example.com | [668 12-14 09:35:49.22 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=mycc, key=b +peer1.org1.example.com | [5a0 12-14 09:36:05.56 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org1.example.com-mycc-1.0 +peer0.org2.example.com | [5c4 12-14 09:35:49.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 [c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442] marked as valid by state validator +peer1.org2.example.com | [5f3 12-14 09:36:05.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422af40f0, header 0xc424d943c0 +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [669 12-14 09:35:49.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442] marked as valid by state validator +peer1.org1.example.com | [5a1 12-14 09:36:05.56 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org1.example.com-mycc-1.0) +peer0.org2.example.com | [5c5 12-14 09:35:49.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x9b, 0x95, 0xb3, 0x7b, 0x11, 0xfd, 0xc9, 0x9e, 0x30, 0x1a, 0xb0, 0x98, 0x35, 0x8, 0x41, 0x3a, 0x5c, 0x97, 0x3e, 0x83, 0xb, 0x3f, 0xe5, 0xfb, 0xd3, 0xaf, 0x9a, 0x1f, 0x2c, 0x58, 0x50, 0x1f} txOffsets= +explorer | [2017-12-14 09:36:04.345] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer1.org2.example.com | [5f4 12-14 09:36:05.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" +peer1.org1.example.com | [5a2 12-14 09:36:05.60 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 | txId=c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442 locPointer=offset=70, bytesLength=2848 +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer0.org1.example.com | [66a 12-14 09:35:49.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x9b, 0x95, 0xb3, 0x7b, 0x11, 0xfd, 0xc9, 0x9e, 0x30, 0x1a, 0xb0, 0x98, 0x35, 0x8, 0x41, 0x3a, 0x5c, 0x97, 0x3e, 0x83, 0xb, 0x3f, 0xe5, 0xfb, 0xd3, 0xaf, 0x9a, 0x1f, 0x2c, 0x58, 0x50, 0x1f} txOffsets= +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +peer1.org1.example.com | [5a3 12-14 09:36:05.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | ] +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | txId=c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442 locPointer=offset=70, bytesLength=2848 +peer1.org1.example.com | [5a4 12-14 09:36:05.60 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 | [5f5 12-14 09:36:05.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 2e97d84ce85288d320b1f66d8ece6751bf01d182c201e070517d3364e977b49d +peer0.org2.example.com | [5c6 12-14 09:35:49.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50015, bytesLength=2848] for tx ID: [c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442] to index +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org1.example.com | ] +peer1.org1.example.com | [5a5 12-14 09:36:05.60 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.org2.example.com | [5c7 12-14 09:35:49.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50015, bytesLength=2848] for tx number:[0] ID: [c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442] to blockNumTranNum index +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer0.org1.example.com | [66b 12-14 09:35:49.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50015, bytesLength=2848] for tx ID: [c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442] to index +peer1.org2.example.com | [5f6 12-14 09:36:05.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [2e97d84ce85288d320b1f66d8ece6751bf01d182c201e070517d3364e977b49d] +peer1.org1.example.com | [5a6 12-14 09:36:05.60 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 mycc:1.0 +peer0.org2.example.com | [5c8 12-14 09:35:49.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=[54623], isChainEmpty=[false], lastBlockNumber=[5] +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [5f7 12-14 09:36:05.73 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 | [5a7 12-14 09:36:05.60 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:"mycc:1.0" , sending back REGISTERED +peer0.org1.example.com | [66c 12-14 09:35:49.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50015, bytesLength=2848] for tx number:[0] ID: [c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442] to blockNumTranNum index +peer0.org2.example.com | [5c9 12-14 09:35:49.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) +explorer | at TLSSocket.emit (events.js:188:7) +peer1.org1.example.com | [5a8 12-14 09:36:05.60 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 | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +peer0.org2.example.com | [5ca 12-14 09:35:49.26 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 | [66d 12-14 09:35:49.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54623], isChainEmpty=[false], lastBlockNumber=[5] +peer1.org2.example.com | [5f8 12-14 09:36:05.73 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 [13e4b17d-e963-46b1-8745-1f24cd73bbc8] +explorer | at emitErrorNT (net.js:1281:8) +peer0.org2.example.com | [5cb 12-14 09:35:49.26 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 | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +peer1.org2.example.com | [5f9 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 2e97d84ce85288d320b1f66d8ece6751bf01d182c201e070517d3364e977b49d channel id: businesschannel +peer1.org1.example.com | [5a9 12-14 09:36:05.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org1.example.com | [66e 12-14 09:35:49.23 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 | [5fa 12-14 09:36:05.73 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.5,txid=2e97d84ce85288d320b1f66d8ece6751bf01d182c201e070517d3364e977b49d,syscc=true,proposal=0xc422af40f0,canname=lscc:1.0.5 +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer0.org2.example.com | [5cc 12-14 09:35:49.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer0.org1.example.com | [66f 12-14 09:35:49.23 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 | [5aa 12-14 09:36:05.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org2.example.com | [5fb 12-14 09:36:05.73 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.5 +explorer | [2017-12-14 09:36:04.346] [ERROR] Helper - admin enrollment failed +peer0.org2.example.com | [5cd 12-14 09:35:49.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +peer0.org1.example.com | [670 12-14 09:35:49.23 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 | Xk1Xy2C2aVQjOcr++w== +peer1.org1.example.com | [5ab 12-14 09:36:05.60 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... +explorer | [2017-12-14 09:36:04.349] [ERROR] Query - Error: Missing userContext parameter +peer1.org2.example.com | [5fc 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [5ce 12-14 09:35:49.27 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 | [5ac 12-14 09:36:05.60 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.org1.example.com | [671 12-14 09:35:49.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +orderer.example.com | -----END CERTIFICATE----- +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer1.org2.example.com | [5fd 12-14 09:36:05.73 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.5 +peer0.org1.example.com | [672 12-14 09:35:49.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer0.org2.example.com | [5cf 12-14 09:35:49.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 [5] with [1] transactions +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer1.org1.example.com | [5ad 12-14 09:36:05.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4f73515]Move state message READY +peer1.org2.example.com | [5fe 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2e97d84c]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [3db 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [673 12-14 09:35:49.23 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 | [5d0 12-14 09:35:49.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 [5] +peer1.org1.example.com | [5ae 12-14 09:36:05.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4f73515]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [5ff 12-14 09:36:05.73 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 | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +explorer | [2017-12-14 09:36:04.349] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer1.org2.example.com | [600 12-14 09:36:05.73 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... +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer0.org2.example.com | [5d1 12-14 09:35:49.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [674 12-14 09:35:49.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 [5] with [1] transactions +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | [5af 12-14 09:36:05.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [c4f73515]Entered state ready +peer1.org2.example.com | [601 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2e97d84c]sendExecuteMsg trigger event TRANSACTION +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [675 12-14 09:35:49.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 [5] +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org2.example.com | [5d2 12-14 09:35:49.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442 +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 229): Error: Cannot save null userContext. +peer1.org1.example.com | [5b0 12-14 09:36:05.61 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:c4f7351544b90404a46bf1830fb8680fc9dbcd54b5c5a9859dd7b5d38ecaba54 +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +peer1.org2.example.com | [602 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2e97d84c]Move state message TRANSACTION +peer0.org1.example.com | [676 12-14 09:35:49.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org1.example.com | [5b1 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4f73515]sending state message READY +peer0.org2.example.com | [5d3 12-14 09:35:49.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org1.example.com | [677 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442 +peer1.org2.example.com | [603 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2e97d84c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [5d4 12-14 09:35:49.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +peer1.org1.example.com | [5b2 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU sending init completed +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +peer0.org2.example.com | [5d5 12-14 09:35:49.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [5b3 12-14 09:36:05.61 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 | [604 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [678 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +peer1.org2.example.com | [605 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2e97d84c]sending state message TRANSACTION +peer1.org1.example.com | [5b4 12-14 09:36:05.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 | [679 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org2.example.com | [5d6 12-14 09:35:49.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +peer0.org1.example.com | [67a 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [606 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2e97d84c]Received message TRANSACTION from shim +peer0.org2.example.com | [5d7 12-14 09:35:49.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +peer1.org1.example.com | [5b5 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +explorer | [2017-12-14 09:36:04.357] [ERROR] Query - Error: Connect Failed +peer0.org1.example.com | [67b 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +peer1.org1.example.com | [5b6 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c4f73515]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [5d8 12-14 09:35:49.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org2.example.com | [607 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2e97d84c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +peer0.org1.example.com | [67c 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org2.example.com | [5d9 12-14 09:36:06.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org1.example.com | [5b7 12-14 09:36:05.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... +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [608 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2e97d84c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [3dc 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +explorer | [2017-12-14 09:36:05.433] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer1.org1.example.com | [5b8 12-14 09:36:05.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.org2.example.com | [5da 12-14 09:36:06.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421a2c570 +peer1.org2.example.com | [609 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [2e97d84c]Sending GET_STATE +orderer.example.com | [3dd 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer0.org1.example.com | [67d 12-14 09:35:49.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org1.example.com | [5b9 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c4f73515]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [3de 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [60a 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2e97d84c]Received message GET_STATE from shim +peer1.org1.example.com | [5ba 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4f73515]Move state message TRANSACTION +orderer.example.com | [3df 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org2.example.com | [5db 12-14 09:36:06.08 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 | [67e 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org2.example.com | [60b 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2e97d84c]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [5bb 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4f73515]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +explorer | at ClientRequest.emit (events.js:188:7) +orderer.example.com | [3e0 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +peer0.org1.example.com | [67f 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4227cc330 +peer0.org2.example.com | [5dc 12-14 09:36:06.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [5bc 12-14 09:36:05.61 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 | [3e1 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [60c 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [2e97d84c]Received GET_STATE, invoking get state from ledger +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer0.org2.example.com | [5dd 12-14 09:36:06.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} +peer0.org1.example.com | [680 12-14 09:36:05.97 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 | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [5bd 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4f73515]sending state message TRANSACTION +explorer | at emitOne (events.js:96:13) +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [681 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [5de 12-14 09:36:06.08 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 | [60d 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [5be 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4f73515]Received message GET_STATE from shim +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org2.example.com | [5df 12-14 09:36:06.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [60e 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2e97d84c] getting state for chaincode lscc, key mycc, channel businesschannel +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +peer1.org1.example.com | [5bf 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4f73515]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [682 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} +explorer | at emitErrorNT (net.js:1281:8) +peer1.org1.example.com | [5c0 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c4f73515]Received GET_STATE, invoking get state from ledger +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [60f 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org1.example.com | [683 12-14 09:36:05.97 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 | [5e0 12-14 09:36:06.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421482ff0, header 0xc421a2c5a0 +peer1.org1.example.com | [5c1 12-14 09:36:05.61 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 | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +peer1.org2.example.com | [610 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2e97d84c]Got state. Sending RESPONSE +peer0.org2.example.com | [5e1 12-14 09:36:06.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" +peer1.org1.example.com | [5c2 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c4f73515] getting state for chaincode mycc, key a, channel businesschannel +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer0.org1.example.com | [684 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org2.example.com | [611 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [2e97d84c]handleGetState serial send RESPONSE +peer1.org1.example.com | [5c3 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a +orderer.example.com | BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 +peer0.org1.example.com | [685 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422413b30, header 0xc4227cc360 +peer0.org2.example.com | [5e2 12-14 09:36:06.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 15a924770e036cba9012ca6da0c38242069b708e1ca964b3be2b0dc70e9036b8 +explorer | [2017-12-14 09:36:05.433] [ERROR] Helper - admin enrollment failed +peer1.org1.example.com | [5c4 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c4f73515]Got state. Sending RESPONSE +peer1.org2.example.com | [612 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2e97d84c]Received message RESPONSE from shim +orderer.example.com | +/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer0.org1.example.com | [686 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" +peer0.org2.example.com | [5e3 12-14 09:36:06.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [15a924770e036cba9012ca6da0c38242069b708e1ca964b3be2b0dc70e9036b8] +peer1.org1.example.com | [5c5 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c4f73515]handleGetState serial send RESPONSE +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN +explorer | [2017-12-14 09:36:05.435] [ERROR] Query - Error: Missing userContext parameter +peer1.org2.example.com | [613 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2e97d84c]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [687 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 608a0d560ea5ccf53d4a4648518b4deaa3bca04916c676295224c6fa35cce461 +orderer.example.com | wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org2.example.com | [5e4 12-14 09:36:06.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 +peer1.org1.example.com | [5c6 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4f73515]Received message COMPLETED from shim +peer1.org2.example.com | [614 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [2e97d84c]before send +orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer0.org1.example.com | [688 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [608a0d560ea5ccf53d4a4648518b4deaa3bca04916c676295224c6fa35cce461] +peer0.org2.example.com | [5e5 12-14 09:36:06.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 [560c3fec-f07e-4a6b-a54e-28438b426a59] +peer1.org1.example.com | [5c7 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4f73515]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | liPpNxLSsBU= +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer1.org1.example.com | [5c8 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4f7351544b90404a46bf1830fb8680fc9dbcd54b5c5a9859dd7b5d38ecaba54]HandleMessage- COMPLETED. Notify +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [615 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [2e97d84c]after send +peer0.org1.example.com | [689 12-14 09:36:05.97 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 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org1.example.com | [5c9 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c4f7351544b90404a46bf1830fb8680fc9dbcd54b5c5a9859dd7b5d38ecaba54 +orderer.example.com | [3e2 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [5e6 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 15a924770e036cba9012ca6da0c38242069b708e1ca964b3be2b0dc70e9036b8 channel id: businesschannel +peer0.org1.example.com | [68a 12-14 09:36:05.97 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 [a9678e87-61cb-4f70-a5fa-50155a2a82e9] +peer1.org2.example.com | [616 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [2e97d84c]Received RESPONSE, communicated (state:ready) +explorer | [2017-12-14 09:36:05.435] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer1.org1.example.com | [5ca 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [5e7 12-14 09:36:06.09 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.5,txid=15a924770e036cba9012ca6da0c38242069b708e1ca964b3be2b0dc70e9036b8,syscc=true,proposal=0xc421482ff0,canname=lscc:1.0.5 +peer1.org2.example.com | [617 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [2e97d84c]GetState received payload RESPONSE +peer0.org1.example.com | [68b 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 608a0d560ea5ccf53d4a4648518b4deaa3bca04916c676295224c6fa35cce461 channel id: businesschannel +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [5cb 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [5e8 12-14 09:36:06.09 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.5 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [618 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2e97d84c]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [5cc 12-14 09:36:05.61 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 | [68c 12-14 09:36:05.97 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.5,txid=608a0d560ea5ccf53d4a4648518b4deaa3bca04916c676295224c6fa35cce461,syscc=true,proposal=0xc422413b30,canname=lscc:1.0.5 +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +peer0.org2.example.com | [5e9 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 232): Error: Cannot save null userContext. +peer1.org1.example.com | [5cd 12-14 09:36:05.61 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 [e4070b6d-b68e-4f19-8e18-db298feb7290] +peer1.org2.example.com | [619 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2e97d84c]Move state message COMPLETED +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [68d 12-14 09:36:05.97 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.5 +peer1.org1.example.com | [5ce 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org2.example.com | [61a 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2e97d84c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [5ea 12-14 09:36:06.09 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.5 +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [5cf 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: c4f7351544b90404a46bf1830fb8680fc9dbcd54b5c5a9859dd7b5d38ecaba54 channel id: businesschannel chaincode id: name:"mycc" +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +peer0.org1.example.com | [68e 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [5eb 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [15a92477]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [61b 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2e97d84c]send state message COMPLETED +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +peer0.org1.example.com | [68f 12-14 09:36:05.97 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.5 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer1.org1.example.com | [5d0 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +peer0.org2.example.com | [5ec 12-14 09:36:06.09 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 | [61c 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2e97d84c]Received message COMPLETED from shim +peer0.org1.example.com | [690 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [608a0d56]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [5d1 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: c4f7351544b90404a46bf1830fb8680fc9dbcd54b5c5a9859dd7b5d38ecaba54 channel id: businesschannel version: 1.0.5 +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [691 12-14 09:36:05.97 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.org2.example.com | [5ed 12-14 09:36:06.09 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 | [61d 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2e97d84c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +explorer | [2017-12-14 09:36:05.447] [ERROR] Query - Error: Connect Failed +peer0.org1.example.com | [692 12-14 09:36:05.97 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 | [5d2 12-14 09:36:05.61 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.5,txid=c4f7351544b90404a46bf1830fb8680fc9dbcd54b5c5a9859dd7b5d38ecaba54,syscc=true,proposal=0xc4218f09b0,canname=escc:1.0.5 +peer0.org2.example.com | [5ee 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [15a92477]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [61e 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2e97d84ce85288d320b1f66d8ece6751bf01d182c201e070517d3364e977b49d]HandleMessage- COMPLETED. Notify +orderer.example.com | zekLSULI9G2UUYA77A== +peer0.org1.example.com | [693 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [608a0d56]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [5d3 12-14 09:36:05.61 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.5 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [61f 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:2e97d84ce85288d320b1f66d8ece6751bf01d182c201e070517d3364e977b49d +peer0.org2.example.com | [5ef 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [15a92477]Move state message TRANSACTION +peer1.org1.example.com | [5d5 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | [2017-12-14 09:36:06.528] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +orderer.example.com | [3e3 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [694 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [608a0d56]Move state message TRANSACTION +peer0.org2.example.com | [5f0 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [15a92477]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [5d4 12-14 09:36:05.61 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 | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer1.org2.example.com | [620 12-14 09:36:05.73 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 | [695 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [608a0d56]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [5d7 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [5f1 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [621 12-14 09:36:05.73 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 | [696 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [5d8 12-14 09:36:05.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [622 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 2e97d84ce85288d320b1f66d8ece6751bf01d182c201e070517d3364e977b49d channel id: businesschannel version: 1.0 +peer0.org2.example.com | [5f2 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [15a92477]sending state message TRANSACTION +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [697 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [608a0d56]sending state message TRANSACTION +peer1.org1.example.com | [5d6 12-14 09:36:05.61 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.5 +peer1.org2.example.com | [623 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=2e97d84ce85288d320b1f66d8ece6751bf01d182c201e070517d3364e977b49d,syscc=false,proposal=0xc422af40f0,canname=mycc:1.0 +explorer | at ClientRequest.emit (events.js:188:7) +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +peer0.org2.example.com | [5f3 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [15a92477]Received message TRANSACTION from shim +peer1.org1.example.com | [5d9 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c4f73515]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [624 12-14 09:36:05.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) : mycc:1.0 +peer0.org1.example.com | [698 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [608a0d56]Received message TRANSACTION from shim +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer0.org2.example.com | [5f4 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [15a92477]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [699 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [608a0d56]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [625 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [5da 12-14 09:36:05.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.org2.example.com | [5f5 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [15a92477]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [69a 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [608a0d56]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [626 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [5f6 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [15a92477]Sending GET_STATE +peer1.org1.example.com | [5db 12-14 09:36:05.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... +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org1.example.com | [69b 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [608a0d56]Sending GET_STATE +peer0.org2.example.com | [5f7 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [15a92477]Received message GET_STATE from shim +peer1.org2.example.com | [627 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2e97d84c]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [628 12-14 09:36:05.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... +peer1.org2.example.com | [629 12-14 09:36:05.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... +peer1.org2.example.com | [62a 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2e97d84c]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [62b 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2e97d84c]Move state message TRANSACTION +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +peer0.org1.example.com | [69c 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [608a0d56]Received message GET_STATE from shim +explorer | at emitErrorNT (net.js:1281:8) +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +peer0.org2.example.com | [5f8 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [15a92477]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [62c 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2e97d84c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer1.org1.example.com | [5dc 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c4f73515]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +peer1.org2.example.com | [62d 12-14 09:36:05.73 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 | [69d 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [608a0d56]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [5f9 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [15a92477]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [62e 12-14 09:36:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2e97d84c]sending state message TRANSACTION +peer1.org1.example.com | [5dd 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4f73515]Move state message TRANSACTION +peer0.org1.example.com | [69e 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [608a0d56]Received GET_STATE, invoking get state from ledger +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +peer1.org2.example.com | [62f 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2e97d84c]Received message GET_STATE from shim +peer1.org1.example.com | [5de 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4f73515]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [69f 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [5fa 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [630 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2e97d84c]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org1.example.com | [5df 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +peer0.org1.example.com | [6a0 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [608a0d56] getting state for chaincode lscc, key mycc, channel businesschannel +peer1.org2.example.com | [631 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [2e97d84c]Received GET_STATE, invoking get state from ledger +explorer | [2017-12-14 09:36:06.528] [ERROR] Helper - admin enrollment failed +peer0.org2.example.com | [5fb 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [15a92477] getting state for chaincode lscc, key mycc, channel businesschannel +peer1.org1.example.com | [5e0 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4f73515]sending state message TRANSACTION +peer1.org2.example.com | [632 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | [2017-12-14 09:36:06.529] [ERROR] Query - Error: Missing userContext parameter +peer0.org1.example.com | [6a1 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | zekLSULI9G2UUYA77A== +peer0.org2.example.com | [5fc 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org2.example.com | [633 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2e97d84c] getting state for chaincode mycc, key a, channel businesschannel +peer1.org1.example.com | [5e2 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org1.example.com | [6a2 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [608a0d56]Got state. Sending RESPONSE +peer0.org2.example.com | [5fd 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [15a92477]Got state. Sending RESPONSE +peer1.org2.example.com | [634 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a +peer1.org1.example.com | [5e3 12-14 09:36:05.62 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 +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [6a3 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [608a0d56]handleGetState serial send RESPONSE +peer1.org2.example.com | [635 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2e97d84c]Got state. Sending RESPONSE +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer0.org2.example.com | [5fe 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [15a92477]handleGetState serial send RESPONSE +peer1.org1.example.com | [5e1 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4f73515]Received message TRANSACTION from shim +peer0.org1.example.com | [6a4 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [608a0d56]Received message RESPONSE from shim +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [636 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [2e97d84c]handleGetState serial send RESPONSE +orderer.example.com | [3e4 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer0.org2.example.com | [5ff 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [15a92477]Received message RESPONSE from shim +peer0.org1.example.com | [6a5 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [608a0d56]Handling ChaincodeMessage of type: RESPONSE(state:ready) +explorer | [2017-12-14 09:36:06.529] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer1.org1.example.com | [5e4 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4f73515]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [637 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2e97d84c]Received message COMPLETED from shim +peer0.org1.example.com | [6a6 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [608a0d56]before send +peer0.org2.example.com | [600 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [15a92477]Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | [3e5 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +peer1.org2.example.com | [638 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2e97d84c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [5e6 12-14 09:36:05.62 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] +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer0.org2.example.com | [601 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [15a92477]before send +peer0.org1.example.com | [6a7 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [608a0d56]after send +peer1.org1.example.com | [5e7 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [6a9 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [608a0d56]Received RESPONSE, communicated (state:ready) +peer0.org2.example.com | [602 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [15a92477]after send +peer1.org2.example.com | [639 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2e97d84ce85288d320b1f66d8ece6751bf01d182c201e070517d3364e977b49d]HandleMessage- COMPLETED. Notify +orderer.example.com | [3e6 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org2.example.com | [603 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [15a92477]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [6a8 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [608a0d56]GetState received payload RESPONSE +peer1.org2.example.com | [63a 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:2e97d84ce85288d320b1f66d8ece6751bf01d182c201e070517d3364e977b49d +peer1.org1.example.com | [5e8 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442 +orderer.example.com | [3e7 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [6aa 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [608a0d56]Transaction completed. Sending COMPLETED +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 235): Error: Cannot save null userContext. +peer0.org2.example.com | [604 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [15a92477]GetState received payload RESPONSE +peer1.org2.example.com | [63b 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [6ab 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [608a0d56]Move state message COMPLETED +orderer.example.com | [3e8 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org1.example.com | [5e9 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] +peer1.org2.example.com | [63c 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [6ac 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [608a0d56]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [605 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [15a92477]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [5ea 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | [3e9 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [63d 12-14 09:36:05.74 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 | [6ad 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [608a0d56]send state message COMPLETED +peer0.org2.example.com | [606 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [15a92477]Move state message COMPLETED +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +orderer.example.com | [3ea 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +peer1.org1.example.com | [5eb 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [63e 12-14 09:36:05.74 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 [13e4b17d-e963-46b1-8745-1f24cd73bbc8] +peer0.org1.example.com | [6ae 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [608a0d56]Received message COMPLETED from shim +peer0.org2.example.com | [607 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [15a92477]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | [3eb 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [6af 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [608a0d56]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [63f 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org1.example.com | [5ec 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org2.example.com | [608 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [15a92477]send state message COMPLETED +explorer | [2017-12-14 09:36:06.542] [ERROR] Query - Error: Connect Failed +orderer.example.com | [3ec 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +peer1.org2.example.com | [640 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 2e97d84ce85288d320b1f66d8ece6751bf01d182c201e070517d3364e977b49d channel id: businesschannel chaincode id: name:"mycc" +peer1.org1.example.com | [5ed 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [6b0 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [608a0d560ea5ccf53d4a4648518b4deaa3bca04916c676295224c6fa35cce461]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [609 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [15a92477]Received message COMPLETED from shim +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [641 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +peer1.org1.example.com | [5e5 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c4f73515]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [3ed 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +explorer | [2017-12-14 09:36:07.739] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer0.org1.example.com | [6b1 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:608a0d560ea5ccf53d4a4648518b4deaa3bca04916c676295224c6fa35cce461 +peer0.org2.example.com | [60a 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [15a92477]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [5ee 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org2.example.com | [642 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 2e97d84ce85288d320b1f66d8ece6751bf01d182c201e070517d3364e977b49d channel id: businesschannel version: 1.0.5 +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer0.org1.example.com | [6b2 12-14 09:36:05.97 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 | [60b 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [15a924770e036cba9012ca6da0c38242069b708e1ca964b3be2b0dc70e9036b8]HandleMessage- COMPLETED. Notify +orderer.example.com | [3ee 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [5ef 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [6b3 12-14 09:36:05.97 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 | [643 12-14 09:36:05.74 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.5,txid=2e97d84ce85288d320b1f66d8ece6751bf01d182c201e070517d3364e977b49d,syscc=true,proposal=0xc422af40f0,canname=escc:1.0.5 +orderer.example.com | [3ef 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org1.example.com | [6b4 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 608a0d560ea5ccf53d4a4648518b4deaa3bca04916c676295224c6fa35cce461 channel id: businesschannel version: 1.0 +peer0.org2.example.com | [60c 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:15a924770e036cba9012ca6da0c38242069b708e1ca964b3be2b0dc70e9036b8 +peer1.org1.example.com | [5f0 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org2.example.com | [644 12-14 09:36:05.74 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.5 +peer0.org1.example.com | [6b5 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=608a0d560ea5ccf53d4a4648518b4deaa3bca04916c676295224c6fa35cce461,syscc=false,proposal=0xc422413b30,canname=mycc:1.0 +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org2.example.com | [645 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [3f0 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org2.example.com | [60d 12-14 09:36:06.09 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 | [5f1 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4f73515]Transaction completed. Sending COMPLETED +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [6b6 12-14 09:36:05.97 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) : mycc:1.0 +orderer.example.com | [3f1 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer1.org2.example.com | [646 12-14 09:36:05.74 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.5 +peer1.org1.example.com | [5f2 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4f73515]Move state message COMPLETED +peer0.org2.example.com | [60e 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +explorer | at TLSSocket.emit (events.js:188:7) +orderer.example.com | [3f2 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +peer0.org1.example.com | [6b7 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [5f3 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4f73515]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [6b8 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +peer0.org2.example.com | [60f 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 15a924770e036cba9012ca6da0c38242069b708e1ca964b3be2b0dc70e9036b8 channel id: businesschannel version: 1.0 +peer1.org1.example.com | [5f4 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4f73515]send state message COMPLETED +peer1.org2.example.com | [647 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2e97d84c]Inside sendExecuteMessage. Message TRANSACTION +explorer | at emitErrorNT (net.js:1281:8) +orderer.example.com | [3f3 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org2.example.com | [610 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=15a924770e036cba9012ca6da0c38242069b708e1ca964b3be2b0dc70e9036b8,syscc=false,proposal=0xc421482ff0,canname=mycc:1.0 +peer1.org1.example.com | [5f5 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4f73515]Received message COMPLETED from shim +peer1.org2.example.com | [648 12-14 09:36:05.74 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 | [6b9 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [608a0d56]Inside sendExecuteMessage. Message TRANSACTION +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer1.org1.example.com | [5f6 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4f73515]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [3f4 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +peer1.org2.example.com | [649 12-14 09:36:05.74 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 | [611 12-14 09:36:06.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) : mycc:1.0 +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org1.example.com | [5f7 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4f7351544b90404a46bf1830fb8680fc9dbcd54b5c5a9859dd7b5d38ecaba54]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [6ba 12-14 09:36:05.97 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 | [612 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | [2017-12-14 09:36:07.739] [ERROR] Helper - admin enrollment failed +peer1.org2.example.com | [64a 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2e97d84c]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [5f8 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c4f7351544b90404a46bf1830fb8680fc9dbcd54b5c5a9859dd7b5d38ecaba54 +peer0.org1.example.com | [6bb 12-14 09:36:05.97 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 | [3f5 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org2.example.com | [613 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +explorer | [2017-12-14 09:36:07.747] [ERROR] Query - Error: Connect Failed +peer1.org2.example.com | [64b 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2e97d84c]Move state message TRANSACTION +peer1.org1.example.com | [5f9 12-14 09:36:05.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 | [6bc 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [608a0d56]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [3f6 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +peer0.org2.example.com | [614 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [15a92477]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [6bd 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [608a0d56]Move state message TRANSACTION +peer1.org2.example.com | [64c 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2e97d84c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [5fa 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [615 12-14 09:36:06.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... +peer1.org1.example.com | [5fb 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 238): Error: Cannot save null userContext. +peer0.org1.example.com | [6be 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [608a0d56]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [5fc 12-14 09:36:05.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 [e4070b6d-b68e-4f19-8e18-db298feb7290] +peer1.org2.example.com | [64d 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [3f7 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org2.example.com | [616 12-14 09:36:06.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... +peer0.org1.example.com | [6bf 12-14 09:36:05.97 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 | [5fd 12-14 09:36:05.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +orderer.example.com | [3f8 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +peer1.org2.example.com | [64e 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2e97d84c]sending state message TRANSACTION +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org2.example.com | [617 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [15a92477]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [5fe 12-14 09:36:07.92 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [6c0 12-14 09:36:05.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [608a0d56]sending state message TRANSACTION +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | [3f9 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer1.org2.example.com | [64f 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2e97d84c]Received message TRANSACTION from shim +peer1.org1.example.com | [5ff 12-14 09:36:07.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org1.example.com | [6c1 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [608a0d56]Received message GET_STATE from shim +peer0.org2.example.com | [618 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [15a92477]Move state message TRANSACTION +orderer.example.com | [3fa 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +explorer | error: [Channel.js]: Failed Query channel info. Error: Error: Connect Failed +peer1.org2.example.com | [650 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2e97d84c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [6c2 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [608a0d56]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [600 12-14 09:36:07.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org2.example.com | [619 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [15a92477]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [6c3 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [608a0d56]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [651 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2e97d84c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [601 12-14 09:36:07.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421551c20 +orderer.example.com | [3fb 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org2.example.com | [61a 12-14 09:36:06.09 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 | [6c4 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | [2017-12-14 09:36:07.748] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer1.org2.example.com | [652 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org2.example.com | [61b 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [15a92477]sending state message TRANSACTION +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +orderer.example.com | [3fc 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +peer1.org1.example.com | [602 12-14 09:36:07.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\205\214\311\321\005\020\310\222\301\227\003\"\017businesschannel*@8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030H\032\007\3078\234\207'\213\3703\014\244/\337\323L}*D\360\204==" +peer1.org2.example.com | [653 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [3fd 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org2.example.com | [61c 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [15a92477]Received message GET_STATE from shim +peer0.org1.example.com | [6c5 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [608a0d56] getting state for chaincode mycc, key a, channel businesschannel +peer1.org1.example.com | [603 12-14 09:36:07.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [654 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2e97d84c]Transaction completed. Sending COMPLETED +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [61d 12-14 09:36:06.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [15a92477]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | [3fe 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer0.org1.example.com | [6c6 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a +peer1.org1.example.com | [604 12-14 09:36:07.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [61e 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [15a92477]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [655 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2e97d84c]Move state message COMPLETED +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | [3ff 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [6c7 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [608a0d56]Got state. Sending RESPONSE +peer1.org2.example.com | [656 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2e97d84c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | [2017-12-14 09:36:07.758] [ERROR] Query - Error: Connect Failed +peer1.org1.example.com | [605 12-14 09:36:07.93 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} +peer0.org1.example.com | [6c8 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [608a0d56]handleGetState serial send RESPONSE +peer1.org2.example.com | [657 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2e97d84c]send state message COMPLETED +orderer.example.com | [400 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org2.example.com | [61f 12-14 09:36:06.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.org1.example.com | [6c9 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [608a0d56]Received message COMPLETED from shim +peer1.org2.example.com | [658 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2e97d84c]Received message COMPLETED from shim +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [620 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [15a92477] getting state for chaincode mycc, key a, channel businesschannel +peer0.org1.example.com | [6ca 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [608a0d56]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [401 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +peer1.org2.example.com | [659 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2e97d84c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | [2017-12-14 09:36:08.995] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer1.org1.example.com | [606 12-14 09:36:07.93 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [402 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [6cb 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [608a0d560ea5ccf53d4a4648518b4deaa3bca04916c676295224c6fa35cce461]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [621 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a +peer1.org2.example.com | [65a 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2e97d84ce85288d320b1f66d8ece6751bf01d182c201e070517d3364e977b49d]HandleMessage- COMPLETED. Notify +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer0.org1.example.com | [6cc 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:608a0d560ea5ccf53d4a4648518b4deaa3bca04916c676295224c6fa35cce461 +peer1.org1.example.com | [607 12-14 09:36:07.93 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [403 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +peer0.org2.example.com | [622 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [15a92477]Got state. Sending RESPONSE +peer0.org1.example.com | [6cd 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +explorer | at emitOne (events.js:96:13) +orderer.example.com | [404 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +peer1.org2.example.com | [65b 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:2e97d84ce85288d320b1f66d8ece6751bf01d182c201e070517d3364e977b49d +peer0.org2.example.com | [623 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [15a92477]handleGetState serial send RESPONSE +peer0.org1.example.com | [6ce 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [608 12-14 09:36:07.93 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421d60000, header channel_header:"\010\003\032\014\010\205\214\311\321\005\020\310\222\301\227\003\"\017businesschannel*@8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030H\032\007\3078\234\207'\213\3703\014\244/\337\323L}*D\360\204==" +explorer | at ClientRequest.emit (events.js:188:7) +orderer.example.com | [405 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +peer1.org2.example.com | [65c 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [6cf 12-14 09:36:05.98 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 | [609 12-14 09:36:07.95 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org2.example.com | [65d 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [406 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +peer0.org2.example.com | [624 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [15a92477]Received message COMPLETED from shim +peer0.org1.example.com | [6d0 12-14 09:36:05.98 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 [a9678e87-61cb-4f70-a5fa-50155a2a82e9] +peer1.org1.example.com | [60a 12-14 09:36:07.95 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [6d1 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org1.example.com | [60b 12-14 09:36:07.95 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [6d2 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 608a0d560ea5ccf53d4a4648518b4deaa3bca04916c676295224c6fa35cce461 channel id: businesschannel chaincode id: name:"mycc" +orderer.example.com | [407 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +peer1.org1.example.com | [60c 12-14 09:36:07.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [6d3 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [625 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [15a92477]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [65e 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer1.org1.example.com | [60d 12-14 09:36:07.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1] +peer0.org1.example.com | [6d4 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 608a0d560ea5ccf53d4a4648518b4deaa3bca04916c676295224c6fa35cce461 channel id: businesschannel version: 1.0.5 +orderer.example.com | [408 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +explorer | at TLSSocket.emit (events.js:188:7) +peer1.org1.example.com | [60e 12-14 09:36:07.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer0.org2.example.com | [626 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [15a924770e036cba9012ca6da0c38242069b708e1ca964b3be2b0dc70e9036b8]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [6d5 12-14 09:36:05.98 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.5,txid=608a0d560ea5ccf53d4a4648518b4deaa3bca04916c676295224c6fa35cce461,syscc=true,proposal=0xc422413b30,canname=escc:1.0.5 +peer1.org2.example.com | [65f 12-14 09:36:05.74 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 [13e4b17d-e963-46b1-8745-1f24cd73bbc8] +orderer.example.com | [409 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +peer1.org1.example.com | [60f 12-14 09:36:07.95 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 [ae216db0-8f25-48c2-b8dd-d359041cb2fb] +peer0.org1.example.com | [6d6 12-14 09:36:05.98 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.5 +peer0.org2.example.com | [627 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:15a924770e036cba9012ca6da0c38242069b708e1ca964b3be2b0dc70e9036b8 +peer1.org2.example.com | [660 12-14 09:36:05.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [6d7 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | at emitErrorNT (net.js:1281:8) +peer1.org1.example.com | [610 12-14 09:36:07.95 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=mycc +orderer.example.com | [40a 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +peer1.org2.example.com | [661 12-14 09:36:05.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org2.example.com | [628 12-14 09:36:06.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 | [611 12-14 09:36:07.95 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 [ae216db0-8f25-48c2-b8dd-d359041cb2fb] +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +orderer.example.com | [40b 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [6d8 12-14 09:36:05.98 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.5 +peer0.org2.example.com | [629 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [662 12-14 09:36:05.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc424d02840 +peer1.org1.example.com | [612 12-14 09:36:07.95 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 | [6d9 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [608a0d56]Inside sendExecuteMessage. Message TRANSACTION +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org2.example.com | [663 12-14 09:36:05.85 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 | [40c 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +peer0.org2.example.com | [62a 12-14 09:36:06.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 +peer1.org1.example.com | [613 12-14 09:36:07.95 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 [6eb47fdd-420e-4d05-abb3-9ac877b5e366] +peer0.org1.example.com | [6da 12-14 09:36:05.98 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... +explorer | [2017-12-14 09:36:08.995] [ERROR] Helper - admin enrollment failed +peer1.org2.example.com | [664 12-14 09:36:05.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [62b 12-14 09:36:06.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 [560c3fec-f07e-4a6b-a54e-28438b426a59] +peer1.org1.example.com | [614 12-14 09:36:07.95 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=57ff11be-ae7a-4277-9e55-b4dcc20b3dc5,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer0.org1.example.com | [6db 12-14 09:36:05.98 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 | [40d 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org2.example.com | [62c 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org2.example.com | [665 12-14 09:36:05.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} +explorer | [2017-12-14 09:36:08.995] [ERROR] Query - Error: Missing userContext parameter +peer1.org1.example.com | [615 12-14 09:36:07.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1 chaindID businesschannel +peer0.org1.example.com | [6dc 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [608a0d56]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [666 12-14 09:36:05.85 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 | [616 12-14 09:36:07.95 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.5 +orderer.example.com | [40e 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org2.example.com | [62d 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 15a924770e036cba9012ca6da0c38242069b708e1ca964b3be2b0dc70e9036b8 channel id: businesschannel chaincode id: name:"mycc" +peer0.org1.example.com | [6dd 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [608a0d56]Move state message TRANSACTION +peer1.org1.example.com | [617 12-14 09:36:07.95 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [667 12-14 09:36:05.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [40f 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [6de 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [608a0d56]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [618 12-14 09:36:07.96 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer1.org2.example.com | [668 12-14 09:36:05.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422af5c20, header 0xc424d02870 +orderer.example.com | [410 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +peer1.org1.example.com | [619 12-14 09:36:07.96 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [57ff11be]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [62e 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +peer0.org1.example.com | [6df 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [61a 12-14 09:36:07.96 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 | [669 12-14 09:36:05.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:"mycc" +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +orderer.example.com | [411 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +peer0.org2.example.com | [62f 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 15a924770e036cba9012ca6da0c38242069b708e1ca964b3be2b0dc70e9036b8 channel id: businesschannel version: 1.0.5 +peer1.org1.example.com | [61b 12-14 09:36:07.97 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [57ff11be]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [66a 12-14 09:36:05.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1 +peer0.org1.example.com | [6e0 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [608a0d56]sending state message TRANSACTION +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org1.example.com | [61c 12-14 09:36:07.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [57ff11be]Move state message TRANSACTION +orderer.example.com | [412 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +peer1.org2.example.com | [66b 12-14 09:36:05.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1] +peer0.org1.example.com | [6e1 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [608a0d56]Received message TRANSACTION from shim +peer1.org1.example.com | [61d 12-14 09:36:07.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [57ff11be]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [630 12-14 09:36:06.10 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.5,txid=15a924770e036cba9012ca6da0c38242069b708e1ca964b3be2b0dc70e9036b8,syscc=true,proposal=0xc421482ff0,canname=escc:1.0.5 +explorer | [2017-12-14 09:36:08.995] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer0.org1.example.com | [6e2 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [608a0d56]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [413 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +peer1.org2.example.com | [66c 12-14 09:36:05.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 +peer1.org1.example.com | [61e 12-14 09:36:07.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [631 12-14 09:36:06.10 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.5 +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer1.org2.example.com | [66d 12-14 09:36:05.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 [ccc7a737-ab88-45cb-b852-3a3ded5d08cd] +orderer.example.com | [414 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +peer0.org1.example.com | [6e3 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [608a0d56]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [632 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org1.example.com | [61f 12-14 09:36:07.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [57ff11be]sending state message TRANSACTION +peer1.org2.example.com | [66e 12-14 09:36:05.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1 channel id: businesschannel +orderer.example.com | [415 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +peer0.org2.example.com | [633 12-14 09:36:06.10 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.5 +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 243): Error: Cannot save null userContext. +peer1.org1.example.com | [620 12-14 09:36:07.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57ff11be]Received message TRANSACTION from shim +peer0.org1.example.com | [6e4 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org2.example.com | [634 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [15a92477]Inside sendExecuteMessage. Message TRANSACTION +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +orderer.example.com | [416 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +peer1.org1.example.com | [621 12-14 09:36:07.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [57ff11be]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [635 12-14 09:36:06.10 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 | [66f 12-14 09:36:05.85 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.5,txid=8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1,syscc=true,proposal=0xc422af5c20,canname=lscc:1.0.5 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [6e5 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org1.example.com | [622 12-14 09:36:07.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [57ff11be]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [636 12-14 09:36:06.10 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 | [417 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer1.org2.example.com | [670 12-14 09:36:05.85 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.5 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer0.org1.example.com | [6e6 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [608a0d56]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [637 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [15a92477]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [623 12-14 09:36:07.97 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org2.example.com | [671 12-14 09:36:05.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | [418 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +peer0.org2.example.com | [638 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [15a92477]Move state message TRANSACTION +peer1.org1.example.com | [624 12-14 09:36:07.97 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 | [6e7 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [608a0d56]Move state message COMPLETED +peer1.org2.example.com | [672 12-14 09:36:05.85 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.5 +explorer | [2017-12-14 09:36:09.021] [ERROR] Query - Error: Connect Failed +peer0.org2.example.com | [639 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [15a92477]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [625 12-14 09:36:08.00 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +orderer.example.com | [419 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [6e8 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [608a0d56]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [673 12-14 09:36:05.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8fc4e4a6]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [63a 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [6e9 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [608a0d56]send state message COMPLETED +explorer | [2017-12-14 09:36:10.104] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer1.org1.example.com | [626 12-14 09:36:08.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57ff11be]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [674 12-14 09:36:05.85 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.org2.example.com | [63b 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [15a92477]sending state message TRANSACTION +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +orderer.example.com | [41a 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +peer1.org1.example.com | [627 12-14 09:36:08.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57ff11be]Move state message COMPLETED +peer0.org2.example.com | [63c 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [15a92477]Received message TRANSACTION from shim +peer0.org1.example.com | [6ea 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [608a0d56]Received message COMPLETED from shim +peer1.org2.example.com | [675 12-14 09:36:05.85 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... +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [628 12-14 09:36:08.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [57ff11be]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [41b 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +peer0.org2.example.com | [63d 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [15a92477]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [6eb 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [608a0d56]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [676 12-14 09:36:05.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8fc4e4a6]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [629 12-14 09:36:08.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57ff11be]send state message COMPLETED +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org2.example.com | [63e 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [15a92477]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [41c 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +peer1.org1.example.com | [62a 12-14 09:36:08.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [57ff11be]Received message COMPLETED from shim +peer1.org2.example.com | [677 12-14 09:36:05.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fc4e4a6]Move state message TRANSACTION +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer0.org1.example.com | [6ec 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [608a0d560ea5ccf53d4a4648518b4deaa3bca04916c676295224c6fa35cce461]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [63f 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [41d 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer1.org1.example.com | [62b 12-14 09:36:08.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [57ff11be]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [678 12-14 09:36:05.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8fc4e4a6]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [640 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [41e 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +peer1.org1.example.com | [62c 12-14 09:36:08.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [57ff11be-ae7a-4277-9e55-b4dcc20b3dc5]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [62d 12-14 09:36:08.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:57ff11be-ae7a-4277-9e55-b4dcc20b3dc5 +peer1.org1.example.com | [62e 12-14 09:36:08.00 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [62f 12-14 09:36:08.00 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 [6eb47fdd-420e-4d05-abb3-9ac877b5e366] +peer1.org1.example.com | [630 12-14 09:36:08.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org1.example.com | [631 12-14 09:36:08.00 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 | [632 12-14 09:36:08.00 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)(0xc422147f00), Data:(*common.BlockData)(0xc4216c9660), Metadata:(*common.BlockMetadata)(0xc4216c96a0)}, doMVCCValidation=true +peer0.org1.example.com | [6ed 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:608a0d560ea5ccf53d4a4648518b4deaa3bca04916c676295224c6fa35cce461 +peer0.org1.example.com | [6ee 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [6ef 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [641 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [15a92477]Transaction completed. Sending COMPLETED +explorer | at TLSSocket.emit (events.js:188:7) +peer1.org2.example.com | [679 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [6f0 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org2.example.com | [642 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [15a92477]Move state message COMPLETED +peer1.org1.example.com | [633 12-14 09:36:08.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +explorer | at emitErrorNT (net.js:1281:8) +orderer.example.com | [41f 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +peer1.org2.example.com | [67a 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fc4e4a6]sending state message TRANSACTION +peer0.org1.example.com | [6f1 12-14 09:36:05.98 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 [a9678e87-61cb-4f70-a5fa-50155a2a82e9] +peer0.org2.example.com | [643 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [15a92477]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer1.org1.example.com | [634 12-14 09:36:08.00 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=mycc +orderer.example.com | [420 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +peer0.org2.example.com | [644 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [15a92477]send state message COMPLETED +peer0.org1.example.com | [6f2 12-14 09:36:05.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org2.example.com | [67b 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8fc4e4a6]Received message TRANSACTION from shim +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +orderer.example.com | [421 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +peer0.org2.example.com | [645 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [15a92477]Received message COMPLETED from shim +explorer | [2017-12-14 09:36:10.104] [ERROR] Helper - admin enrollment failed +peer1.org2.example.com | [67c 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8fc4e4a6]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [646 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [15a92477]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [6f3 12-14 09:36:06.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org1.example.com | [635 12-14 09:36:08.00 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=mycc, key=a +orderer.example.com | [422 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +peer0.org2.example.com | [647 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [15a924770e036cba9012ca6da0c38242069b708e1ca964b3be2b0dc70e9036b8]HandleMessage- COMPLETED. Notify +explorer | [2017-12-14 09:36:10.106] [ERROR] Query - Error: Missing userContext parameter +peer0.org2.example.com | [648 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:15a924770e036cba9012ca6da0c38242069b708e1ca964b3be2b0dc70e9036b8 +orderer.example.com | [423 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org2.example.com | [649 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [6f4 12-14 09:36:06.39 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422410630 +peer1.org2.example.com | [67d 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8fc4e4a6]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [636 12-14 09:36:08.00 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=mycc, key=b +peer0.org2.example.com | [64a 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +orderer.example.com | [424 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [6f5 12-14 09:36:06.39 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 | [637 12-14 09:36:08.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1] marked as valid by state validator +peer0.org2.example.com | [64b 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer1.org2.example.com | [67e 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [8fc4e4a6]Sending GET_STATE +orderer.example.com | [425 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer0.org2.example.com | [64c 12-14 09:36:06.10 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 [560c3fec-f07e-4a6b-a54e-28438b426a59] +peer0.org1.example.com | [6f6 12-14 09:36:06.39 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [67f 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fc4e4a6]Received message GET_STATE from shim +peer1.org1.example.com | [638 12-14 09:36:08.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xb7, 0x3b, 0x85, 0x60, 0xf5, 0x69, 0xc2, 0xb5, 0x50, 0x9c, 0x93, 0x37, 0x5a, 0x3d, 0x62, 0xc7, 0x7a, 0xcb, 0xad, 0x7e, 0x85, 0x6, 0x13, 0x31, 0x8b, 0xad, 0x29, 0x6d, 0x1a, 0x93, 0xe0, 0x1d} txOffsets= +peer1.org1.example.com | txId=8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1 locPointer=offset=70, bytesLength=2850 +peer1.org1.example.com | ] +peer1.org1.example.com | [639 12-14 09:36:08.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54693, bytesLength=2850] for tx ID: [8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1] to index +peer1.org1.example.com | [63a 12-14 09:36:08.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54693, bytesLength=2850] for tx number:[0] ID: [8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1] to blockNumTranNum index +orderer.example.com | [426 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [6f7 12-14 09:36:06.39 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer0.org2.example.com | [64d 12-14 09:36:06.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org2.example.com | [64e 12-14 09:36:07.89 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] +peer0.org2.example.com | [650 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org2.example.com | [680 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8fc4e4a6]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [6f8 12-14 09:36:06.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 | [63b 12-14 09:36:08.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=[59305], isChainEmpty=[false], lastBlockNumber=[6] +peer0.org2.example.com | [651 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +orderer.example.com | [427 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +peer1.org2.example.com | [681 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [8fc4e4a6]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [6f9 12-14 09:36:06.39 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +explorer | [2017-12-14 09:36:10.106] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +orderer.example.com | [428 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [429 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [42a 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org2.example.com | [652 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org1.example.com | [6fa 12-14 09:36:06.39 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42218a0f0, header 0xc422410660 +peer0.org1.example.com | [6fb 12-14 09:36:06.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:"lscc" +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer1.org1.example.com | [63c 12-14 09:36:08.01 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 | [63d 12-14 09:36:08.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 | [682 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [653 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421e6c360 +peer0.org1.example.com | [6fc 12-14 09:36:06.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: dbbb7b7e6ac1a1e89f75003bab23b8eeb27bdf1090fc89e4ececa7453ba3b2f9 +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +orderer.example.com | [42b 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer1.org1.example.com | [63e 12-14 09:36:08.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 +peer1.org2.example.com | [683 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8fc4e4a6] getting state for chaincode lscc, key mycc, channel businesschannel +peer1.org2.example.com | [684 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org2.example.com | [654 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\205\214\311\321\005\020\310\222\301\227\003\"\017businesschannel*@8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030H\032\007\3078\234\207'\213\3703\014\244/\337\323L}*D\360\204==" +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 246): Error: Cannot save null userContext. +peer1.org1.example.com | [63f 12-14 09:36:08.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +peer0.org1.example.com | [6fd 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [dbbb7b7e6ac1a1e89f75003bab23b8eeb27bdf1090fc89e4ececa7453ba3b2f9] +orderer.example.com | [42c 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org1.example.com | [640 12-14 09:36:08.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer1.org2.example.com | [685 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8fc4e4a6]Got state. Sending RESPONSE +peer0.org2.example.com | [655 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org1.example.com | [641 12-14 09:36:08.01 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 | [686 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [8fc4e4a6]handleGetState serial send RESPONSE +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer0.org1.example.com | [6fe 12-14 09:36:06.40 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 | [642 12-14 09:36:08.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 [6] with [1] transactions +peer1.org1.example.com | [643 12-14 09:36:08.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 [6] +orderer.example.com | [42d 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +peer1.org2.example.com | [687 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8fc4e4a6]Received message RESPONSE from shim +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [6ff 12-14 09:36:06.40 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 [d8c59349-f515-4640-b15c-b91f032bc890] +peer0.org2.example.com | [656 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [42e 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer1.org1.example.com | [644 12-14 09:36:08.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org2.example.com | [688 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8fc4e4a6]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [700 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: dbbb7b7e6ac1a1e89f75003bab23b8eeb27bdf1090fc89e4ececa7453ba3b2f9 channel id: businesschannel +peer0.org2.example.com | [657 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} +explorer | [2017-12-14 09:36:10.122] [ERROR] Query - Error: Connect Failed +peer1.org1.example.com | [645 12-14 09:36:08.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1 +peer1.org2.example.com | [689 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [8fc4e4a6]before send +orderer.example.com | [42f 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +peer0.org1.example.com | [701 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: dbbb7b7e6ac1a1e89f75003bab23b8eeb27bdf1090fc89e4ececa7453ba3b2f9 channel id: businesschannel version: 1.0.5 +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [658 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [646 12-14 09:36:08.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] +orderer.example.com | [430 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org2.example.com | [68a 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [8fc4e4a6]after send +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 249): Error: Cannot save null userContext. +peer0.org1.example.com | [702 12-14 09:36:06.40 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.5,txid=dbbb7b7e6ac1a1e89f75003bab23b8eeb27bdf1090fc89e4ececa7453ba3b2f9,syscc=true,proposal=0xc42218a0f0,canname=lscc:1.0.5 +peer0.org2.example.com | [659 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [647 12-14 09:36:08.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | [431 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +explorer | [2017-12-14 09:36:13.259] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer0.org1.example.com | [703 12-14 09:36:06.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) : lscc:1.0.5 +peer1.org2.example.com | [68b 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [8fc4e4a6]Received RESPONSE, communicated (state:ready) +peer0.org2.example.com | [65a 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421be2000, header channel_header:"\010\003\032\014\010\205\214\311\321\005\020\310\222\301\227\003\"\017businesschannel*@8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030H\032\007\3078\234\207'\213\3703\014\244/\337\323L}*D\360\204==" +peer1.org1.example.com | [648 12-14 09:36:08.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +orderer.example.com | [432 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer0.org1.example.com | [704 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [68c 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [8fc4e4a6]GetState received payload RESPONSE +orderer.example.com | [433 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +peer1.org1.example.com | [649 12-14 09:36:08.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [705 12-14 09:36:06.40 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.5 +peer0.org2.example.com | [65b 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +orderer.example.com | [434 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer1.org1.example.com | [64a 12-14 09:36:08.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org2.example.com | [68d 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8fc4e4a6]Transaction completed. Sending COMPLETED +explorer | at ClientRequest.emit (events.js:188:7) +peer0.org1.example.com | [706 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dbbb7b7e]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [435 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org2.example.com | [65c 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org2.example.com | [68e 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8fc4e4a6]Move state message COMPLETED +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer0.org1.example.com | [707 12-14 09:36:06.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... +peer1.org1.example.com | [64b 12-14 09:36:08.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | [436 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [65d 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [708 12-14 09:36:06.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... +explorer | at emitOne (events.js:96:13) +orderer.example.com | [437 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [68f 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8fc4e4a6]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [65e 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +orderer.example.com | [438 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [690 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8fc4e4a6]send state message COMPLETED +explorer | at TLSSocket.emit (events.js:188:7) +orderer.example.com | [439 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [65f 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1] +peer1.org2.example.com | [691 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fc4e4a6]Received message COMPLETED from shim +orderer.example.com | [43a 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [709 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dbbb7b7e]sendExecuteMsg trigger event TRANSACTION +explorer | at emitErrorNT (net.js:1281:8) +peer0.org2.example.com | [660 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [692 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8fc4e4a6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [43b 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +peer0.org1.example.com | [70a 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dbbb7b7e]Move state message TRANSACTION +orderer.example.com | [43c 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [661 12-14 09:36:07.90 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 [f2bca58b-b841-42b8-808c-24a5f522adbc] +peer1.org2.example.com | [693 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1]HandleMessage- COMPLETED. Notify +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +orderer.example.com | [43d 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [70b 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dbbb7b7e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [694 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1 +explorer | [2017-12-14 09:36:13.260] [ERROR] Helper - admin enrollment failed +peer0.org2.example.com | [662 12-14 09:36:07.90 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=mycc +orderer.example.com | [43e 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [70c 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [43f 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [695 12-14 09:36:05.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 | [663 12-14 09:36:07.90 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 [f2bca58b-b841-42b8-808c-24a5f522adbc] +orderer.example.com | [440 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [70d 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dbbb7b7e]sending state message TRANSACTION +explorer | [2017-12-14 09:36:13.260] [ERROR] Query - Error: Missing userContext parameter +orderer.example.com | [441 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer1.org2.example.com | [696 12-14 09:36:05.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.org1.example.com | [70e 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dbbb7b7e]Received message TRANSACTION from shim +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +peer0.org2.example.com | [664 12-14 09:36:07.90 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 | [442 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [70f 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dbbb7b7e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +orderer.example.com | [443 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [444 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer0.org2.example.com | [665 12-14 09:36:07.90 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 [86778307-e28c-4418-a193-dc227f07e9b7] +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer1.org2.example.com | [697 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1 channel id: businesschannel version: 1.0 +orderer.example.com | [445 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [710 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [dbbb7b7e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +explorer | [2017-12-14 09:36:13.260] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +orderer.example.com | [446 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [698 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1,syscc=false,proposal=0xc422af5c20,canname=mycc:1.0 +peer0.org1.example.com | [711 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [dbbb7b7e]Sending GET_STATE +peer0.org2.example.com | [666 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=345aa4d3-046d-4448-8864-064de24602a2,syscc=true,proposal=0x0,canname=vscc:1.0.5 +orderer.example.com | [447 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [699 12-14 09:36:05.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) : mycc:1.0 +peer1.org2.example.com | [69a 12-14 09:36:05.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 | [69b 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +peer1.org2.example.com | [69c 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8fc4e4a6]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [69d 12-14 09:36:05.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... +peer0.org2.example.com | [667 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1 chaindID businesschannel +peer0.org1.example.com | [712 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dbbb7b7e]Received message GET_STATE from shim +orderer.example.com | [448 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [69e 12-14 09:36:05.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... +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +orderer.example.com | [449 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org2.example.com | [668 12-14 09:36:07.90 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.5 +peer0.org1.example.com | [713 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dbbb7b7e]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [714 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [dbbb7b7e]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [715 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [69f 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8fc4e4a6]sendExecuteMsg trigger event TRANSACTION +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +orderer.example.com | [44a 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org2.example.com | [669 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [716 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [dbbb7b7e] getting state for chaincode lscc, key mycc, channel businesschannel +peer1.org2.example.com | [6a0 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fc4e4a6]Move state message TRANSACTION +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer0.org1.example.com | [717 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | [44b 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [44c 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [44d 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [44e 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [44f 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org2.example.com | [6a1 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8fc4e4a6]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [66a 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer0.org1.example.com | [718 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [dbbb7b7e]Got state. Sending RESPONSE +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [6a2 12-14 09:36:05.86 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 | [450 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [66b 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [345aa4d3]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [6a3 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fc4e4a6]sending state message TRANSACTION +peer0.org1.example.com | [719 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [dbbb7b7e]handleGetState serial send RESPONSE +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +orderer.example.com | [451 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [66c 12-14 09:36:07.90 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 | [71a 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dbbb7b7e]Received message RESPONSE from shim +peer1.org2.example.com | [6a4 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fc4e4a6]Received message GET_STATE from shim +orderer.example.com | [452 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [66d 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [345aa4d3]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [453 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [71b 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dbbb7b7e]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org2.example.com | [66e 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [345aa4d3]Move state message TRANSACTION +peer0.org2.example.com | [66f 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [345aa4d3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [670 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [671 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [345aa4d3]sending state message TRANSACTION +peer1.org2.example.com | [6a5 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8fc4e4a6]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | [454 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [455 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +explorer | [2017-12-14 09:36:13.351] [ERROR] Query - Error: Connect Failed +peer0.org2.example.com | [672 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [345aa4d3]Received message TRANSACTION from shim +peer1.org2.example.com | [6a6 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [8fc4e4a6]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [71c 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [dbbb7b7e]before send +orderer.example.com | [456 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [6a7 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [673 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [345aa4d3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [71d 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [dbbb7b7e]after send +orderer.example.com | [457 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer1.org2.example.com | [6a8 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8fc4e4a6] getting state for chaincode mycc, key a, channel businesschannel +peer0.org2.example.com | [674 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [345aa4d3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [71e 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [dbbb7b7e]Received RESPONSE, communicated (state:ready) +explorer | [2017-12-14 09:36:17.403] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer1.org2.example.com | [6a9 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a +orderer.example.com | [458 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer1.org2.example.com | [6aa 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8fc4e4a6]Got state. Sending RESPONSE +peer0.org2.example.com | [675 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org2.example.com | [676 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer0.org1.example.com | [71f 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [dbbb7b7e]GetState received payload RESPONSE +peer1.org2.example.com | [6ab 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [8fc4e4a6]handleGetState serial send RESPONSE +orderer.example.com | [459 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer0.org2.example.com | [677 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org1.example.com | [720 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dbbb7b7e]Transaction completed. Sending COMPLETED +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [6ac 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fc4e4a6]Received message GET_STATE from shim +orderer.example.com | [45a 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org2.example.com | [678 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [345aa4d3]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [721 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dbbb7b7e]Move state message COMPLETED +explorer | at ClientRequest.emit (events.js:188:7) +peer1.org2.example.com | [6ad 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8fc4e4a6]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [722 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dbbb7b7e]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer1.org2.example.com | [6ae 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [8fc4e4a6]Received GET_STATE, invoking get state from ledger +peer0.org2.example.com | [679 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [345aa4d3]Move state message COMPLETED +peer1.org2.example.com | [6af 12-14 09:36:05.86 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 | [723 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dbbb7b7e]send state message COMPLETED +peer1.org2.example.com | [6b0 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8fc4e4a6] getting state for chaincode mycc, key b, channel businesschannel +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [724 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dbbb7b7e]Received message COMPLETED from shim +peer0.org2.example.com | [67a 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [345aa4d3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [45b 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org2.example.com | [6b1 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=b +peer0.org1.example.com | [725 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dbbb7b7e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at TLSSocket.emit (events.js:188:7) +peer0.org2.example.com | [67b 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [345aa4d3]send state message COMPLETED +orderer.example.com | [45c 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [726 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dbbb7b7e6ac1a1e89f75003bab23b8eeb27bdf1090fc89e4ececa7453ba3b2f9]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [6b2 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8fc4e4a6]Got state. Sending RESPONSE +peer0.org2.example.com | [67c 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [345aa4d3]Received message COMPLETED from shim +explorer | at emitErrorNT (net.js:1281:8) +orderer.example.com | [45d 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org2.example.com | [6b3 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [8fc4e4a6]handleGetState serial send RESPONSE +peer0.org2.example.com | [67d 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [345aa4d3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [727 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:dbbb7b7e6ac1a1e89f75003bab23b8eeb27bdf1090fc89e4ececa7453ba3b2f9 +orderer.example.com | [45e 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org2.example.com | [6b4 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fc4e4a6]Received message PUT_STATE from shim +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +orderer.example.com | [45f 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org1.example.com | [728 12-14 09:36:06.40 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 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8fc4e4a6]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org2.example.com | [67e 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [345aa4d3-046d-4448-8864-064de24602a2]HandleMessage- COMPLETED. Notify +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org2.example.com | [6b6 12-14 09:36:05.86 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 | [729 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [460 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [67f 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:345aa4d3-046d-4448-8864-064de24602a2 +peer1.org2.example.com | [6b7 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8fc4e4a6]state is ready +peer0.org1.example.com | [72a 12-14 09:36:06.40 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 | [461 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [6b8 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8fc4e4a6]Completed PUT_STATE. Sending RESPONSE +peer0.org1.example.com | [72b 12-14 09:36:06.40 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 [d8c59349-f515-4640-b15c-b91f032bc890] +explorer | [2017-12-14 09:36:17.416] [ERROR] Helper - admin enrollment failed +peer1.org2.example.com | [6b9 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [8fc4e4a6]enterBusyState trigger event RESPONSE +peer0.org1.example.com | [72c 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [680 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [462 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +explorer | [2017-12-14 09:36:17.417] [ERROR] Query - Error: Missing userContext parameter +peer0.org1.example.com | [72d 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: dbbb7b7e6ac1a1e89f75003bab23b8eeb27bdf1090fc89e4ececa7453ba3b2f9 channel id: businesschannel chaincode id: name:"lscc" +peer1.org2.example.com | [6ba 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fc4e4a6]Move state message RESPONSE +peer0.org2.example.com | [681 12-14 09:36:07.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 [86778307-e28c-4418-a193-dc227f07e9b7] +peer0.org1.example.com | [72e 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +orderer.example.com | [463 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [6bb 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8fc4e4a6]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer0.org2.example.com | [682 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org1.example.com | [72f 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: dbbb7b7e6ac1a1e89f75003bab23b8eeb27bdf1090fc89e4ececa7453ba3b2f9 channel id: businesschannel version: 1.0.5 +orderer.example.com | [464 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +peer1.org2.example.com | [6bc 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer0.org2.example.com | [683 12-14 09:36:07.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] +peer0.org1.example.com | [730 12-14 09:36:06.40 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.5,txid=dbbb7b7e6ac1a1e89f75003bab23b8eeb27bdf1090fc89e4ececa7453ba3b2f9,syscc=true,proposal=0xc42218a0f0,canname=escc:1.0.5 +peer1.org2.example.com | [6bd 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fc4e4a6]sending state message RESPONSE +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer0.org2.example.com | [684 12-14 09:36:07.90 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)(0xc4219cd500), Data:(*common.BlockData)(0xc421e45280), Metadata:(*common.BlockMetadata)(0xc421e452c0)}, doMVCCValidation=true +orderer.example.com | [465 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +peer1.org2.example.com | [6be 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fc4e4a6]Received message PUT_STATE from shim +peer0.org2.example.com | [685 12-14 09:36:07.90 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 | [731 12-14 09:36:06.40 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.5 +orderer.example.com | [466 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +peer1.org2.example.com | [6bf 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8fc4e4a6]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org2.example.com | [686 12-14 09:36:07.90 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=mycc +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +orderer.example.com | [467 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer0.org1.example.com | [732 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [6c0 12-14 09:36:05.86 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 | [64f 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] +orderer.example.com | [468 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +explorer | [2017-12-14 09:36:17.418] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +peer1.org2.example.com | [6c1 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8fc4e4a6]state is ready +peer0.org1.example.com | [733 12-14 09:36:06.40 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.5 +peer0.org2.example.com | [687 12-14 09:36:07.90 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=mycc, key=a +peer1.org2.example.com | [6c2 12-14 09:36:05.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8fc4e4a6]Completed PUT_STATE. Sending RESPONSE +orderer.example.com | [469 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [734 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dbbb7b7e]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [688 12-14 09:36:07.90 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=mycc, key=b +peer1.org2.example.com | [6c3 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [8fc4e4a6]enterBusyState trigger event RESPONSE +peer0.org1.example.com | [735 12-14 09:36:06.40 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... +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer1.org2.example.com | [6c4 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fc4e4a6]Move state message RESPONSE +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org2.example.com | [689 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1] marked as valid by state validator +peer0.org1.example.com | [736 12-14 09:36:06.40 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 | [6c5 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8fc4e4a6]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer0.org2.example.com | [68a 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xb7, 0x3b, 0x85, 0x60, 0xf5, 0x69, 0xc2, 0xb5, 0x50, 0x9c, 0x93, 0x37, 0x5a, 0x3d, 0x62, 0xc7, 0x7a, 0xcb, 0xad, 0x7e, 0x85, 0x6, 0x13, 0x31, 0x8b, 0xad, 0x29, 0x6d, 0x1a, 0x93, 0xe0, 0x1d} txOffsets= +orderer.example.com | [46a 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 252): Error: Cannot save null userContext. +peer0.org1.example.com | [737 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dbbb7b7e]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [6c6 12-14 09:36:05.87 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 | [46b 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | txId=8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1 locPointer=offset=70, bytesLength=2850 +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +peer1.org2.example.com | [6c7 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fc4e4a6]sending state message RESPONSE +orderer.example.com | [46c 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | ] +peer0.org1.example.com | [738 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dbbb7b7e]Move state message TRANSACTION +peer1.org2.example.com | [6c8 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fc4e4a6]Received message COMPLETED from shim +orderer.example.com | [46d 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +peer0.org1.example.com | [739 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dbbb7b7e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [68b 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54693, bytesLength=2850] for tx ID: [8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1] to index +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer1.org2.example.com | [6c9 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8fc4e4a6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [46e 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +peer0.org1.example.com | [73a 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [6ca 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [68c 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54693, bytesLength=2850] for tx number:[0] ID: [8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1] to blockNumTranNum index +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +peer1.org2.example.com | [6cb 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1 +peer0.org1.example.com | [73b 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dbbb7b7e]sending state message TRANSACTION +peer0.org2.example.com | [68d 12-14 09:36:07.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=[59305], isChainEmpty=[false], lastBlockNumber=[6] +orderer.example.com | [46f 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +peer1.org2.example.com | [6cc 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [73c 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dbbb7b7e]Received message TRANSACTION from shim +orderer.example.com | [470 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +peer0.org2.example.com | [68e 12-14 09:36:07.92 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 | [6cd 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +explorer | [2017-12-14 09:36:17.447] [ERROR] Query - Error: Connect Failed +peer0.org1.example.com | [73d 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dbbb7b7e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [471 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [73e 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [dbbb7b7e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org2.example.com | [68f 12-14 09:36:07.92 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 | [472 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [6ce 12-14 09:36:05.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 +peer0.org1.example.com | [73f 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org2.example.com | [690 12-14 09:36:07.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 | [6cf 12-14 09:36:05.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 [ccc7a737-ab88-45cb-b852-3a3ded5d08cd] +explorer | [2017-12-14 09:36:18.527] [ERROR] Helper - Error: Calling enrollment endpoint failed with error [Error: connect ECONNREFUSED 127.0.0.1:7054] +peer0.org1.example.com | [740 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [473 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +peer1.org2.example.com | [6d0 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [691 12-14 09:36:07.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer0.org1.example.com | [741 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dbbb7b7e]Transaction completed. Sending COMPLETED +orderer.example.com | [474 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +explorer | at ClientRequest. (/blockchain-explorer/node_modules/fabric-ca-client/lib/FabricCAClientImpl.js:711:12) +peer1.org2.example.com | [6d1 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1 channel id: businesschannel chaincode id: name:"mycc" +peer0.org1.example.com | [742 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dbbb7b7e]Move state message COMPLETED +peer0.org2.example.com | [692 12-14 09:36:07.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +peer0.org1.example.com | [743 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dbbb7b7e]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [475 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [6d2 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +peer0.org2.example.com | [693 12-14 09:36:07.92 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 | [6d3 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1 channel id: businesschannel version: 1.0.5 +orderer.example.com | [476 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer0.org2.example.com | [694 12-14 09:36:07.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 +peer0.org1.example.com | [744 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dbbb7b7e]send state message COMPLETED +peer1.org2.example.com | [6d4 12-14 09:36:05.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.5,txid=8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1,syscc=true,proposal=0xc422af5c20,canname=escc:1.0.5 +orderer.example.com | [477 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +explorer | at ClientRequest.emit (events.js:188:7) +orderer.example.com | [478 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +explorer | at TLSSocket.socketErrorListener (_http_client.js:310:9) +peer0.org1.example.com | [745 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dbbb7b7e]Received message COMPLETED from shim +peer0.org2.example.com | [695 12-14 09:36:07.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] +peer1.org2.example.com | [6d5 12-14 09:36:05.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.5 +orderer.example.com | [479 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [47a 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [47b 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [696 12-14 09:36:07.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [746 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dbbb7b7e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at TLSSocket.emit (events.js:188:7) +orderer.example.com | [47c 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [6d6 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [747 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dbbb7b7e6ac1a1e89f75003bab23b8eeb27bdf1090fc89e4ececa7453ba3b2f9]HandleMessage- COMPLETED. Notify +explorer | at emitErrorNT (net.js:1281:8) +peer0.org2.example.com | [697 12-14 09:36:07.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1 +peer1.org2.example.com | [6d7 12-14 09:36:05.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.5 +peer0.org1.example.com | [748 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:dbbb7b7e6ac1a1e89f75003bab23b8eeb27bdf1090fc89e4ececa7453ba3b2f9 +orderer.example.com | [47d 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [47e 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [698 12-14 09:36:07.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] +peer0.org1.example.com | [749 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [6d8 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8fc4e4a6]Inside sendExecuteMessage. Message TRANSACTION +explorer | at _combinedTickCallback (internal/process/next_tick.js:80:11) +orderer.example.com | [47f 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [74a 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +explorer | at process._tickCallback (internal/process/next_tick.js:104:9) +peer1.org2.example.com | [6d9 12-14 09:36:05.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.org2.example.com | [699 12-14 09:36:07.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [6da 12-14 09:36:05.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 | [74b 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +explorer | [2017-12-14 09:36:18.528] [ERROR] Helper - admin enrollment failed +orderer.example.com | [480 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +peer0.org1.example.com | [74c 12-14 09:36:06.40 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 [d8c59349-f515-4640-b15c-b91f032bc890] +explorer | [2017-12-14 09:36:18.531] [ERROR] Query - Error: Missing userContext parameter +peer0.org1.example.com | [74d 12-14 09:36:06.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org2.example.com | [6db 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8fc4e4a6]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [69a 12-14 09:36:07.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +explorer | at new TransactionID (/blockchain-explorer/node_modules/fabric-client/lib/TransactionID.js:43:10) +explorer | at Channel.queryInfo (/blockchain-explorer/node_modules/fabric-client/lib/Channel.js:765:14) +peer0.org1.example.com | [74e 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +orderer.example.com | [481 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +peer0.org2.example.com | [69b 12-14 09:36:07.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +explorer | at helper.getRegisteredUsers.then (/blockchain-explorer/app/query.js:71:18) +peer0.org1.example.com | [74f 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4223cb920 +peer1.org2.example.com | [6dc 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fc4e4a6]Move state message TRANSACTION +peer0.org1.example.com | [750 12-14 09:36:06.56 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 | [482 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +peer0.org1.example.com | [751 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer1.org2.example.com | [6dd 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8fc4e4a6]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [752 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} +peer0.org2.example.com | [69c 12-14 09:36:07.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [753 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +explorer | [2017-12-14 09:36:18.532] [ERROR] blockscanner - TypeError: Cannot read property 'low' of undefined +orderer.example.com | [483 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [6de 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [754 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [69d 12-14 09:36:07.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +explorer | at getChainInfo.then.response (/blockchain-explorer/app/query.js:169:32) +peer0.org1.example.com | [755 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421ef12c0, header 0xc4223cb950 +peer1.org2.example.com | [6df 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fc4e4a6]sending state message TRANSACTION +orderer.example.com | [484 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [756 12-14 09:36:06.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" +explorer | at process._tickCallback (internal/process/next_tick.js:109:7) +peer0.org1.example.com | [757 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 9d101e3b579b4ff8d7e042769eea9000b7b00c905bd97b40b9197f95bf049413 +orderer.example.com | [485 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [758 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [9d101e3b579b4ff8d7e042769eea9000b7b00c905bd97b40b9197f95bf049413] +orderer.example.com | [486 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [6e0 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8fc4e4a6]Received message TRANSACTION from shim +peer0.org1.example.com | [759 12-14 09:36:06.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 +explorer | (node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 255): Error: Cannot save null userContext. +orderer.example.com | [487 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [6e1 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8fc4e4a6]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [75a 12-14 09:36:06.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 [8a7590c3-60bf-4958-8255-1a395542640c] +explorer | error: [client-utils.js]: sendPeersProposal - Promise is rejected: Error: Connect Failed +orderer.example.com | [488 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [75b 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 9d101e3b579b4ff8d7e042769eea9000b7b00c905bd97b40b9197f95bf049413 channel id: businesschannel +peer1.org2.example.com | [6e2 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8fc4e4a6]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +peer0.org1.example.com | [75c 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 9d101e3b579b4ff8d7e042769eea9000b7b00c905bd97b40b9197f95bf049413 channel id: businesschannel version: 1.0.5 +orderer.example.com | [489 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +peer0.org1.example.com | [75d 12-14 09:36:06.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.5,txid=9d101e3b579b4ff8d7e042769eea9000b7b00c905bd97b40b9197f95bf049413,syscc=true,proposal=0xc421ef12c0,canname=lscc:1.0.5 +peer1.org2.example.com | [6e3 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [48a 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +peer1.org2.example.com | [6e4 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [75e 12-14 09:36:06.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.5 +explorer | error: [Client.js]: Failed Installed Chaincodes Query. Error: Error: Connect Failed +orderer.example.com | [48b 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +peer1.org2.example.com | [6e5 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8fc4e4a6]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [75f 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | [48c 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [6e6 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8fc4e4a6]Move state message COMPLETED +peer0.org1.example.com | [760 12-14 09:36:06.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.5 +explorer | [2017-12-14 09:36:18.552] [ERROR] Query - Error: Connect Failed +orderer.example.com | [48d 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [761 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9d101e3b]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [6e7 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8fc4e4a6]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at /blockchain-explorer/node_modules/grpc/src/client.js:554:15 +orderer.example.com | [48e 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +peer1.org2.example.com | [6e8 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8fc4e4a6]send state message COMPLETED +orderer.example.com | [48f 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +peer0.org1.example.com | [762 12-14 09:36:06.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... +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org1.example.com | [763 12-14 09:36:06.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 | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +peer0.org1.example.com | [764 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9d101e3b]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [6e9 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fc4e4a6]Received message COMPLETED from shim +orderer.example.com | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +peer1.org2.example.com | [6ea 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8fc4e4a6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [6eb 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1]HandleMessage- COMPLETED. Notify +orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +peer0.org1.example.com | [765 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9d101e3b]Move state message TRANSACTION +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [490 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [6ec 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1 +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [6ed 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [766 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9d101e3b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [6ee 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +peer1.org2.example.com | [6ef 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [767 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [768 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9d101e3b]sending state message TRANSACTION +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org2.example.com | [6f0 12-14 09:36:05.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 [ccc7a737-ab88-45cb-b852-3a3ded5d08cd] +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +peer1.org2.example.com | [6f1 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [769 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9d101e3b]Received message TRANSACTION from shim +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org2.example.com | [6f2 12-14 09:36:07.92 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [76a 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9d101e3b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +peer1.org2.example.com | [6f3 12-14 09:36:07.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [6f4 12-14 09:36:07.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +orderer.example.com | [491 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [76b 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9d101e3b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [6f5 12-14 09:36:07.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421b090b0 +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [76c 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [9d101e3b]Sending GET_STATE +peer1.org2.example.com | [6f6 12-14 09:36:07.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\205\214\311\321\005\020\310\222\301\227\003\"\017businesschannel*@8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030H\032\007\3078\234\207'\213\3703\014\244/\337\323L}*D\360\204==" +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +peer0.org1.example.com | [76d 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9d101e3b]Received message GET_STATE from shim +peer1.org2.example.com | [6f7 12-14 09:36:07.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org1.example.com | [76e 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9d101e3b]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +peer1.org2.example.com | [6f8 12-14 09:36:07.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [76f 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [9d101e3b]Received GET_STATE, invoking get state from ledger +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [770 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [492 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [493 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +orderer.example.com | [494 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [771 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9d101e3b] getting state for chaincode lscc, key mycc, channel businesschannel +orderer.example.com | [495 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [772 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org2.example.com | [6f9 12-14 09:36:07.93 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} +peer0.org1.example.com | [773 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9d101e3b]Got state. Sending RESPONSE +peer1.org2.example.com | [6fa 12-14 09:36:07.93 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [774 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [9d101e3b]handleGetState serial send RESPONSE +orderer.example.com | [496 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +peer1.org2.example.com | [6fb 12-14 09:36:07.93 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [775 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9d101e3b]Received message RESPONSE from shim +orderer.example.com | [497 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [776 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9d101e3b]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org2.example.com | [6fc 12-14 09:36:07.93 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4215f1000, header channel_header:"\010\003\032\014\010\205\214\311\321\005\020\310\222\301\227\003\"\017businesschannel*@8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030H\032\007\3078\234\207'\213\3703\014\244/\337\323L}*D\360\204==" +peer0.org1.example.com | [777 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [9d101e3b]before send +peer0.org1.example.com | [778 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [9d101e3b]after send +peer0.org1.example.com | [779 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [9d101e3b]Received RESPONSE, communicated (state:ready) +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [6fd 12-14 09:36:07.93 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [77a 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [9d101e3b]GetState received payload RESPONSE +peer1.org2.example.com | [6fe 12-14 09:36:07.93 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [77b 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9d101e3b]Transaction completed. Sending COMPLETED +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +peer0.org1.example.com | [77c 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9d101e3b]Move state message COMPLETED +peer1.org2.example.com | [6ff 12-14 09:36:07.93 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer1.org2.example.com | [700 12-14 09:36:07.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [77d 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9d101e3b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [701 12-14 09:36:07.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1] +peer0.org1.example.com | [77e 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9d101e3b]send state message COMPLETED +orderer.example.com | BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 +peer0.org1.example.com | [77f 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9d101e3b]Received message COMPLETED from shim +peer0.org1.example.com | [780 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9d101e3b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [781 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9d101e3b579b4ff8d7e042769eea9000b7b00c905bd97b40b9197f95bf049413]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [702 12-14 09:36:07.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +orderer.example.com | +/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer0.org1.example.com | [782 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9d101e3b579b4ff8d7e042769eea9000b7b00c905bd97b40b9197f95bf049413 +peer1.org2.example.com | [703 12-14 09:36:07.93 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 [69620e80-c1ca-4c38-880c-7f9b2fa5f143] +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN +peer0.org1.example.com | [783 12-14 09:36:06.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 | [704 12-14 09:36:07.93 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=mycc +peer1.org2.example.com | [705 12-14 09:36:07.93 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 [69620e80-c1ca-4c38-880c-7f9b2fa5f143] +peer0.org1.example.com | [784 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 +peer0.org1.example.com | [785 12-14 09:36:06.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 | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL +peer0.org1.example.com | [786 12-14 09:36:06.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 [8a7590c3-60bf-4958-8255-1a395542640c] +orderer.example.com | liPpNxLSsBU= +peer1.org2.example.com | [706 12-14 09:36:07.93 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 | [787 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [707 12-14 09:36:07.94 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 [bdac7f7c-0678-4138-9d55-220e5b7fb0b4] +peer0.org1.example.com | [788 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 9d101e3b579b4ff8d7e042769eea9000b7b00c905bd97b40b9197f95bf049413 channel id: businesschannel chaincode id: name:"lscc" +peer1.org2.example.com | [708 12-14 09:36:07.94 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=2b14ff97-f854-400f-b37d-1eae51216ee3,syscc=true,proposal=0x0,canname=vscc:1.0.5 +orderer.example.com | [498 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [709 12-14 09:36:07.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1 chaindID businesschannel +peer0.org1.example.com | [789 12-14 09:36:06.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 +peer1.org2.example.com | [70a 12-14 09:36:07.94 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.5 +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [78a 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 9d101e3b579b4ff8d7e042769eea9000b7b00c905bd97b40b9197f95bf049413 channel id: businesschannel version: 1.0.5 +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +peer0.org1.example.com | [78b 12-14 09:36:06.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.5,txid=9d101e3b579b4ff8d7e042769eea9000b7b00c905bd97b40b9197f95bf049413,syscc=true,proposal=0xc421ef12c0,canname=escc:1.0.5 +peer0.org1.example.com | [78c 12-14 09:36:06.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.5 +peer1.org2.example.com | [70b 12-14 09:36:07.94 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [70c 12-14 09:36:07.94 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer1.org2.example.com | [70d 12-14 09:36:07.94 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2b14ff97]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [70e 12-14 09:36:07.94 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 | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +peer1.org2.example.com | [70f 12-14 09:36:07.94 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2b14ff97]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +peer0.org1.example.com | [78d 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [78e 12-14 09:36:06.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.5 +peer0.org1.example.com | [78f 12-14 09:36:06.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9d101e3b]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [710 12-14 09:36:07.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2b14ff97]Move state message TRANSACTION +peer0.org1.example.com | [790 12-14 09:36:06.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 | [711 12-14 09:36:07.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2b14ff97]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +peer0.org1.example.com | [791 12-14 09:36:06.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... +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +peer0.org1.example.com | [792 12-14 09:36:06.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9d101e3b]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +peer0.org1.example.com | [793 12-14 09:36:06.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9d101e3b]Move state message TRANSACTION +peer1.org2.example.com | [712 12-14 09:36:07.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | zekLSULI9G2UUYA77A== +peer0.org1.example.com | [794 12-14 09:36:06.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9d101e3b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [713 12-14 09:36:07.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2b14ff97]sending state message TRANSACTION +peer0.org1.example.com | [795 12-14 09:36:06.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [714 12-14 09:36:07.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2b14ff97]Received message TRANSACTION from shim +orderer.example.com | [499 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [715 12-14 09:36:07.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2b14ff97]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [796 12-14 09:36:06.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9d101e3b]sending state message TRANSACTION +peer1.org2.example.com | [716 12-14 09:36:07.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2b14ff97]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [717 12-14 09:36:07.95 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org2.example.com | [718 12-14 09:36:07.95 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 | [719 12-14 09:36:07.95 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [797 12-14 09:36:06.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9d101e3b]Received message TRANSACTION from shim +peer1.org2.example.com | [71a 12-14 09:36:07.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2b14ff97]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [798 12-14 09:36:06.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9d101e3b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [799 12-14 09:36:06.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9d101e3b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [71b 12-14 09:36:07.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2b14ff97]Move state message COMPLETED +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +peer1.org2.example.com | [71c 12-14 09:36:07.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2b14ff97]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [71d 12-14 09:36:07.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2b14ff97]send state message COMPLETED +peer0.org1.example.com | [79a 12-14 09:36:06.57 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org2.example.com | [71e 12-14 09:36:07.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2b14ff97]Received message COMPLETED from shim +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [79b 12-14 09:36:06.57 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org2.example.com | [71f 12-14 09:36:07.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2b14ff97]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [720 12-14 09:36:07.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2b14ff97-f854-400f-b37d-1eae51216ee3]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [79c 12-14 09:36:06.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9d101e3b]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [79d 12-14 09:36:06.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9d101e3b]Move state message COMPLETED +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +peer1.org2.example.com | [721 12-14 09:36:07.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:2b14ff97-f854-400f-b37d-1eae51216ee3 +peer0.org1.example.com | [79e 12-14 09:36:06.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9d101e3b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [722 12-14 09:36:07.96 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [79f 12-14 09:36:06.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9d101e3b]send state message COMPLETED +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +peer0.org1.example.com | [7a0 12-14 09:36:06.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9d101e3b]Received message COMPLETED from shim +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +peer1.org2.example.com | [723 12-14 09:36:07.96 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 [bdac7f7c-0678-4138-9d55-220e5b7fb0b4] +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +peer1.org2.example.com | [724 12-14 09:36:07.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org1.example.com | [7a1 12-14 09:36:06.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9d101e3b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | zekLSULI9G2UUYA77A== +peer1.org2.example.com | [725 12-14 09:36:07.96 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 | [7a2 12-14 09:36:06.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9d101e3b579b4ff8d7e042769eea9000b7b00c905bd97b40b9197f95bf049413]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [7a3 12-14 09:36:06.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9d101e3b579b4ff8d7e042769eea9000b7b00c905bd97b40b9197f95bf049413 +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [7a4 12-14 09:36:06.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [726 12-14 09:36:07.96 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)(0xc42179ea80), Data:(*common.BlockData)(0xc42292ba00), Metadata:(*common.BlockMetadata)(0xc42292ba40)}, doMVCCValidation=true +peer1.org2.example.com | [727 12-14 09:36:07.96 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 | [728 12-14 09:36:07.96 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=mycc +peer1.org2.example.com | [729 12-14 09:36:07.96 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=mycc, key=a +peer0.org1.example.com | [7a5 12-14 09:36:06.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [72a 12-14 09:36:07.96 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=mycc, key=b +orderer.example.com | [49a 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org2.example.com | [72b 12-14 09:36:07.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1] marked as valid by state validator +peer0.org1.example.com | [7a6 12-14 09:36:06.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer1.org2.example.com | [72c 12-14 09:36:07.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xb7, 0x3b, 0x85, 0x60, 0xf5, 0x69, 0xc2, 0xb5, 0x50, 0x9c, 0x93, 0x37, 0x5a, 0x3d, 0x62, 0xc7, 0x7a, 0xcb, 0xad, 0x7e, 0x85, 0x6, 0x13, 0x31, 0x8b, 0xad, 0x29, 0x6d, 0x1a, 0x93, 0xe0, 0x1d} txOffsets= +peer1.org2.example.com | txId=8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1 locPointer=offset=70, bytesLength=2850 +peer1.org2.example.com | ] +peer1.org2.example.com | [72d 12-14 09:36:07.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54693, bytesLength=2850] for tx ID: [8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1] to index +peer1.org2.example.com | [72e 12-14 09:36:07.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54693, bytesLength=2850] for tx number:[0] ID: [8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1] to blockNumTranNum index +peer1.org2.example.com | [72f 12-14 09:36:07.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59305], isChainEmpty=[false], lastBlockNumber=[6] +peer1.org2.example.com | [730 12-14 09:36:07.97 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 | [731 12-14 09:36:07.97 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 | [732 12-14 09:36:07.97 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 | [7a7 12-14 09:36:06.57 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 [8a7590c3-60bf-4958-8255-1a395542640c] +peer1.org2.example.com | [733 12-14 09:36:07.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +orderer.example.com | [49b 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org2.example.com | [734 12-14 09:36:07.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +peer0.org1.example.com | [7a8 12-14 09:36:06.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org2.example.com | [735 12-14 09:36:07.97 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 | [49c 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [736 12-14 09:36:07.97 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 | [7a9 12-14 09:36:06.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org2.example.com | [737 12-14 09:36:07.97 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 | [738 12-14 09:36:07.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org2.example.com | [739 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1 +orderer.example.com | [49d 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [7aa 12-14 09:36:06.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421845410 +peer1.org2.example.com | [73a 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] +peer0.org1.example.com | [7ab 12-14 09:36:06.71 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 | [73b 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | [49e 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +peer1.org2.example.com | [73c 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +orderer.example.com | [49f 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [73d 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org1.example.com | [7ac 12-14 09:36:06.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [73e 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [7ad 12-14 09:36:06.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [73f 12-14 09:36:07.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [7ae 12-14 09:36:06.71 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 | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [7af 12-14 09:36:06.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +peer0.org1.example.com | [7b0 12-14 09:36:06.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421dd63c0, header 0xc421845440 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +peer0.org1.example.com | [7b1 12-14 09:36:06.71 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 | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer0.org1.example.com | [7b2 12-14 09:36:06.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 8a08edc608d5cf9feb4bfde2b5f065dc26c0f9e918749deef2e5164f5609634c +orderer.example.com | BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +peer0.org1.example.com | [7b3 12-14 09:36:06.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [8a08edc608d5cf9feb4bfde2b5f065dc26c0f9e918749deef2e5164f5609634c] +orderer.example.com | RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer0.org1.example.com | [7b4 12-14 09:36:06.71 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 | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +peer0.org1.example.com | [7b5 12-14 09:36:06.71 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 [51a28b12-d0db-4c57-b3b7-4cb1f78ef46d] +orderer.example.com | kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +peer0.org1.example.com | [7b6 12-14 09:36:06.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 8a08edc608d5cf9feb4bfde2b5f065dc26c0f9e918749deef2e5164f5609634c channel id: businesschannel +orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +peer0.org1.example.com | [7b7 12-14 09:36:06.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 8a08edc608d5cf9feb4bfde2b5f065dc26c0f9e918749deef2e5164f5609634c channel id: businesschannel version: 1.0.5 +peer0.org1.example.com | [7b8 12-14 09:36:06.71 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.5,txid=8a08edc608d5cf9feb4bfde2b5f065dc26c0f9e918749deef2e5164f5609634c,syscc=true,proposal=0xc421dd63c0,canname=lscc:1.0.5 +peer0.org1.example.com | [7b9 12-14 09:36:06.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) : lscc:1.0.5 +peer0.org1.example.com | [7ba 12-14 09:36:06.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | VA7fF8MfGA== +peer0.org1.example.com | [7bb 12-14 09:36:06.71 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.5 +peer0.org1.example.com | [7bc 12-14 09:36:06.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8a08edc6]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [7bd 12-14 09:36:06.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 | -----END CERTIFICATE----- +peer0.org1.example.com | [7be 12-14 09:36:06.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 | [7bf 12-14 09:36:06.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8a08edc6]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [7c0 12-14 09:36:06.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a08edc6]Move state message TRANSACTION +orderer.example.com | [4a0 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [7c1 12-14 09:36:06.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8a08edc6]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | [7c2 12-14 09:36:06.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [7c3 12-14 09:36:06.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a08edc6]sending state message TRANSACTION +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +peer0.org1.example.com | [7c4 12-14 09:36:06.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a08edc6]Received message TRANSACTION from shim +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org1.example.com | [7c5 12-14 09:36:06.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a08edc6]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [7c6 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8a08edc6]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +peer0.org1.example.com | [7c7 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [8a08edc6]Sending GET_STATE +peer0.org1.example.com | [7c8 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a08edc6]Received message GET_STATE from shim +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +peer0.org1.example.com | [7c9 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8a08edc6]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +peer0.org1.example.com | [7ca 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [8a08edc6]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [7cb 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +peer0.org1.example.com | [7cc 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8a08edc6] getting state for chaincode lscc, key mycc, channel businesschannel +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +peer0.org1.example.com | [7cd 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [7ce 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8a08edc6]Got state. Sending RESPONSE +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [7cf 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [8a08edc6]handleGetState serial send RESPONSE +peer0.org1.example.com | [7d0 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a08edc6]Received message RESPONSE from shim +peer0.org1.example.com | [7d1 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a08edc6]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [7d2 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [8a08edc6]before send +peer0.org1.example.com | [7d3 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [8a08edc6]after send +peer0.org1.example.com | [7d4 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [8a08edc6]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [7d5 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [8a08edc6]GetState received payload RESPONSE +orderer.example.com | [4a1 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [7d6 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a08edc6]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [7d7 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a08edc6]Move state message COMPLETED +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | [7d8 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a08edc6]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [7d9 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a08edc6]send state message COMPLETED +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [7da 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a08edc6]Received message COMPLETED from shim +peer0.org1.example.com | [7db 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8a08edc6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [7dc 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8a08edc608d5cf9feb4bfde2b5f065dc26c0f9e918749deef2e5164f5609634c]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [7dd 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8a08edc608d5cf9feb4bfde2b5f065dc26c0f9e918749deef2e5164f5609634c +peer0.org1.example.com | [7de 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [7df 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [7e0 12-14 09:36:06.72 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 | [7e1 12-14 09:36:06.72 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 [51a28b12-d0db-4c57-b3b7-4cb1f78ef46d] +peer0.org1.example.com | [7e2 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [7e3 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 8a08edc608d5cf9feb4bfde2b5f065dc26c0f9e918749deef2e5164f5609634c channel id: businesschannel chaincode id: name:"lscc" +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | [7e4 12-14 09:36:06.72 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 | [7e5 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 8a08edc608d5cf9feb4bfde2b5f065dc26c0f9e918749deef2e5164f5609634c channel id: businesschannel version: 1.0.5 +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +peer0.org1.example.com | [7e6 12-14 09:36:06.72 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.5,txid=8a08edc608d5cf9feb4bfde2b5f065dc26c0f9e918749deef2e5164f5609634c,syscc=true,proposal=0xc421dd63c0,canname=escc:1.0.5 +peer0.org1.example.com | [7e7 12-14 09:36:06.72 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.5 +peer0.org1.example.com | [7e8 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +peer0.org1.example.com | [7e9 12-14 09:36:06.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.5 +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +peer0.org1.example.com | [7ea 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8a08edc6]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [7eb 12-14 09:36:06.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... +peer0.org1.example.com | [7ec 12-14 09:36:06.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 | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +peer0.org1.example.com | [7ed 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8a08edc6]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +peer0.org1.example.com | [7ee 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a08edc6]Move state message TRANSACTION +peer0.org1.example.com | [7ef 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8a08edc6]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [7f0 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [7f1 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a08edc6]sending state message TRANSACTION +peer0.org1.example.com | [7f2 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a08edc6]Received message TRANSACTION from shim +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +peer0.org1.example.com | [7f3 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a08edc6]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [7f4 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8a08edc6]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [7f5 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +peer0.org1.example.com | [7f6 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [7f7 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a08edc6]Transaction completed. Sending COMPLETED +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [4a2 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer0.org1.example.com | [7f8 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a08edc6]Move state message COMPLETED +orderer.example.com | [4a3 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +peer0.org1.example.com | [7f9 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a08edc6]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [4a4 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +peer0.org1.example.com | [7fa 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a08edc6]send state message COMPLETED +orderer.example.com | [4a5 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [7fb 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a08edc6]Received message COMPLETED from shim +peer0.org1.example.com | [7fc 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8a08edc6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [7fd 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8a08edc608d5cf9feb4bfde2b5f065dc26c0f9e918749deef2e5164f5609634c]HandleMessage- COMPLETED. Notify +orderer.example.com | [4a6 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | [4a7 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [7fe 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8a08edc608d5cf9feb4bfde2b5f065dc26c0f9e918749deef2e5164f5609634c +orderer.example.com | [4a8 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | [4a9 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [7ff 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [4aa 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +orderer.example.com | [4ab 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [800 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [4ac 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [801 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [4ad 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [802 12-14 09:36:06.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 [51a28b12-d0db-4c57-b3b7-4cb1f78ef46d] +orderer.example.com | [4ae 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [803 12-14 09:36:06.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +orderer.example.com | [4af 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [4b0 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +peer0.org1.example.com | [804 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +orderer.example.com | [4b1 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [4b2 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +peer0.org1.example.com | [805 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42217e5d0 +peer0.org1.example.com | [806 12-14 09:36:06.87 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 | [4b3 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [807 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [808 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} +peer0.org1.example.com | [809 12-14 09:36:06.87 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 | [4b4 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +peer0.org1.example.com | [80a 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [4b5 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [80b 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421fecf50, header 0xc42217e600 +orderer.example.com | [4b6 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +peer0.org1.example.com | [80c 12-14 09:36:06.87 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 | [80d 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: afa89695f1c489adf2e27d1dd0becc5e5d708b79f80daa9a05c59beb1dc187c1 +peer0.org1.example.com | [80e 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [afa89695f1c489adf2e27d1dd0becc5e5d708b79f80daa9a05c59beb1dc187c1] +orderer.example.com | [4b7 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [80f 12-14 09:36:06.87 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 | [4b8 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | [4b9 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [4ba 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +peer0.org1.example.com | [810 12-14 09:36:06.87 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 [8f1cb19d-3b0c-4fa2-a597-b91c96775917] +orderer.example.com | [4bb 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [4bc 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [811 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: afa89695f1c489adf2e27d1dd0becc5e5d708b79f80daa9a05c59beb1dc187c1 channel id: businesschannel +orderer.example.com | [4bd 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [4be 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [4bf 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [812 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: afa89695f1c489adf2e27d1dd0becc5e5d708b79f80daa9a05c59beb1dc187c1 channel id: businesschannel version: 1.0.5 +orderer.example.com | [4c0 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [813 12-14 09:36:06.87 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.5,txid=afa89695f1c489adf2e27d1dd0becc5e5d708b79f80daa9a05c59beb1dc187c1,syscc=true,proposal=0xc421fecf50,canname=lscc:1.0.5 +peer0.org1.example.com | [814 12-14 09:36:06.87 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.5 +peer0.org1.example.com | [815 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [4c1 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [816 12-14 09:36:06.87 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.5 +peer0.org1.example.com | [817 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [afa89695]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [818 12-14 09:36:06.87 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 | [4c2 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +peer0.org1.example.com | [819 12-14 09:36:06.87 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 | [4c3 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +peer0.org1.example.com | [81a 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [afa89695]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [81b 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afa89695]Move state message TRANSACTION +orderer.example.com | [4c4 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | [4c5 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +peer0.org1.example.com | [81c 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afa89695]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [4c6 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | [4c7 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +peer0.org1.example.com | [81d 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [4c8 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +peer0.org1.example.com | [81e 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afa89695]sending state message TRANSACTION +orderer.example.com | [4c9 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [81f 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afa89695]Received message TRANSACTION from shim +orderer.example.com | [4ca 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +peer0.org1.example.com | [820 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [afa89695]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [821 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [afa89695]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [4cb 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +peer0.org1.example.com | [822 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afa89695]Transaction completed. Sending COMPLETED +orderer.example.com | [4cc 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +peer0.org1.example.com | [823 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afa89695]Move state message COMPLETED +peer0.org1.example.com | [824 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [afa89695]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [4cd 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [4ce 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | [4cf 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [825 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afa89695]send state message COMPLETED +orderer.example.com | [4d0 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +peer0.org1.example.com | [826 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afa89695]Received message COMPLETED from shim +orderer.example.com | [4d1 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +peer0.org1.example.com | [827 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afa89695]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [828 12-14 09:36:06.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afa89695f1c489adf2e27d1dd0becc5e5d708b79f80daa9a05c59beb1dc187c1]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [829 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:afa89695f1c489adf2e27d1dd0becc5e5d708b79f80daa9a05c59beb1dc187c1 +orderer.example.com | [4d2 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +peer0.org1.example.com | [82a 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [4d3 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +orderer.example.com | [4d4 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +peer0.org1.example.com | [82b 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [4d5 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [82c 12-14 09:36:06.88 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 | [4d6 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +peer0.org1.example.com | [82d 12-14 09:36:06.88 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 [8f1cb19d-3b0c-4fa2-a597-b91c96775917] +peer0.org1.example.com | [82e 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [4d7 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [4d8 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +peer0.org1.example.com | [82f 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: afa89695f1c489adf2e27d1dd0becc5e5d708b79f80daa9a05c59beb1dc187c1 channel id: businesschannel chaincode id: name:"lscc" +orderer.example.com | [4d9 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +orderer.example.com | [4da 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | [4db 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +orderer.example.com | [4dc 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | [4dd 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +orderer.example.com | [4de 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | [4df 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +orderer.example.com | [4e0 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +peer0.org1.example.com | [830 12-14 09:36:06.88 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 | [4e1 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [4e2 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [4e3 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [4e4 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [831 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: afa89695f1c489adf2e27d1dd0becc5e5d708b79f80daa9a05c59beb1dc187c1 channel id: businesschannel version: 1.0.5 +orderer.example.com | [4e5 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [4e6 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [4e7 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [4e8 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org1.example.com | [832 12-14 09:36:06.88 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.5,txid=afa89695f1c489adf2e27d1dd0becc5e5d708b79f80daa9a05c59beb1dc187c1,syscc=true,proposal=0xc421fecf50,canname=escc:1.0.5 +orderer.example.com | [4e9 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [4ea 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer0.org1.example.com | [833 12-14 09:36:06.88 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.5 +orderer.example.com | [4eb 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +peer0.org1.example.com | [834 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [4ec 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer0.org1.example.com | [835 12-14 09:36:06.88 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.5 +orderer.example.com | [4ed 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +peer0.org1.example.com | [836 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [afa89695]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [837 12-14 09:36:06.88 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 | [838 12-14 09:36:06.88 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 | [839 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [afa89695]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [4ee 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | [4ef 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +peer0.org1.example.com | [83a 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afa89695]Move state message TRANSACTION +orderer.example.com | [4f0 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [4f1 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +peer0.org1.example.com | [83b 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afa89695]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [83c 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [83d 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afa89695]sending state message TRANSACTION +orderer.example.com | [4f2 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer0.org1.example.com | [83e 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afa89695]Received message TRANSACTION from shim +orderer.example.com | [4f3 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: testchainid] Broadcast has successfully enqueued message of type ORDERER_TRANSACTION +orderer.example.com | [4f4 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [4f5 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e128 gate 1513244079657284300 evaluation starts +peer0.org1.example.com | [83f 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [afa89695]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [4f6 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e128 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [840 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [afa89695]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [841 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [842 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [843 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afa89695]Transaction completed. Sending COMPLETED +orderer.example.com | [4f7 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e128 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [4f8 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [844 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afa89695]Move state message COMPLETED +orderer.example.com | MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL +peer0.org1.example.com | [845 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [afa89695]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [846 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afa89695]send state message COMPLETED +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [847 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afa89695]Received message COMPLETED from shim +peer0.org1.example.com | [848 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afa89695]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [849 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afa89695f1c489adf2e27d1dd0becc5e5d708b79f80daa9a05c59beb1dc187c1]HandleMessage- COMPLETED. Notify +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV +peer0.org1.example.com | [84a 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:afa89695f1c489adf2e27d1dd0becc5e5d708b79f80daa9a05c59beb1dc187c1 +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer0.org1.example.com | [84b 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [84c 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [84d 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +orderer.example.com | KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +orderer.example.com | gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +peer0.org1.example.com | [84e 12-14 09:36:06.88 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 [8f1cb19d-3b0c-4fa2-a597-b91c96775917] +peer0.org1.example.com | [84f 12-14 09:36:06.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [850 12-14 09:36:07.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org1.example.com | [851 12-14 09:36:07.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421ff2ea0 +orderer.example.com | KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +orderer.example.com | iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +orderer.example.com | Tg== +peer0.org1.example.com | [852 12-14 09:36:07.06 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----- +peer0.org1.example.com | [853 12-14 09:36:07.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [4f9 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +peer0.org1.example.com | [854 12-14 09:36:07.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} +orderer.example.com | [4fa 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org1.example.com | [855 12-14 09:36:07.06 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 | [4fb 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e128 principal matched by identity 0 +orderer.example.com | [4fc 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 03 5f 04 49 0b 57 23 ad 51 1e ee c2 fc 31 7c 39 |._.I.W#.Q....1|9| +orderer.example.com | 00000010 64 d2 bd 41 1f 6d d4 ca 14 1a b9 d1 f6 27 cf bc |d..A.m.......'..| +orderer.example.com | [4fd 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 dd 5a 0a 25 0c 82 20 b7 21 51 93 |0E.!..Z.%.. .!Q.| +orderer.example.com | 00000010 a1 37 19 10 ec 44 b7 c7 ce a6 cb 34 eb fc 13 96 |.7...D.....4....| +peer0.org1.example.com | [856 12-14 09:36:07.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | 00000020 15 74 2f f3 87 02 20 51 4b 63 57 4c b6 9a 92 07 |.t/... QKcWL....| +peer0.org1.example.com | [857 12-14 09:36:07.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421648b40, header 0xc421ff2ed0 +orderer.example.com | 00000030 61 df a6 56 65 9b e5 4a b2 f9 58 cd aa 11 cd 5f |a..Ve..J..X...._| +orderer.example.com | 00000040 3f c9 1a 4b 5e 75 3c |?..K^u<| +peer0.org1.example.com | [858 12-14 09:36: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:"lscc" +orderer.example.com | [4fe 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e128 principal evaluation succeeds for identity 0 +orderer.example.com | [4ff 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e128 gate 1513244079657284300 evaluation succeeds +peer0.org1.example.com | [859 12-14 09:36:07.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 2447eadd5c46f63da145067524f7bc0c7e85e75f587ce9ca3bd71b6b59f0b617 +orderer.example.com | [500 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039c7e0 1 [0xc4200260b0]}) Writers]} +peer0.org1.example.com | [85a 12-14 09:36:07.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [2447eadd5c46f63da145067524f7bc0c7e85e75f587ce9ca3bd71b6b59f0b617] +peer0.org1.example.com | [85b 12-14 09:36: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.org1.example.com | [85c 12-14 09:36: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 [c6668416-d9ed-4a79-a79f-ebf165ba4be0] +peer0.org1.example.com | [85d 12-14 09:36:07.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 2447eadd5c46f63da145067524f7bc0c7e85e75f587ce9ca3bd71b6b59f0b617 channel id: businesschannel +peer0.org1.example.com | [85e 12-14 09:36:07.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 2447eadd5c46f63da145067524f7bc0c7e85e75f587ce9ca3bd71b6b59f0b617 channel id: businesschannel version: 1.0.5 +orderer.example.com | [501 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/msp/mgmt] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [85f 12-14 09:36:07.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.5,txid=2447eadd5c46f63da145067524f7bc0c7e85e75f587ce9ca3bd71b6b59f0b617,syscc=true,proposal=0xc421648b40,canname=lscc:1.0.5 +peer0.org1.example.com | [860 12-14 09:36:07.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.5 +orderer.example.com | [502 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [861 12-14 09:36:07.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [862 12-14 09:36:07.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.5 +peer0.org1.example.com | [863 12-14 09:36:07.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2447eadd]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [864 12-14 09:36:07.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... +peer0.org1.example.com | [865 12-14 09:36:07.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... +peer0.org1.example.com | [866 12-14 09:36:07.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2447eadd]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [867 12-14 09:36:07.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2447eadd]Move state message TRANSACTION +peer0.org1.example.com | [868 12-14 09:36:07.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2447eadd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [869 12-14 09:36:07.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [86a 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2447eadd]sending state message TRANSACTION +orderer.example.com | [503 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [86b 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2447eadd]Received message TRANSACTION from shim +peer0.org1.example.com | [86c 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2447eadd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [504 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [86d 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2447eadd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [86e 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [2447eadd]Sending GET_STATE_BY_RANGE +peer0.org1.example.com | [86f 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2447eadd]Received message GET_STATE_BY_RANGE from shim +orderer.example.com | [505 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0ABC060A1B08011A0608AF8BC9D10522...07577269746572731A0641646D696E73 +peer0.org1.example.com | [870 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2447eadd]Fabric side Handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready +peer0.org1.example.com | [871 12-14 09:36:07.07 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 | [506 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 668D84387FB3FA816B545B35C1A946ECB951477F879FDA3C91494B35C1B38768 +peer0.org1.example.com | [872 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Exiting GET_STATE_BY_RANGE +orderer.example.com | [507 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org1.example.com | [874 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [508 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [873 12-14 09:36:07.07 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 | [509 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [50a 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [875 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] getQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result +peer0.org1.example.com | [876 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Got keys and values. Sending RESPONSE +orderer.example.com | [50b 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [877 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [2447eadd]handleGetStateByRange serial send RESPONSE +orderer.example.com | [50c 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [50d 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [878 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2447eadd]Received message RESPONSE from shim +orderer.example.com | [50e 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [50f 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [879 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2447eadd]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [87a 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [2447eadd]before send +orderer.example.com | [510 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [87b 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [2447eadd]after send +peer0.org1.example.com | [87d 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [2447eadd]Received RESPONSE. Successfully got range +orderer.example.com | [511 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [87e 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [2447eadd]Sending QUERY_STATE_CLOSE +orderer.example.com | [512 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [513 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [87f 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2447eadd]Received message QUERY_STATE_CLOSE from shim +orderer.example.com | [514 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [515 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [516 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [880 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2447eadd]Fabric side Handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready +peer0.org1.example.com | [881 12-14 09:36:07.07 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 | [882 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Exiting QUERY_STATE_CLOSE +orderer.example.com | [517 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [518 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +orderer.example.com | [519 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | [51a 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [883 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [51b 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [884 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Closed. Sending RESPONSE +orderer.example.com | [51c 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [885 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [2447eadd]handleQueryStateClose serial send RESPONSE +peer0.org1.example.com | [87c 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [2447eadd]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [886 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2447eadd]Received message RESPONSE from shim +orderer.example.com | [51d 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [51e 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [887 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2447eadd]Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | [51f 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [888 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [2447eadd]before send +orderer.example.com | [520 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [889 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [2447eadd]after send +peer0.org1.example.com | [88b 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [2447eadd]Received RESPONSE, communicated (state:ready) +orderer.example.com | [521 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [88a 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [2447eadd]Received RESPONSE. Successfully got range +peer0.org1.example.com | [88c 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2447eadd]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [88d 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2447eadd]Move state message COMPLETED +peer0.org1.example.com | [88e 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2447eadd]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [88f 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2447eadd]send state message COMPLETED +orderer.example.com | [522 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | [523 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [524 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [525 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [890 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2447eadd]Received message COMPLETED from shim +peer0.org1.example.com | [891 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2447eadd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [526 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [527 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org1.example.com | [892 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2447eadd5c46f63da145067524f7bc0c7e85e75f587ce9ca3bd71b6b59f0b617]HandleMessage- COMPLETED. Notify +orderer.example.com | [528 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer0.org1.example.com | [893 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:2447eadd5c46f63da145067524f7bc0c7e85e75f587ce9ca3bd71b6b59f0b617 +orderer.example.com | [529 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer0.org1.example.com | [894 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [895 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [52a 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer0.org1.example.com | [896 12-14 09:36:07.07 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 | [52b 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [897 12-14 09:36:07.07 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 [c6668416-d9ed-4a79-a79f-ebf165ba4be0] +orderer.example.com | [52c 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [898 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [52f 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [899 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 2447eadd5c46f63da145067524f7bc0c7e85e75f587ce9ca3bd71b6b59f0b617 channel id: businesschannel chaincode id: name:"lscc" +peer0.org1.example.com | [89a 12-14 09:36:07.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 | [530 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +peer0.org1.example.com | [89b 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 2447eadd5c46f63da145067524f7bc0c7e85e75f587ce9ca3bd71b6b59f0b617 channel id: businesschannel version: 1.0.5 +peer0.org1.example.com | [89c 12-14 09:36:07.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.5,txid=2447eadd5c46f63da145067524f7bc0c7e85e75f587ce9ca3bd71b6b59f0b617,syscc=true,proposal=0xc421648b40,canname=escc:1.0.5 +peer0.org1.example.com | [89d 12-14 09:36:07.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.5 +orderer.example.com | [531 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org1.example.com | [89e 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [89f 12-14 09:36:07.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.5 +peer0.org1.example.com | [8a0 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2447eadd]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [532 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [8a1 12-14 09:36:07.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 | [533 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [534 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [8a2 12-14 09:36:07.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 | [8a3 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2447eadd]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [535 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [8a4 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2447eadd]Move state message TRANSACTION +peer0.org1.example.com | [8a5 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2447eadd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [8a6 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [8a7 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2447eadd]sending state message TRANSACTION +peer0.org1.example.com | [8a8 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2447eadd]Received message TRANSACTION from shim +peer0.org1.example.com | [8a9 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2447eadd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [8aa 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2447eadd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [8ab 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [8ac 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [8ad 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2447eadd]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [8ae 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2447eadd]Move state message COMPLETED +peer0.org1.example.com | [8af 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2447eadd]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [536 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +peer0.org1.example.com | [8b0 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2447eadd]send state message COMPLETED +orderer.example.com | [537 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +peer0.org1.example.com | [8b1 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2447eadd]Received message COMPLETED from shim +peer0.org1.example.com | [8b2 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2447eadd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [8b3 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2447eadd5c46f63da145067524f7bc0c7e85e75f587ce9ca3bd71b6b59f0b617]HandleMessage- COMPLETED. Notify +orderer.example.com | [538 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +peer0.org1.example.com | [8b4 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:2447eadd5c46f63da145067524f7bc0c7e85e75f587ce9ca3bd71b6b59f0b617 +orderer.example.com | [539 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer0.org1.example.com | [8b5 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [53a 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [53b 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [8b6 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [8b7 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [8b8 12-14 09:36:07.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 [c6668416-d9ed-4a79-a79f-ebf165ba4be0] +orderer.example.com | [53c 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [8b9 12-14 09:36:07.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [8ba 12-14 09:36:07.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org1.example.com | [8bb 12-14 09:36:07.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421f17080 +peer0.org1.example.com | [8bc 12-14 09:36:07.35 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 | [53d 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [8bd 12-14 09:36:07.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [53e 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [8be 12-14 09:36:07.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} +orderer.example.com | [53f 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +peer0.org1.example.com | [8bf 12-14 09:36:07.35 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 | [540 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [541 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +peer0.org1.example.com | [8c0 12-14 09:36:07.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [542 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [543 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [8c1 12-14 09:36:07.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421649db0, header 0xc421f170b0 +orderer.example.com | [544 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [8c2 12-14 09:36:07.35 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 | [545 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +peer0.org1.example.com | [8c3 12-14 09:36:07.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 4418b9dd4050bbd86d3160943bad8ff4b1fd758b09d757a31c9b9e9f641b7917 +orderer.example.com | [546 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [547 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [548 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [549 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy ChannelCreationPolicy for Application +orderer.example.com | [54a 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [8c4 12-14 09:36:07.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [4418b9dd4050bbd86d3160943bad8ff4b1fd758b09d757a31c9b9e9f641b7917] +orderer.example.com | [54b 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [54c 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [54d 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [54e 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [54f 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [550 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [551 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +peer0.org1.example.com | [8c5 12-14 09:36:07.35 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 | [552 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +peer0.org1.example.com | [8c6 12-14 09:36:07.35 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 [27711a25-aa7c-4c9d-bc38-f5463aa11143] +peer0.org1.example.com | [8c7 12-14 09:36:07.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 4418b9dd4050bbd86d3160943bad8ff4b1fd758b09d757a31c9b9e9f641b7917 channel id: businesschannel +peer0.org1.example.com | [8c8 12-14 09:36:07.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 4418b9dd4050bbd86d3160943bad8ff4b1fd758b09d757a31c9b9e9f641b7917 channel id: businesschannel version: 1.0.5 +peer0.org1.example.com | [8c9 12-14 09:36:07.35 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.5,txid=4418b9dd4050bbd86d3160943bad8ff4b1fd758b09d757a31c9b9e9f641b7917,syscc=true,proposal=0xc421649db0,canname=qscc:1.0.5 +peer0.org1.example.com | [8ca 12-14 09:36:07.35 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.5 +peer0.org1.example.com | [8cb 12-14 09:36:07.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [8cc 12-14 09:36:07.35 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.5 +peer0.org1.example.com | [8cd 12-14 09:36:07.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4418b9dd]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [8ce 12-14 09:36:07.35 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 | [8cf 12-14 09:36:07.35 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 | [553 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [8d0 12-14 09:36:07.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4418b9dd]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [554 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [555 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [556 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [8d1 12-14 09:36:07.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4418b9dd]Move state message TRANSACTION +peer0.org1.example.com | [8d2 12-14 09:36:07.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4418b9dd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [557 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [52d 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Rejecting deliver because channel businesschannel not found +peer0.org1.example.com | [8d3 12-14 09:36:07.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [558 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [8d4 12-14 09:36:07.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4418b9dd]sending state message TRANSACTION +peer0.org1.example.com | [8d5 12-14 09:36:07.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4418b9dd]Received message TRANSACTION from shim +orderer.example.com | [559 12-14 09:34:39.67 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [55a 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [55b 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +peer0.org1.example.com | [8d6 12-14 09:36:07.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4418b9dd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [55c 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +peer0.org1.example.com | [8d7 12-14 09:36:07.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4418b9dd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [8d8 12-14 09:36:07.35 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +orderer.example.com | [55d 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [8d9 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4418b9dd]Transaction completed. Sending COMPLETED +orderer.example.com | [55e 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [55f 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +peer0.org1.example.com | [8da 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4418b9dd]Move state message COMPLETED +orderer.example.com | [560 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +peer0.org1.example.com | [8db 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4418b9dd]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [8dc 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4418b9dd]send state message COMPLETED +peer0.org1.example.com | [8dd 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4418b9dd]Received message COMPLETED from shim +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer0.org1.example.com | [8de 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4418b9dd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [8df 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4418b9dd4050bbd86d3160943bad8ff4b1fd758b09d757a31c9b9e9f641b7917]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [8e0 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4418b9dd4050bbd86d3160943bad8ff4b1fd758b09d757a31c9b9e9f641b7917 +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +peer0.org1.example.com | [8e1 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer0.org1.example.com | [8e2 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [8e3 12-14 09:36:07.36 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 | [8e4 12-14 09:36:07.36 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 [27711a25-aa7c-4c9d-bc38-f5463aa11143] +peer0.org1.example.com | [8e5 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org1.example.com | [8e6 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 4418b9dd4050bbd86d3160943bad8ff4b1fd758b09d757a31c9b9e9f641b7917 channel id: businesschannel chaincode id: name:"qscc" +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +peer0.org1.example.com | [8e7 12-14 09:36:07.36 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 | [8e8 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 4418b9dd4050bbd86d3160943bad8ff4b1fd758b09d757a31c9b9e9f641b7917 channel id: businesschannel version: 1.0.5 +peer0.org1.example.com | [8e9 12-14 09:36:07.36 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.5,txid=4418b9dd4050bbd86d3160943bad8ff4b1fd758b09d757a31c9b9e9f641b7917,syscc=true,proposal=0xc421649db0,canname=escc:1.0.5 +peer0.org1.example.com | [8ea 12-14 09:36:07.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.5 +peer0.org1.example.com | [8eb 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [8ec 12-14 09:36:07.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.5 +peer0.org1.example.com | [8ed 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4418b9dd]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [8ee 12-14 09:36:07.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... +peer0.org1.example.com | [8ef 12-14 09:36:07.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... +peer0.org1.example.com | [8f0 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4418b9dd]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +peer0.org1.example.com | [8f1 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4418b9dd]Move state message TRANSACTION +peer0.org1.example.com | [8f2 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4418b9dd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [8f3 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [8f4 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4418b9dd]sending state message TRANSACTION +peer0.org1.example.com | [8f5 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4418b9dd]Received message TRANSACTION from shim +peer0.org1.example.com | [8f6 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4418b9dd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org1.example.com | [8f7 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4418b9dd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +peer0.org1.example.com | [8f8 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +peer0.org1.example.com | [8f9 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [8fa 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4418b9dd]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [8fb 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4418b9dd]Move state message COMPLETED +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [52e 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +peer0.org1.example.com | [8fc 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4418b9dd]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [561 12-14 09:34:39.67 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +peer0.org1.example.com | [8fd 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4418b9dd]send state message COMPLETED +orderer.example.com | [562 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [8fe 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4418b9dd]Received message COMPLETED from shim +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [8ff 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4418b9dd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [900 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4418b9dd4050bbd86d3160943bad8ff4b1fd758b09d757a31c9b9e9f641b7917]HandleMessage- COMPLETED. Notify +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org1.example.com | [901 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4418b9dd4050bbd86d3160943bad8ff4b1fd758b09d757a31c9b9e9f641b7917 +peer0.org1.example.com | [902 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [903 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [904 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [905 12-14 09:36:07.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 [27711a25-aa7c-4c9d-bc38-f5463aa11143] +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +peer0.org1.example.com | [906 12-14 09:36:07.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [907 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +peer0.org1.example.com | [908 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421ec9530 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [563 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [564 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [565 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +peer0.org1.example.com | [909 12-14 09:36:07.49 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 | [566 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [90a 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [90b 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} +peer0.org1.example.com | [90c 12-14 09:36:07.49 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 | [567 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [90d 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [568 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [569 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [90e 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4217cb1d0, header 0xc421ec9560 +orderer.example.com | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [90f 12-14 09:36:07.49 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 | [910 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: be220e0317da57e2312770ebefa700d275cb0723ac0d3f1ee821fcb98723e255 +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [911 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [be220e0317da57e2312770ebefa700d275cb0723ac0d3f1ee821fcb98723e255] +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +peer0.org1.example.com | [912 12-14 09:36:07.49 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 | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [913 12-14 09:36:07.49 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 [9278c8bd-1bc6-4a85-982f-812f7322c5f0] +peer0.org1.example.com | [914 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: be220e0317da57e2312770ebefa700d275cb0723ac0d3f1ee821fcb98723e255 channel id: businesschannel +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +peer0.org1.example.com | [915 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: be220e0317da57e2312770ebefa700d275cb0723ac0d3f1ee821fcb98723e255 channel id: businesschannel version: 1.0.5 +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer0.org1.example.com | [916 12-14 09:36:07.49 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.5,txid=be220e0317da57e2312770ebefa700d275cb0723ac0d3f1ee821fcb98723e255,syscc=true,proposal=0xc4217cb1d0,canname=qscc:1.0.5 +peer0.org1.example.com | [917 12-14 09:36:07.49 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.5 +orderer.example.com | BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 +orderer.example.com | +/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN +orderer.example.com | wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 +peer0.org1.example.com | [918 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL +peer0.org1.example.com | [919 12-14 09:36:07.49 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.5 +orderer.example.com | liPpNxLSsBU= +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [91a 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [be220e03]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [91b 12-14 09:36:07.49 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 | [91c 12-14 09:36:07.49 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 | [56a 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [91d 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [be220e03]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [91e 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [be220e03]Move state message TRANSACTION +peer0.org1.example.com | [91f 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [be220e03]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [920 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +peer0.org1.example.com | [921 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [be220e03]sending state message TRANSACTION +peer0.org1.example.com | [922 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be220e03]Received message TRANSACTION from shim +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +peer0.org1.example.com | [923 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [be220e03]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +peer0.org1.example.com | [924 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [be220e03]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +peer0.org1.example.com | [925 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +peer0.org1.example.com | [926 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +peer0.org1.example.com | [927 12-14 09:36:07.49 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=[25698] +peer0.org1.example.com | [928 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[28925], Going to peek [8] bytes +peer0.org1.example.com | [929 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13807], placementInfo={fileNum=[0], startOffset=[25698], bytesOffset=[25700]} +peer0.org1.example.com | [92a 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be220e03]Transaction completed. Sending COMPLETED +orderer.example.com | zekLSULI9G2UUYA77A== +peer0.org1.example.com | [92b 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be220e03]Move state message COMPLETED +peer0.org1.example.com | [92c 12-14 09:36:07.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [be220e03]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [56b 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [92d 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be220e03]send state message COMPLETED +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [92e 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [be220e03]Received message COMPLETED from shim +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +peer0.org1.example.com | [92f 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [be220e03]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [930 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [be220e0317da57e2312770ebefa700d275cb0723ac0d3f1ee821fcb98723e255]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [931 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:be220e0317da57e2312770ebefa700d275cb0723ac0d3f1ee821fcb98723e255 +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [932 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +peer0.org1.example.com | [933 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +peer0.org1.example.com | [934 12-14 09:36:07.50 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 | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +peer0.org1.example.com | [935 12-14 09:36:07.50 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 [9278c8bd-1bc6-4a85-982f-812f7322c5f0] +peer0.org1.example.com | [936 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [937 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: be220e0317da57e2312770ebefa700d275cb0723ac0d3f1ee821fcb98723e255 channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [938 12-14 09:36:07.50 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 | [939 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: be220e0317da57e2312770ebefa700d275cb0723ac0d3f1ee821fcb98723e255 channel id: businesschannel version: 1.0.5 +peer0.org1.example.com | [93a 12-14 09:36:07.50 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.5,txid=be220e0317da57e2312770ebefa700d275cb0723ac0d3f1ee821fcb98723e255,syscc=true,proposal=0xc4217cb1d0,canname=escc:1.0.5 +peer0.org1.example.com | [93b 12-14 09:36:07.50 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.5 +peer0.org1.example.com | [93c 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [93d 12-14 09:36:07.50 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.5 +peer0.org1.example.com | [93e 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [be220e03]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [93f 12-14 09:36:07.50 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 | [940 12-14 09:36:07.50 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 | [941 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [be220e03]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [942 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [be220e03]Move state message TRANSACTION +peer0.org1.example.com | [943 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [be220e03]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [944 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [945 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [be220e03]sending state message TRANSACTION +peer0.org1.example.com | [946 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be220e03]Received message TRANSACTION from shim +peer0.org1.example.com | [947 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [be220e03]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [948 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [be220e03]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [949 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [94a 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [94b 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be220e03]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [94c 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be220e03]Move state message COMPLETED +peer0.org1.example.com | [94d 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [be220e03]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [94e 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be220e03]send state message COMPLETED +peer0.org1.example.com | [94f 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [be220e03]Received message COMPLETED from shim +peer0.org1.example.com | [950 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [be220e03]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [951 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [be220e0317da57e2312770ebefa700d275cb0723ac0d3f1ee821fcb98723e255]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [952 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:be220e0317da57e2312770ebefa700d275cb0723ac0d3f1ee821fcb98723e255 +peer0.org1.example.com | [953 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [56c 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [56d 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [56e 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [56f 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [570 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [571 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +orderer.example.com | RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +orderer.example.com | kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +orderer.example.com | VA7fF8MfGA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [572 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [573 12-14 09:34:39.68 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [575 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [576 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [574 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +orderer.example.com | [577 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [578 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [579 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [57a 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [57b 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | [57c 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [57d 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | [57e 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [57f 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +orderer.example.com | [580 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [581 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [582 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [583 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [584 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [585 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | [586 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [587 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | [588 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [589 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | [58a 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [954 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [955 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [956 12-14 09:36:07.50 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 [9278c8bd-1bc6-4a85-982f-812f7322c5f0] +peer0.org1.example.com | [957 12-14 09:36:07.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [958 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] +peer0.org1.example.com | [95a 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [959 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] +peer0.org1.example.com | [95b 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org1.example.com | [95c 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org1.example.com | [95d 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42166c7b0 +peer0.org1.example.com | [95e 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\205\214\311\321\005\020\310\222\301\227\003\"\017businesschannel*@8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030H\032\007\3078\234\207'\213\3703\014\244/\337\323L}*D\360\204==" +peer0.org1.example.com | [95f 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [960 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [961 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} +peer0.org1.example.com | [962 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [963 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [964 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc420300000, header channel_header:"\010\003\032\014\010\205\214\311\321\005\020\310\222\301\227\003\"\017businesschannel*@8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030H\032\007\3078\234\207'\213\3703\014\244/\337\323L}*D\360\204==" +peer0.org1.example.com | [965 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [966 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [967 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [968 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [969 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1] +peer0.org1.example.com | [96a 12-14 09:36:07.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer0.org1.example.com | [96b 12-14 09:36:07.91 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 [8a9acfef-bff7-4b75-bbc5-885bfd7533f8] +peer0.org1.example.com | [96c 12-14 09:36:07.91 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=mycc +peer0.org1.example.com | [96d 12-14 09:36:07.91 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 [8a9acfef-bff7-4b75-bbc5-885bfd7533f8] +peer0.org1.example.com | [96e 12-14 09:36:07.91 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 | [96f 12-14 09:36:07.91 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 [cfb72039-583a-4d4d-8634-411ae4d03c23] +peer0.org1.example.com | [970 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=29a48b15-6ed0-4c31-93d8-d48686bc3d0b,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer0.org1.example.com | [971 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1 chaindID businesschannel +peer0.org1.example.com | [972 12-14 09:36:07.91 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.5 +peer0.org1.example.com | [973 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [974 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer0.org1.example.com | [975 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [29a48b15]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [976 12-14 09:36:07.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 | [977 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [29a48b15]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [978 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [29a48b15]Move state message TRANSACTION +orderer.example.com | [58b 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | [58c 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [979 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [29a48b15]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [97a 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [58d 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +peer0.org1.example.com | [97b 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [29a48b15]sending state message TRANSACTION +peer0.org1.example.com | [97c 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [29a48b15]Received message TRANSACTION from shim +peer0.org1.example.com | [97d 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [29a48b15]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [97e 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [29a48b15]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [97f 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org1.example.com | [980 12-14 09:36:07.91 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 | [981 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org1.example.com | [982 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [29a48b15]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [983 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [29a48b15]Move state message COMPLETED +orderer.example.com | [58e 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [58f 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | [590 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [591 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [592 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | [593 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | [594 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +peer0.org1.example.com | [984 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [29a48b15]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [595 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | [596 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [597 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | [598 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [985 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [29a48b15]send state message COMPLETED +orderer.example.com | [599 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | [59a 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [986 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [29a48b15]Received message COMPLETED from shim +orderer.example.com | [59b 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | [59c 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | [59d 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | [59e 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +orderer.example.com | [59f 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | [5a0 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +orderer.example.com | [5a1 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | [5a2 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +orderer.example.com | [5a3 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | [5a4 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +orderer.example.com | [5a5 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | [5a6 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +orderer.example.com | [5a7 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | [5a8 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +orderer.example.com | [5a9 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | [5aa 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +orderer.example.com | [5ab 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel +orderer.example.com | [5ac 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +orderer.example.com | [5ad 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | [5ae 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [5af 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Application/Writers +orderer.example.com | [5b0 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [5b1 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in /Application/Admins +orderer.example.com | [5b2 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [5b3 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Application/Readers +orderer.example.com | [5b4 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [5b5 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [5b6 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [5b7 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [5b8 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | [5b9 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [5ba 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [5bb 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [5bc 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [5bd 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [5be 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [5bf 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [5c0 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | [5c1 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +orderer.example.com | [5c2 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026500 gate 1513244079697946400 evaluation starts +orderer.example.com | [5c3 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026500 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [5c4 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026500 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +peer0.org1.example.com | [987 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [29a48b15]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [988 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [29a48b15-6ed0-4c31-93d8-d48686bc3d0b]HandleMessage- COMPLETED. Notify +orderer.example.com | [5c5 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [989 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:29a48b15-6ed0-4c31-93d8-d48686bc3d0b +peer0.org1.example.com | [98a 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [98b 12-14 09:36:07.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 [cfb72039-583a-4d4d-8634-411ae4d03c23] +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [98c 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org1.example.com | [98d 12-14 09:36:07.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] +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +peer0.org1.example.com | [98e 12-14 09:36:07.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)(0xc42026fb80), Data:(*common.BlockData)(0xc4224a6040), Metadata:(*common.BlockMetadata)(0xc4224a6080)}, doMVCCValidation=true +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [98f 12-14 09:36:07.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 +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [990 12-14 09:36:07.91 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=mycc +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +peer0.org1.example.com | [991 12-14 09:36:07.91 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=mycc, key=a +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +peer0.org1.example.com | [992 12-14 09:36:07.91 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=mycc, key=b +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +peer0.org1.example.com | [993 12-14 09:36:07.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1] marked as valid by state validator +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +peer0.org1.example.com | [994 12-14 09:36:07.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xb7, 0x3b, 0x85, 0x60, 0xf5, 0x69, 0xc2, 0xb5, 0x50, 0x9c, 0x93, 0x37, 0x5a, 0x3d, 0x62, 0xc7, 0x7a, 0xcb, 0xad, 0x7e, 0x85, 0x6, 0x13, 0x31, 0x8b, 0xad, 0x29, 0x6d, 0x1a, 0x93, 0xe0, 0x1d} txOffsets= +orderer.example.com | zekLSULI9G2UUYA77A== +peer0.org1.example.com | txId=8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1 locPointer=offset=70, bytesLength=2850 +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | ] +peer0.org1.example.com | [995 12-14 09:36:07.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54693, bytesLength=2850] for tx ID: [8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1] to index +orderer.example.com | [5c6 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +peer0.org1.example.com | [996 12-14 09:36:07.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54693, bytesLength=2850] for tx number:[0] ID: [8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1] to blockNumTranNum index +orderer.example.com | [5c7 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026500 principal matched by identity 0 +peer0.org1.example.com | [997 12-14 09:36:07.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=[59305], isChainEmpty=[false], lastBlockNumber=[6] +orderer.example.com | [5c8 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 da dd 74 a9 35 9f 1f 14 e0 3c dd 86 1f 57 bf ba |..t.5....<...W..| +peer0.org1.example.com | [998 12-14 09:36:07.93 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 | 00000010 5e 42 96 9e e3 02 d8 b0 af 35 ce ae 94 24 39 56 |^B.......5...$9V| +orderer.example.com | [5c9 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c8 49 2b 30 49 6a be d9 eb a3 c9 |0E.!..I+0Ij.....| +peer0.org1.example.com | [999 12-14 09:36:07.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 | [99a 12-14 09:36:07.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 +orderer.example.com | 00000010 b1 d7 c2 5c db 7d 7f 01 f0 f4 c5 4c a2 2a 38 b4 |...\.}.....L.*8.| +peer0.org1.example.com | [99b 12-14 09:36:07.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +orderer.example.com | 00000020 03 c8 6f ec f5 02 20 26 98 0f ec d7 1d 2d b0 ca |..o... &.....-..| +peer0.org1.example.com | [99c 12-14 09:36:07.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +orderer.example.com | 00000030 7b 73 23 a7 15 35 c6 37 da c7 d0 f8 5a 99 85 fc |{s#..5.7....Z...| +orderer.example.com | 00000040 5a f7 c3 eb b0 dd b3 |Z......| +orderer.example.com | [5ca 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026500 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [99d 12-14 09:36:07.94 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 | [99e 12-14 09:36:07.94 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 | [5cb 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026500 gate 1513244079697946400 evaluation succeeds +orderer.example.com | [5cc 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [99f 12-14 09:36:07.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 [6] +peer0.org1.example.com | [9a0 12-14 09:36:07.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +orderer.example.com | [5cd 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [9a1 12-14 09:36:07.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1 +orderer.example.com | [5ce 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [5cf 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [9a2 12-14 09:36:07.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] +peer0.org1.example.com | [9a3 12-14 09:36:07.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | [5d0 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [5d1 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer0.org1.example.com | [9a4 12-14 09:36:07.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [9a5 12-14 09:36:07.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | [5d2 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [5d3 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [9a6 12-14 09:36:07.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +orderer.example.com | [5d4 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [5d5 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [9a7 12-14 09:36:07.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | [5d6 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [5d7 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [5d8 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [5d9 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [5da 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [5db 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [5dc 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [5dd 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [5de 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [5df 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [5e0 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [5e1 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [5e2 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [5e3 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [5e4 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [5e5 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [5e6 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [5e7 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [5e8 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [5e9 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +orderer.example.com | [5ea 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [5eb 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [5ec 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [5ed 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [5ee 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [5ef 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [5f0 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [5f1 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [5f2 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [5f3 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [5f4 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +orderer.example.com | [5f5 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [5f6 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [5f7 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [5f8 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [5f9 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [5fa 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [5fb 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [5fc 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [5fd 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [5fe 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [5ff 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [600 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [601 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [602 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [603 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [604 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [605 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [606 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [607 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [608 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [609 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [60a 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [60b 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [60c 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [60d 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [60e 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [60f 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [610 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [611 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +orderer.example.com | RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +orderer.example.com | kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +orderer.example.com | VA7fF8MfGA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [612 12-14 09:34:39.71 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [613 12-14 09:34:39.71 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [614 12-14 09:34:39.71 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [615 12-14 09:34:39.71 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +orderer.example.com | [616 12-14 09:34:39.71 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [617 12-14 09:34:39.71 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [618 12-14 09:34:39.71 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [619 12-14 09:34:39.71 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 +orderer.example.com | +/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN +orderer.example.com | wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 +orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL +orderer.example.com | liPpNxLSsBU= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [61a 12-14 09:34:39.71 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [61b 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [61c 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [61d 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [61e 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [61f 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [620 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -38,7 +13624,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [018 12-05 07:29:40.20 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [621 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -51,7 +13637,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [019 12-05 07:29:40.20 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [622 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -64,7 +13650,1384 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [01a 12-05 07:29:40.20 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [623 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [624 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [625 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [626 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [627 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | [628 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | [629 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [62a 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [62b 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [62c 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [62d 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | [62e 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [62f 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | [630 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | [631 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [632 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [633 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [634 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [635 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [636 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [637 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [638 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [639 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [63a 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [63b 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [63c 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [63d 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [63e 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [63f 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [640 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [641 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [642 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [643 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | [644 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | [645 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | [646 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | [647 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [648 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [649 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [64a 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [64b 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [64c 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [64d 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [64e 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | [64f 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [650 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [651 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [652 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [653 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [654 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [655 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [656 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | [657 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +orderer.example.com | [658 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026c10 gate 1513244079737977900 evaluation starts +orderer.example.com | [659 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026c10 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [65a 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026c10 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [65b 12-14 09:34:39.74 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [65c 12-14 09:34:39.74 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | [65d 12-14 09:34:39.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026c10 principal matched by identity 0 +orderer.example.com | [65e 12-14 09:34:39.74 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 da dd 74 a9 35 9f 1f 14 e0 3c dd 86 1f 57 bf ba |..t.5....<...W..| +orderer.example.com | 00000010 5e 42 96 9e e3 02 d8 b0 af 35 ce ae 94 24 39 56 |^B.......5...$9V| +orderer.example.com | [65f 12-14 09:34:39.74 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c8 49 2b 30 49 6a be d9 eb a3 c9 |0E.!..I+0Ij.....| +orderer.example.com | 00000010 b1 d7 c2 5c db 7d 7f 01 f0 f4 c5 4c a2 2a 38 b4 |...\.}.....L.*8.| +orderer.example.com | 00000020 03 c8 6f ec f5 02 20 26 98 0f ec d7 1d 2d b0 ca |..o... &.....-..| +orderer.example.com | 00000030 7b 73 23 a7 15 35 c6 37 da c7 d0 f8 5a 99 85 fc |{s#..5.7....Z...| +orderer.example.com | 00000040 5a f7 c3 eb b0 dd b3 |Z......| +orderer.example.com | [660 12-14 09:34:39.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026c10 principal evaluation succeeds for identity 0 +orderer.example.com | [661 12-14 09:34:39.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026c10 gate 1513244079737977900 evaluation succeeds +orderer.example.com | [662 12-14 09:34:39.74 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [663 12-14 09:34:39.74 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [664 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [665 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [666 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [667 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [668 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [669 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [66a 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [66b 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [66c 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [66d 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [66e 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [66f 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [670 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [671 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [672 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [673 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [674 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [675 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [676 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [677 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [678 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [679 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [67a 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [67b 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [67c 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [67d 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [67e 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [67f 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [680 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +orderer.example.com | [681 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [682 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [683 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [684 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [685 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [686 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [687 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [688 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [689 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [68a 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [68b 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [68c 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [68d 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [68e 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [68f 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [690 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [691 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +orderer.example.com | [692 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [693 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [694 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [695 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [696 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [697 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [698 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [699 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [69a 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [69b 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [69c 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [69d 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [69e 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [69f 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [6a0 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [6a1 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [6a2 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [6a3 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +orderer.example.com | [6a4 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [6a5 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [6a6 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [6a7 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 +orderer.example.com | +/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN +orderer.example.com | wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 +orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL +orderer.example.com | liPpNxLSsBU= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6a8 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6a9 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6aa 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [6ab 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [6ac 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [6ad 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [6ae 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [6af 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +orderer.example.com | RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +orderer.example.com | kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +orderer.example.com | VA7fF8MfGA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6b0 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6b1 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6b2 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [6b3 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [6b4 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [6b5 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [6b6 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +orderer.example.com | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6b7 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6b8 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6b9 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [6ba 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [6bb 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [6bc 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [6bd 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | [6be 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [6bf 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | [6c0 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [6c1 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | [6c2 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [6c3 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | [6c4 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [6c5 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | [6c6 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [6c7 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | [6c8 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [6c9 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [6ca 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [6cb 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [6cc 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [6cd 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [6ce 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [6cf 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | [6d0 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [6d1 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | [6d2 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [6d3 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +orderer.example.com | [6d4 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [6d5 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [6d6 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [6d7 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [6d8 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [6d9 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +orderer.example.com | [6da 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [6db 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +orderer.example.com | [6dc 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +orderer.example.com | [6dd 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | [6de 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +orderer.example.com | [6df 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | [6e0 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +orderer.example.com | [6e1 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | [6e2 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [6e3 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +orderer.example.com | [6e4 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +orderer.example.com | [6e5 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | [6e6 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +orderer.example.com | [6e7 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | [6e8 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +orderer.example.com | [6e9 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | [6ea 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | [6eb 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | [6ec 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +orderer.example.com | [6ed 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | [6ee 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | [6ef 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | [6f0 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [6f1 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | [6f2 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [6f3 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | [6f4 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [6f5 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | [6f6 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +orderer.example.com | [6f7 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | [6f8 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [6f9 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [6fa 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [6fb 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [6fc 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [6fd 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [6fe 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [6ff 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | [700 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [701 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [702 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +orderer.example.com | [703 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [704 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +orderer.example.com | [705 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | [706 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +orderer.example.com | [707 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [708 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +orderer.example.com | [709 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [70a 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [70b 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [70c 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [70d 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [70e 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [70f 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [710 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | [711 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | [712 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [713 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [714 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [715 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [716 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | [717 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | [718 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | [719 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [71a 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [71b 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [71c 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [71d 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [71e 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [71f 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [720 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [721 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [722 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [723 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [724 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [725 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [726 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [727 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [728 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [729 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [72a 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [72b 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [72c 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | [72d 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | [72e 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | [72f 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | [730 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [731 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [732 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [733 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [734 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [735 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [736 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [737 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [738 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [739 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [73a 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [73b 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [73c 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [73d 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [73e 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [73f 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [740 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [741 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [742 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [743 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [744 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [745 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [746 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [747 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [748 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [749 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [74a 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [74b 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [74c 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [74d 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [74e 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +orderer.example.com | [74f 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [750 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [751 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [752 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [753 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [754 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [755 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [756 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [757 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [758 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [759 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [75a 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [75b 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [75c 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [75d 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [75e 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [75f 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [760 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +orderer.example.com | [761 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [762 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [763 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [764 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +orderer.example.com | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [765 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [766 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [767 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [768 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +orderer.example.com | [769 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [76a 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [76b 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [76c 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 +orderer.example.com | +/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN +orderer.example.com | wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 +orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL +orderer.example.com | liPpNxLSsBU= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [76d 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [76e 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [76f 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [770 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [771 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [772 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [773 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [774 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +orderer.example.com | RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +orderer.example.com | kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +orderer.example.com | VA7fF8MfGA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [775 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [776 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [777 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [778 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [779 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [77a 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [77b 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | [77c 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [77d 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | [77e 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [77f 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +orderer.example.com | [780 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [781 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [782 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [783 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [784 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [785 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | [786 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [787 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | [788 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [789 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | [78a 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [78b 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | [78c 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [78d 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | [78e 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [78f 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | [790 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [791 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [792 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [793 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [794 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [795 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [796 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | [797 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | [798 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [799 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | [79a 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [79b 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | [79c 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +orderer.example.com | [79d 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | [79e 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [79f 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | [7a0 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | [7a1 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | [7a2 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +orderer.example.com | [7a3 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | [7a4 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [7a5 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +orderer.example.com | [7a6 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [7a7 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +orderer.example.com | [7a8 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +orderer.example.com | [7a9 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | [7aa 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +orderer.example.com | [7ab 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | [7ac 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +orderer.example.com | [7ad 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | [7ae 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [7af 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +orderer.example.com | [7b0 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +orderer.example.com | [7b1 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | [7b2 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +orderer.example.com | [7b3 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | [7b4 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +orderer.example.com | [7b5 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | [7b6 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [7b7 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [7b8 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [7b9 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [7ba 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [7bb 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [7bc 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [7bd 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | [7be 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [7bf 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [7c0 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +orderer.example.com | [7c1 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [7c2 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +orderer.example.com | [7c3 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | [7c4 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +orderer.example.com | [7c5 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [7c6 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +orderer.example.com | [7c7 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [7c8 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Found message which requested to be isolated, cutting into its own batch +orderer.example.com | [7c9 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +orderer.example.com | [7ca 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +orderer.example.com | [7cb 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9086], Going to peek [8] bytes +orderer.example.com | [7cc 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9084], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | [7cd 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [7ce 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [7cf 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [7d0 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [7d1 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [7d2 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [7d3 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | [7d4 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | [7d5 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [7d6 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [7d7 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [7d8 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [7d9 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | [7da 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | [7db 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [7dc 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | [7dd 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [7de 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [7df 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [7e0 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [7e1 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [7e2 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [7e3 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [7e4 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [7e5 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [7e6 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [7e7 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [7e8 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [7e9 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [7ea 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [7eb 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [7ec 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [7ed 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [7ee 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [7ef 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | [7f0 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | [7f1 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | [7f2 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | [7f3 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [7f4 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [7f5 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [7f6 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [7f7 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [7f8 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [7f9 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [7fa 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [7fb 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [7fc 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [7fd 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [7fe 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [7ff 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [800 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [801 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [802 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [803 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [804 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [805 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [806 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [807 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [808 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [809 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [80a 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [80b 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [80c 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [80d 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [80e 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [80f 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +orderer.example.com | [810 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [811 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [812 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [813 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [814 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [815 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [816 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [817 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [818 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [819 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [81a 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +orderer.example.com | [81b 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [81c 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [81d 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [81e 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [81f 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [820 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [821 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [822 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [823 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [824 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [825 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [826 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [827 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +orderer.example.com | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [828 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [829 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [82a 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [82b 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [82c 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [82d 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [82e 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [82f 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +orderer.example.com | RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +orderer.example.com | kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +orderer.example.com | VA7fF8MfGA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [830 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [831 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [832 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [833 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +orderer.example.com | [834 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [835 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [836 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [837 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 +orderer.example.com | +/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN +orderer.example.com | wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 +orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL +orderer.example.com | liPpNxLSsBU= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [838 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [839 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [83a 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [83b 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [83c 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [83d 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [83e 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | [83f 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [840 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | [841 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [842 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +orderer.example.com | [843 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [844 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [845 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [846 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [847 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [848 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | [849 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [84a 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | [84b 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [84c 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | [84d 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [84e 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | [84f 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [850 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | [851 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [852 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | [853 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [854 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [855 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [856 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [857 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [858 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [859 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | [85a 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | [85b 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +orderer.example.com | [85c 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | [85d 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | [85e 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | [85f 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [860 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | [861 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +orderer.example.com | [862 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | [863 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [864 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | [865 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [866 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | [867 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +orderer.example.com | [868 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | [869 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +orderer.example.com | [86a 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | [86b 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +orderer.example.com | [86c 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | [86d 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +orderer.example.com | [86e 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | [86f 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +orderer.example.com | [870 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | [871 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [872 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +orderer.example.com | [873 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +orderer.example.com | [874 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | [875 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [876 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +orderer.example.com | [877 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [878 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +orderer.example.com | [879 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [87a 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [87b 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [87c 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [87d 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [87e 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [87f 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [880 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | [881 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [882 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [883 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +orderer.example.com | [884 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [885 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +orderer.example.com | [886 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | [887 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +orderer.example.com | [888 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [889 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +orderer.example.com | [88a 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [88b 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +orderer.example.com | [88c 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] +orderer.example.com | [88d 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] does not exist +orderer.example.com | [88e 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] exists +orderer.example.com | [88f 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +orderer.example.com | [890 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +orderer.example.com | [891 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +orderer.example.com | [892 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +orderer.example.com | [893 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +orderer.example.com | [894 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +orderer.example.com | [895 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc42017c200)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +orderer.example.com | [896 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] +orderer.example.com | [897 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x4c, 0x27, 0x5, 0x1c, 0x84, 0xd, 0xf5, 0xe1, 0xcf, 0xca, 0xe1, 0x49, 0x4a, 0x6a, 0xa, 0x31, 0xd4, 0x1c, 0x37, 0xaa, 0xd5, 0xcf, 0xfe, 0x44, 0x8e, 0x3, 0x4b, 0xb5, 0x72, 0x19, 0x89, 0x53} txOffsets= +orderer.example.com | txId= locPointer=offset=38, bytesLength=11902 +orderer.example.com | ] +orderer.example.com | [898 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11945], isChainEmpty=[false], lastBlockNumber=[0] +orderer.example.com | [899 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +orderer.example.com | [89a 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +orderer.example.com | [89b 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[11945], Going to peek [8] bytes +orderer.example.com | [89c 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[11943], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | [89d 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.Commit.newChain.newChainSupport -> DEBU [channel: businesschannel] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=1): +orderer.example.com | [89e 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.Commit.newChain -> INFO Created and starting new chain businesschannel +orderer.example.com | [89f 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc4200ccfe0 chain:0xc4200cd4a0 cutter:0xc4200cfa40 filters:0xc4200cd040 signer:0x128b4a8 lastConfig:0 lastConfigSeq:0} +orderer.example.com | [8a0 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +orderer.example.com | [8a1 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [8a2 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [8a3 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [8a4 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [8a5 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...07FFAB230DFA1ECF9470FD1B926F1267 +orderer.example.com | [8a6 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 306722B36E98E83E5558B266B52927685DEDF59CA647E3022E6596AA98155312 +orderer.example.com | [8a7 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [8a8 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [8a9 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 +orderer.example.com | [8aa 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [8ab 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [8ac 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...07FFAB230DFA1ECF9470FD1B926F1267 +orderer.example.com | [8ad 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 83EA771DDF0CE3085BF972B54D78D56A74204E8D3365827C7168536EDF4FF5E7 +orderer.example.com | [8ae 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xae, 0xf9, 0xc1, 0xb5, 0xc1, 0xc0, 0xcb, 0x47, 0xde, 0x65, 0x3a, 0xa5, 0xa0, 0xa8, 0x72, 0x55, 0xff, 0xd5, 0x66, 0x23, 0xbf, 0xb3, 0x92, 0x76, 0xf4, 0x3f, 0x17, 0xd7, 0x78, 0xd4, 0xe9, 0x10} txOffsets= +orderer.example.com | txId= locPointer=offset=70, bytesLength=12808 +orderer.example.com | ] +orderer.example.com | [8af 12-14 09:34:39.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[23720], isChainEmpty=[false], lastBlockNumber=[1] +orderer.example.com | [8b0 12-14 09:34:39.86 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: testchainid] Wrote block 1 +orderer.example.com | [8b1 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [8b2 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026550 gate 1513244079890827500 evaluation starts +orderer.example.com | [8b3 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026550 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [8b4 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026550 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [8b5 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [8b6 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026550 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +orderer.example.com | [8b7 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026550 principal evaluation fails +orderer.example.com | [8b8 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026550 gate 1513244079890827500 evaluation fails +orderer.example.com | [8b9 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026560 gate 1513244079892988300 evaluation starts +orderer.example.com | [8ba 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026560 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [8bb 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026560 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [8bc 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [8bd 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026560 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | [8be 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026560 principal evaluation fails +orderer.example.com | [8bf 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026560 gate 1513244079892988300 evaluation fails +orderer.example.com | [8c0 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026570 gate 1513244079894323900 evaluation starts +orderer.example.com | [8c1 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026570 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [8c2 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026570 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [8c3 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [8c4 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | [8c5 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [8c6 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026570 principal matched by identity 0 +orderer.example.com | [8c7 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 73 1a d2 ad e7 fd 26 86 1e f4 ec b6 d6 31 f9 c1 |s.....&......1..| +orderer.example.com | 00000010 3d e1 55 fb cf 5f fd b7 7c ad 8b 00 a0 02 0a 15 |=.U.._..|.......| +orderer.example.com | [8c8 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8e c9 3b 58 08 8d e4 b6 90 41 c5 |0E.!...;X.....A.| +orderer.example.com | 00000010 26 1d f1 e2 9d b9 10 21 71 e6 ab 15 f7 74 3e 3b |&......!q....t>;| +orderer.example.com | 00000020 d7 be 4d ec b5 02 20 0d 8d 15 6a 14 7d f9 14 aa |..M... ...j.}...| +orderer.example.com | 00000030 c1 e0 71 66 b8 89 ca e0 a4 bc 9e f2 5e 4a bc 60 |..qf........^J.`| +orderer.example.com | 00000040 df 9e 6e 39 cf 2a 31 |..n9.*1| +orderer.example.com | [8c9 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026570 principal evaluation succeeds for identity 0 +orderer.example.com | [8ca 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026570 gate 1513244079894323900 evaluation succeeds +orderer.example.com | [8cb 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42081f9c0 1 [0xc4200262e8]}) %!s(*policies.implicitMetaPolicy=&{0xc4209a6380 1 [0xc420026368 0xc4200263d8]})]} +orderer.example.com | [8cc 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc42015b9e0) start: > stop: > +orderer.example.com | [8cd 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +orderer.example.com | [8ce 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +orderer.example.com | [8cf 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[11945], Going to peek [8] bytes +orderer.example.com | [8d0 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[11943], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | [8d1 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42015b9e0) +orderer.example.com | [8d2 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc42015b9e0), waiting for new SeekInfo +orderer.example.com | [8d3 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [8d4 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [8d5 12-14 09:34:39.90 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [8d6 12-14 09:34:41.38 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [8d7 12-14 09:34:41.38 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +orderer.example.com | [8d8 12-14 09:34:41.38 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [8d9 12-14 09:34:41.41 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [8da 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +orderer.example.com | [8db 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Preprocessing CONFIG_UPDATE +orderer.example.com | [8dc 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/orderer/configupdate] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process -> DEBU Processing channel reconfiguration request for channel businesschannel +orderer.example.com | [8dd 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [8de 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [8df 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [8e0 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [8e1 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [8e2 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [8e3 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [8e4 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [8e5 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [8e6 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [8e7 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [8e8 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [8e9 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [8ea 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [8eb 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [8ec 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [8ed 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42018e8e8 gate 1513244081414220700 evaluation starts +orderer.example.com | [8ee 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018e8e8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [8ef 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018e8e8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [8f0 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [8f1 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | [8f2 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018e8e8 principal matched by identity 0 +orderer.example.com | [8f3 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 90 5a de 1e c3 6f b0 aa 07 d5 13 30 e0 54 69 ca |.Z...o.....0.Ti.| +orderer.example.com | 00000010 d6 99 0b c9 3d d8 4c d3 60 59 21 0a 50 37 48 7a |....=.L.`Y!.P7Hz| +orderer.example.com | [8f4 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 9a 72 56 8b 79 99 61 59 35 a5 bc |0E.!..rV.y.aY5..| +orderer.example.com | 00000010 0c 70 2c f0 48 b4 0e 7e d1 bc 2b a4 6c 08 01 ee |.p,.H..~..+.l...| +orderer.example.com | 00000020 6b 7b b1 19 07 02 20 65 76 52 d9 cc c2 fb 2f e4 |k{.... evR..../.| +orderer.example.com | 00000030 ec 37 79 19 17 4c 1b f7 72 73 44 6f c7 8a b5 15 |.7y..L..rsDo....| +orderer.example.com | 00000040 bc 3e 95 ed c0 47 73 |.>...Gs| +orderer.example.com | [8f5 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018e8e8 principal evaluation succeeds for identity 0 +orderer.example.com | [8f6 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42018e8e8 gate 1513244081414220700 evaluation succeeds +orderer.example.com | [8f7 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [8f8 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [8f9 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [8fa 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [8fb 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [8fc 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [8fd 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [8fe 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [8ff 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [900 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [901 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [902 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [903 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [904 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [905 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [906 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [907 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [908 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [909 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [90a 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [90b 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [90c 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [90d 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [90e 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [90f 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [910 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [911 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [912 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [913 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [914 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [915 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [916 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [917 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [918 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [919 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [91a 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [91b 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [91c 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [91d 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [91e 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [91f 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [920 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [921 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [922 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [923 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [924 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [925 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +orderer.example.com | [926 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [927 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [928 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [929 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [92a 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [92b 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [92c 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [92d 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [92e 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [92f 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [930 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [931 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [932 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [933 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [934 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [935 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +orderer.example.com | [936 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [937 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [938 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [939 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [93a 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [93b 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +orderer.example.com | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [93c 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [93d 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [93e 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [93f 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [940 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [941 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [942 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [943 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 +orderer.example.com | +/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN +orderer.example.com | wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 +orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL +orderer.example.com | liPpNxLSsBU= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [944 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [945 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [946 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [947 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [948 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [949 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [94a 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [94b 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +orderer.example.com | RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +orderer.example.com | kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +orderer.example.com | VA7fF8MfGA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [94c 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [94d 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [94e 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [94f 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [950 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [951 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [952 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [953 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [954 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [955 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0ABC060A1B08011A0608B18BC9D10522...30E00C25BFD3DA3AD44EFC2F5B4CA181 +orderer.example.com | [956 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 44F13E4F6D9AB3E1EF223D26F343D05BB159C3A662114F9D519B3BE9F3BAE404 +orderer.example.com | [957 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type CONFIG +orderer.example.com | [958 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [959 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018ecd0 gate 1513244081432853600 evaluation starts +orderer.example.com | [95a 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018ecd0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [95b 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018ecd0 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [95c 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -78,8 +15041,13 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv orderer.example.com | Tg== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [01b 12-05 07:29:40.20 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [de469e87081a65c13df76f2cc650d87e44f666f558897af7e2b194d67d48549b] at [/var/hyperledger/orderer/msp/keystore/de469e87081a65c13df76f2cc650d87e44f666f558897af7e2b194d67d48549b_sk]... -orderer.example.com | [01c 12-05 07:29:40.20 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [95d 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018ecd0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | [95e 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018ecd0 principal evaluation fails +orderer.example.com | [95f 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018ecd0 gate 1513244081432853600 evaluation fails +orderer.example.com | [960 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018ece0 gate 1513244081433381200 evaluation starts +orderer.example.com | [961 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018ece0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [962 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018ece0 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [963 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -93,9081 +15061,15 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv orderer.example.com | Tg== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [01d 12-05 07:29:40.20 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [01e 12-05 07:29:40.20 UTC] [main] main.initializeMultiChainManager.createLedgerFactory -> DEBU Ledger dir: /var/hyperledger/production/orderer -orderer.example.com | [01f 12-05 07:29:40.20 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] main.initializeMultiChainManager.createLedgerFactory.New -> DEBU Initializing ledger at: /var/hyperledger/production/orderer -orderer.example.com | [020 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate -> DEBU Initializing chain testchainid at: /var/hyperledger/production/orderer/chain_testchainid -orderer.example.com | [021 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.newChain -> DEBU Initialized to block height 18446744073709551615 with hash -orderer.example.com | [022 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] main.initializeMultiChainManager.initializeBootstrapChannel.Append.writeBlock -> DEBU Wrote block 0 -orderer.example.com | [023 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.readBlock -> DEBU Read block 0 -orderer.example.com | [024 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.readBlock -> DEBU Read block 0 -orderer.example.com | [025 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [026 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [027 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [028 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [029 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [02a 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [02b 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums -orderer.example.com | [02c 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium -orderer.example.com | [02d 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org2MSP -orderer.example.com | [02e 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP -orderer.example.com | [02f 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins -orderer.example.com | [030 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers -orderer.example.com | [031 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers -orderer.example.com | [032 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org1MSP -orderer.example.com | [033 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP -orderer.example.com | [034 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers -orderer.example.com | [035 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers -orderer.example.com | [036 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins -orderer.example.com | [037 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy -orderer.example.com | [038 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/Admins -orderer.example.com | [039 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | [03a 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | [03b 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [03c 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [03d 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [001 12-05 07:29:41.92 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -orderer.example.com | [03e 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | Version: 1.0.4 -orderer.example.com | [03f 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer1.org2.example.com | Go version: go1.9.2 -orderer.example.com | [040 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | OS/Arch: linux/amd64 -peer1.org2.example.com | Chaincode: -peer1.org2.example.com | Base Image Version: 0.3.2 -orderer.example.com | [041 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | Base Docker Namespace: hyperledger -orderer.example.com | [042 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -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 12-05 07:29:41.92 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 12-05 07:29:41.92 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 | [004 12-05 07:29:41.92 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 12-05 07:29:41.92 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 12-05 07:29:41.92 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 12-05 07:29:41.92 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 12-05 07:29:41.92 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 12-05 07:29:41.92 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 12-05 07:29:41.93 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 12-05 07:29:41.93 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 12-05 07:29:41.93 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 12-05 07:29:41.93 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 | [043 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org2.example.com | [00e 12-05 07:29:41.93 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 | [001 12-05 07:29:41.66 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -peer1.org2.example.com | [00f 12-05 07:29:41.93 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 | Version: 1.0.4 -peer1.org2.example.com | [010 12-05 07:29:41.93 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 | [044 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | Go version: go1.9.2 -peer1.org2.example.com | [011 12-05 07:29:41.93 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 | [001 12-05 07:29:40.50 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -peer1.org1.example.com | OS/Arch: linux/amd64 -peer1.org2.example.com | [012 12-05 07:29:41.93 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 | Version: 1.0.4 -orderer.example.com | [045 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | Chaincode: -peer0.org1.example.com | Go version: go1.9.2 -peer1.org2.example.com | [013 12-05 07:29:41.93 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 | Base Image Version: 0.3.2 -orderer.example.com | [046 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org1.example.com | OS/Arch: linux/amd64 -peer1.org2.example.com | [014 12-05 07:29:41.93 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.org1.example.com | Base Docker Namespace: hyperledger -peer0.org1.example.com | Chaincode: -peer1.org2.example.com | [015 12-05 07:29:41.93 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 | Base Docker Label: org.hyperledger.fabric -orderer.example.com | [047 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org1.example.com | Base Image Version: 0.3.2 -peer1.org2.example.com | [016 12-05 07:29:41.93 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 | Docker Namespace: hyperledger -peer0.org1.example.com | Base Docker Namespace: hyperledger -peer1.org2.example.com | [017 12-05 07:29:41.94 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -orderer.example.com | [048 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer1.org1.example.com | -peer0.org1.example.com | Base Docker Label: org.hyperledger.fabric -peer1.org1.example.com | [002 12-05 07:29:41.66 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 | [018 12-05 07:29:41.94 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 | Docker Namespace: hyperledger -peer1.org1.example.com | [003 12-05 07:29:41.66 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 | [019 12-05 07:29:41.94 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 | [004 12-05 07:29:41.66 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 12-05 07:29:41.66 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 12-05 07:29:41.66 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 | [049 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer1.org2.example.com | [01a 12-05 07:29:41.94 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 | [007 12-05 07:29:41.66 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 | -peer1.org1.example.com | [008 12-05 07:29:41.66 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 | [002 12-05 07:29:40.50 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 | [009 12-05 07:29:41.66 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 | [003 12-05 07:29:40.50 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 | [01b 12-05 07:29:41.94 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 | [00a 12-05 07:29:41.67 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 | [004 12-05 07:29:40.50 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 | [01c 12-05 07:29:41.94 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -orderer.example.com | [04a 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org1.example.com | [00b 12-05 07:29:41.67 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 | [005 12-05 07:29:40.50 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 | [01d 12-05 07:29:41.95 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 | [01e 12-05 07:29:41.95 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 -peer1.org1.example.com | [00c 12-05 07:29:41.67 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 | [006 12-05 07:29:40.50 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 | [04b 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [00d 12-05 07:29:41.67 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 | [007 12-05 07:29:40.50 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 | [00e 12-05 07:29:41.67 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 | [008 12-05 07:29:40.50 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 | [01f 12-05 07:29:41.95 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 | [00f 12-05 07:29:41.68 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 | [009 12-05 07:29:40.50 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 | [020 12-05 07:29:41.95 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 | [010 12-05 07:29:41.68 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 | [00a 12-05 07:29:40.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider -orderer.example.com | [04c 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org2.example.com | [021 12-05 07:29:41.95 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 | [011 12-05 07:29:41.68 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 | [00b 12-05 07:29:40.51 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 | [04d 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig -> DEBU Beginning new config for channel testchainid -peer1.org1.example.com | [012 12-05 07:29:41.68 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 | [00c 12-05 07:29:40.51 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 12-05 07:29:40.51 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.org2.example.com | [022 12-05 07:29:41.95 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 | [013 12-05 07:29:41.69 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 | [014 12-05 07:29:41.69 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 | [00e 12-05 07:29:40.51 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.org2.example.com | [023 12-05 07:29:41.95 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 | [015 12-05 07:29:41.69 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 | [00f 12-05 07:29:40.52 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 12-05 07:29:40.52 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 | [024 12-05 07:29:41.95 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 | [016 12-05 07:29:41.69 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 | [04e 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [011 12-05 07:29:40.52 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 | [025 12-05 07:29:41.95 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 | [017 12-05 07:29:41.69 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer0.org1.example.com | [012 12-05 07:29:40.52 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 | [026 12-05 07:29:41.95 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 | [018 12-05 07:29:41.70 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK -orderer.example.com | [04f 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [013 12-05 07:29:40.52 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 | [019 12-05 07:29:41.70 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE -peer1.org2.example.com | [027 12-05 07:29:41.95 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 | [050 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [014 12-05 07:29:40.52 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.org1.example.com | [01a 12-05 07:29:41.70 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 | [028 12-05 07:29:41.95 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -orderer.example.com | [051 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [015 12-05 07:29:40.52 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 | [01b 12-05 07:29:41.70 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 | [029 12-05 07:29:41.95 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [052 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [01c 12-05 07:29:41.70 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer0.org1.example.com | [016 12-05 07:29:40.52 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized -peer1.org2.example.com | [02a 12-05 07:29:41.95 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [01d 12-05 07:29:41.70 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 | [017 12-05 07:29:40.53 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer0.org1.example.com | [018 12-05 07:29:40.53 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 | [01e 12-05 07:29:41.70 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.org2.example.com | [02b 12-05 07:29:41.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [053 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -peer0.org1.example.com | [019 12-05 07:29:40.53 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE -peer1.org2.example.com | [02c 12-05 07:29:41.95 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 [peer1.org2.example.com:7051] -peer1.org1.example.com | [01f 12-05 07:29:41.70 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 | [01a 12-05 07:29:40.53 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION -orderer.example.com | [054 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -peer1.org1.example.com | [020 12-05 07:29:41.70 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 | [01b 12-05 07:29:40.53 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 | [02d 12-05 07:29:41.95 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 | [055 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -peer0.org1.example.com | [01c 12-05 07:29:40.53 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer1.org1.example.com | [021 12-05 07:29:41.70 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 | [02e 12-05 07:29:41.95 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 | [022 12-05 07:29:41.70 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 | [01d 12-05 07:29:40.53 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 | [02f 12-05 07:29:41.95 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 | [056 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Consortiums -peer1.org1.example.com | [023 12-05 07:29:41.70 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.org2.example.com | MIICGTCCAcCgAwIBAgIRAOVNWb4m/KE8qWnbs5oNCXEwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [01e 12-05 07:29:40.54 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 | [057 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.BeginValueProposals.Allocate.NewConsortiumConfig.NewStandardValues -> DEBU Initializing protos for *config.ConsortiumProtos -peer1.org1.example.com | [024 12-05 07:29:41.70 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.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [01f 12-05 07:29:40.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -orderer.example.com | [058 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.BeginValueProposals.Allocate.NewConsortiumConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelCreationPolicy -peer1.org1.example.com | [025 12-05 07:29:41.70 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 | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | [059 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [020 12-05 07:29:40.54 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 | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzIwWhcNMjcxMTI5MTM1NzIw -peer1.org1.example.com | [026 12-05 07:29:41.70 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.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [021 12-05 07:29:40.54 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 | [027 12-05 07:29:41.71 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 | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [028 12-05 07:29:41.71 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer0.org1.example.com | [022 12-05 07:29:40.54 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.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABFueCejfkDPPRfvkDKSMdw+HDB66Blw+ -peer1.org2.example.com | e26xuVdBm1m1VhZAfsISGq9AqZh5TYSeAWcic9UJDpM6AF4uYyRW8QSjTTBLMA4G -peer1.org1.example.com | [029 12-05 07:29:41.71 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 12-05 07:29:41.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [023 12-05 07:29:40.54 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.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIExdUk4NTXuv -peer1.org1.example.com | [02b 12-05 07:29:41.71 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | lhveBMr/kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICxTVmuv -peer0.org1.example.com | [024 12-05 07:29:40.54 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 12-05 07:29:40.54 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 | 85tLV3IObyyAjMFJDOY9ZRvG6JrFk6Ip+5I2AiAt89sYWRll0VJn4LE9SnqLGynx -peer1.org1.example.com | [02c 12-05 07:29:41.71 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.org2.example.com | k8e5ucZ3Jd6kEw76mA== -peer1.org1.example.com | [02d 12-05 07:29:41.71 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 | [026 12-05 07:29:40.54 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 | [05a 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [02e 12-05 07:29:41.71 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 | -----END CERTIFICATE----- -peer1.org1.example.com | [02f 12-05 07:29:41.71 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 | [027 12-05 07:29:40.54 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 | MIICGTCCAcCgAwIBAgIRAMrqxzKvFlh0UvCnX/54n68wCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [030 12-05 07:29:41.95 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 | [028 12-05 07:29:40.54 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -peer0.org1.example.com | [029 12-05 07:29:40.54 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [031 12-05 07:29:41.95 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 -orderer.example.com | [05b 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [001 12-05 07:29:42.60 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -peer1.org2.example.com | [032 12-05 07:29:41.96 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 | [02a 12-05 07:29:40.54 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | Version: 1.0.4 -peer0.org2.example.com | Go version: go1.9.2 -peer0.org1.example.com | [02b 12-05 07:29:40.54 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABPwIqxJIf4OM52kaDdkuPqyFszdT9B2q -peer1.org2.example.com | [033 12-05 07:29:41.96 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 | [05c 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -peer0.org2.example.com | OS/Arch: linux/amd64 -peer0.org1.example.com | [02c 12-05 07:29:40.54 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] -peer1.org1.example.com | bAvKnGiSZ5GzENmJWkdjih0F1otzYiW2f4va4ENGtB102yiHuNT60wWjTTBLMA4G -peer1.org2.example.com | [034 12-05 07:29:41.96 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 | [05d 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -peer0.org2.example.com | Chaincode: -peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h -peer0.org1.example.com | [02d 12-05 07:29:40.54 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 | MIICGTCCAcCgAwIBAgIRAOVNWb4m/KE8qWnbs5oNCXEwCgYIKoZIzj0EAwIwczEL -orderer.example.com | [05e 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | Base Image Version: 0.3.2 -peer1.org1.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIFq99nPm -peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | Base Docker Namespace: hyperledger -orderer.example.com | [05f 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [02e 12-05 07:29:40.54 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 | kYRt5bb4Q7Z+TzE3BYFLJ6TgjNH32jghysAAAiAA17wE653uOW1/uO3Gr8FUZN31 -peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | Base Docker Label: org.hyperledger.fabric -peer0.org1.example.com | [02f 12-05 07:29:40.54 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 | [060 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -peer0.org2.example.com | Docker Namespace: hyperledger -peer1.org1.example.com | pBtbXEZm+WoA1Hjp7A== -peer0.org1.example.com | MIICGTCCAb+gAwIBAgIQJgBYBKOHst//mfTjpUw1gzAKBggqhkjOPQQDAjBzMQsw -peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzIwWhcNMjcxMTI5MTM1NzIw -orderer.example.com | [061 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -peer0.org2.example.com | -peer1.org1.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | [062 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -peer0.org2.example.com | [002 12-05 07:29:42.60 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 | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [030 12-05 07:29:41.71 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 | [063 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer0.org2.example.com | [003 12-05 07:29:42.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -peer0.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | [031 12-05 07:29:41.71 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 | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABFueCejfkDPPRfvkDKSMdw+HDB66Blw+ -peer0.org2.example.com | [004 12-05 07:29:42.60 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 | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MTlaFw0yNzExMjkxMzU3MTla -orderer.example.com | [064 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | e26xuVdBm1m1VhZAfsISGq9AqZh5TYSeAWcic9UJDpM6AF4uYyRW8QSjTTBLMA4G -peer1.org1.example.com | [032 12-05 07:29:41.72 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 | [005 12-05 07:29:42.60 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 | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIExdUk4NTXuv -peer0.org2.example.com | [006 12-05 07:29:42.60 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 | [065 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [033 12-05 07:29:41.72 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 | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -peer0.org2.example.com | [007 12-05 07:29:42.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/] -peer1.org2.example.com | lhveBMr/kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICxTVmuv -peer1.org1.example.com | [034 12-05 07:29:41.72 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 | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE2iZEUIvLgKANslGKRrDsQ67PZuvMBlD4 -orderer.example.com | [066 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [008 12-05 07:29:42.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.org1.example.com | s0XhzjlArKmtSEGzhr1O43IKz4TR8B3viyT0jO6L1RVDUgtdCsH5AaNNMEswDgYD -peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRAMrqxzKvFlh0UvCnX/54n68wCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [009 12-05 07:29:42.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 | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgejjZ4+nTXyF3 -peer1.org2.example.com | 85tLV3IObyyAjMFJDOY9ZRvG6JrFk6Ip+5I2AiAt89sYWRll0VJn4LE9SnqLGynx -orderer.example.com | [067 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [00a 12-05 07:29:42.61 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 | xi1tKI3DL8VylH+vPkEFOLmgRS6hq/gwCgYIKoZIzj0EAwIDSAAwRQIhAPICTsf5 -peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | k8e5ucZ3Jd6kEw76mA== -peer1.org2.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [00b 12-05 07:29:42.61 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 | Yr2bvGRg2G85IveggOvKM6+3IyhjSP4E3xH2AiBW4QjCDtZlYyGK5vilFR7hzeZV -peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [00c 12-05 07:29:42.61 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 | ibHlRV1ViFqHbzF3ww== -orderer.example.com | [068 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [00d 12-05 07:29:42.61 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.org2.example.com | [035 12-05 07:29:41.97 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 [] [226 174 119 96 31 63 126 236 5 76 122 34 73 219 183 195 65 107 241 172 223 68 46 149 61 40 21 69 107 230 76 36] peer1.org2.example.com:7051} incTime is 1512458981969491200 -peer0.org1.example.com | -----END CERTIFICATE----- -orderer.example.com | [069 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -peer0.org2.example.com | [00e 12-05 07:29:42.61 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 | [030 12-05 07:29:40.54 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 | [036 12-05 07:29:41.97 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 [] [226 174 119 96 31 63 126 236 5 76 122 34 73 219 183 195 65 107 241 172 223 68 46 149 61 40 21 69 107 230 76 36] peer1.org2.example.com:7051} -peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -peer0.org1.example.com | [031 12-05 07:29:40.54 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 -orderer.example.com | [06a 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -peer0.org2.example.com | [00f 12-05 07:29:42.62 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 | [032 12-05 07:29:40.55 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 | [037 12-05 07:29:41.97 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 | [010 12-05 07:29:42.62 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 | [033 12-05 07:29:40.55 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [038 12-05 07:29:41.97 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 | [06b 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -peer0.org2.example.com | [011 12-05 07:29:42.62 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 | [034 12-05 07:29:40.55 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 | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | [06c 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -peer1.org2.example.com | [039 12-05 07:29:41.97 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 | [012 12-05 07:29:42.62 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 | MIICGTCCAb+gAwIBAgIQJgBYBKOHst//mfTjpUw1gzAKBggqhkjOPQQDAjBzMQsw -peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABPwIqxJIf4OM52kaDdkuPqyFszdT9B2q -peer1.org2.example.com | MIICGTCCAcCgAwIBAgIRAOVNWb4m/KE8qWnbs5oNCXEwCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [013 12-05 07:29:42.62 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 12-05 07:29:42.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 -peer0.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | bAvKnGiSZ5GzENmJWkdjih0F1otzYiW2f4va4ENGtB102yiHuNT60wWjTTBLMA4G -peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | [06d 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [015 12-05 07:29:42.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 -peer0.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzIwWhcNMjcxMTI5MTM1NzIw -peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [016 12-05 07:29:42.62 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 | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MTlaFw0yNzExMjkxMzU3MTla -peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h -orderer.example.com | [06e 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [017 12-05 07:29:42.64 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer0.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIFq99nPm -peer0.org2.example.com | [018 12-05 07:29:42.64 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 | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABFueCejfkDPPRfvkDKSMdw+HDB66Blw+ -orderer.example.com | [06f 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -peer1.org1.example.com | kYRt5bb4Q7Z+TzE3BYFLJ6TgjNH32jghysAAAiAA17wE653uOW1/uO3Gr8FUZN31 -peer0.org2.example.com | [019 12-05 07:29:42.64 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 | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE2iZEUIvLgKANslGKRrDsQ67PZuvMBlD4 -peer1.org2.example.com | e26xuVdBm1m1VhZAfsISGq9AqZh5TYSeAWcic9UJDpM6AF4uYyRW8QSjTTBLMA4G -peer1.org1.example.com | pBtbXEZm+WoA1Hjp7A== -peer0.org2.example.com | [01a 12-05 07:29:42.64 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 | s0XhzjlArKmtSEGzhr1O43IKz4TR8B3viyT0jO6L1RVDUgtdCsH5AaNNMEswDgYD -orderer.example.com | [070 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIExdUk4NTXuv -peer0.org2.example.com | [01b 12-05 07:29:42.64 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 | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgejjZ4+nTXyF3 -peer1.org1.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | lhveBMr/kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICxTVmuv -peer0.org2.example.com | [01c 12-05 07:29:42.66 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 | [035 12-05 07:29:41.72 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 [] [139 153 136 195 167 130 29 112 214 77 217 19 124 247 87 101 191 198 34 210 49 115 58 117 107 126 254 48 183 144 116 67] peer1.org1.example.com:7051} incTime is 1512458981727775300 -orderer.example.com | [071 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -peer1.org2.example.com | 85tLV3IObyyAjMFJDOY9ZRvG6JrFk6Ip+5I2AiAt89sYWRll0VJn4LE9SnqLGynx -peer0.org1.example.com | xi1tKI3DL8VylH+vPkEFOLmgRS6hq/gwCgYIKoZIzj0EAwIDSAAwRQIhAPICTsf5 -peer1.org1.example.com | [036 12-05 07:29:41.72 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 [] [139 153 136 195 167 130 29 112 214 77 217 19 124 247 87 101 191 198 34 210 49 115 58 117 107 126 254 48 183 144 116 67] peer1.org1.example.com:7051} -peer0.org2.example.com | [01d 12-05 07:29:42.66 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer1.org2.example.com | k8e5ucZ3Jd6kEw76mA== -peer0.org1.example.com | Yr2bvGRg2G85IveggOvKM6+3IyhjSP4E3xH2AiBW4QjCDtZlYyGK5vilFR7hzeZV -orderer.example.com | [072 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [038 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | ibHlRV1ViFqHbzF3ww== -peer0.org2.example.com | [01e 12-05 07:29:42.66 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 | [037 12-05 07:29:41.72 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 | [03a 12-05 07:29:41.97 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 | -----END CERTIFICATE----- -peer0.org2.example.com | [01f 12-05 07:29:42.66 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -orderer.example.com | [073 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org1.example.com | [039 12-05 07:29:41.73 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 | [03b 12-05 07:29:41.97 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.org1.example.com | [035 12-05 07:29:40.55 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 [] [87 254 40 172 224 130 233 118 32 0 101 135 155 98 10 13 107 42 197 18 142 226 92 151 20 251 18 179 182 138 173 181] peer0.org1.example.com:7051} incTime is 1512458980556593600 -peer0.org1.example.com | [036 12-05 07:29:40.55 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 [] [87 254 40 172 224 130 233 118 32 0 101 135 155 98 10 13 107 42 197 18 142 226 92 151 20 251 18 179 182 138 173 181] peer0.org1.example.com:7051} -peer0.org2.example.com | [020 12-05 07:29:42.66 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 | [074 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -peer1.org2.example.com | [03c 12-05 07:29:41.97 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 | [03a 12-05 07:29:41.73 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 | [037 12-05 07:29:40.55 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 | [021 12-05 07:29:42.66 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 | [03d 12-05 07:29:41.97 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 | [038 12-05 07:29:40.55 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 | [075 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRAMrqxzKvFlh0UvCnX/54n68wCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [022 12-05 07:29:42.66 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.org2.example.com | [03e 12-05 07:29:41.97 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: 1801AA01B1060A20E2AE77601F3F7EEC...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer0.org1.example.com | [039 12-05 07:29:40.55 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 | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [03f 12-05 07:29:41.97 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: F5EA84B421FA7D79BA5595F92B0A73310DB8AC1171DBBE2505A5F4BB289086F5 -peer0.org1.example.com | MIICGTCCAb+gAwIBAgIQJgBYBKOHst//mfTjpUw1gzAKBggqhkjOPQQDAjBzMQsw -peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [040 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [023 12-05 07:29:42.66 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 | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -peer1.org2.example.com | [041 12-05 07:29:41.97 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.4,txid=92543944-7e4f-4372-9669-adce68c926d9,syscc=true,proposal=0x0,canname=cscc:1.0.4 -peer0.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [042 12-05 07:29:41.97 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.4 is being launched -peer0.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MTlaFw0yNzExMjkxMzU3MTla -peer0.org2.example.com | [024 12-05 07:29:42.66 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 | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -peer0.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | [043 12-05 07:29:41.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 -peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABPwIqxJIf4OM52kaDdkuPqyFszdT9B2q -peer0.org2.example.com | [025 12-05 07:29:42.66 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 | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [044 12-05 07:29:41.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.org2.example.com:7052] -peer0.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE2iZEUIvLgKANslGKRrDsQ67PZuvMBlD4 -peer1.org1.example.com | bAvKnGiSZ5GzENmJWkdjih0F1otzYiW2f4va4ENGtB102yiHuNT60wWjTTBLMA4G -peer1.org2.example.com | [045 12-05 07:29:41.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: cscc:1.0.4(networkid:dev,peerid:peer1.org2.example.com) -peer0.org2.example.com | [026 12-05 07:29:42.66 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 | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | s0XhzjlArKmtSEGzhr1O43IKz4TR8B3viyT0jO6L1RVDUgtdCsH5AaNNMEswDgYD -peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h -peer1.org2.example.com | [046 12-05 07:29:41.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.org2.example.com:7052 -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org2.example.com | [027 12-05 07:29:42.67 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 | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgejjZ4+nTXyF3 -peer1.org2.example.com | [047 12-05 07:29:41.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: -peer1.org1.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIFq99nPm -orderer.example.com | BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 -peer0.org1.example.com | xi1tKI3DL8VylH+vPkEFOLmgRS6hq/gwCgYIKoZIzj0EAwIDSAAwRQIhAPICTsf5 -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.4 -peer1.org1.example.com | kYRt5bb4Q7Z+TzE3BYFLJ6TgjNH32jghysAAAiAA17wE653uOW1/uO3Gr8FUZN31 -orderer.example.com | +/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | Yr2bvGRg2G85IveggOvKM6+3IyhjSP4E3xH2AiBW4QjCDtZlYyGK5vilFR7hzeZV -peer0.org2.example.com | [028 12-05 07:29:42.67 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | ibHlRV1ViFqHbzF3ww== -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN -peer0.org2.example.com | [029 12-05 07:29:42.67 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | pBtbXEZm+WoA1Hjp7A== -peer0.org1.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [02a 12-05 07:29:42.67 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -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.org1.example.com | -----END CERTIFICATE----- -orderer.example.com | wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 -peer0.org1.example.com | [03a 12-05 07:29:40.55 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 | [02b 12-05 07:29:42.67 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [048 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.4) lock -peer1.org1.example.com | [03b 12-05 07:29:41.73 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 -orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL -peer0.org2.example.com | [02c 12-05 07:29:42.67 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.org1.example.com | [03b 12-05 07:29:40.55 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 | [049 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.4) lock -peer1.org1.example.com | [03c 12-05 07:29:41.73 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.org1.example.com | [03c 12-05 07:29:40.55 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 | [03d 12-05 07:29:40.55 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 | [04a 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.4 -peer1.org2.example.com | [04b 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.4) -peer1.org1.example.com | [03d 12-05 07:29:41.73 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 | [03e 12-05 07:29:40.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [02d 12-05 07:29:42.67 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 | liPpNxLSsBU= -peer1.org1.example.com | [03e 12-05 07:29:41.73 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 | [04c 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org2.example.com:7051 started -peer0.org1.example.com | [03f 12-05 07:29:40.55 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: 1801AA01B1060A2057FE28ACE082E976...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer0.org2.example.com | [02e 12-05 07:29:42.67 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 12-05 07:29:42.67 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 | [03f 12-05 07:29:41.73 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: 1801AA01B1060A208B9988C3A7821D70...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer1.org2.example.com | [04d 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -peer0.org1.example.com | [040 12-05 07:29:40.55 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: FAB80B0E7011C864E8AD9AED2F6711087CF755E09B33858AA16743A6B6442CDF -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [040 12-05 07:29:41.73 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: 6D69B846851639928573C68D301443570B90AC4963C3DA119B18E3F5F8AE9281 -peer0.org2.example.com | MIICGTCCAcCgAwIBAgIRAJjiyHVTsSgex9IwiV/aHl4wCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [04e 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.4 -peer0.org1.example.com | [041 12-05 07:29:40.56 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.4,txid=ebf1e200-7fdf-49de-8d99-8efdac6862f1,syscc=true,proposal=0x0,canname=cscc:1.0.4 -peer1.org1.example.com | [041 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | [076 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [04f 12-05 07:29:41.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.org1.example.com | [042 12-05 07:29:40.56 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.4 is being launched -peer0.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [042 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org1.example.com:7051 started -peer0.org1.example.com | [043 12-05 07:29:40.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.org2.example.com | [050 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzIwWhcNMjcxMTI5MTM1NzIw -orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [043 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer0.org1.example.com | [044 12-05 07:29:40.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 | [051 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [045 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [045 12-05 07:29:40.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: cscc:1.0.4(networkid:dev,peerid:peer0.org1.example.com) -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | [052 12-05 07:29:41.97 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 | [044 12-05 07:29:41.73 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.4,txid=dde5c627-d374-4756-939c-600a623ddbca,syscc=true,proposal=0x0,canname=cscc:1.0.4 -peer0.org1.example.com | [046 12-05 07:29:40.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 | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJl7DHrIVTIgNYQmvF7wQg2MICyjyDM/ -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [053 12-05 07:29:41.97 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 12-05 07:29:41.73 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.4 is being launched -peer0.org1.example.com | [047 12-05 07:29:40.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 | i5YOmx+dZMqKd223qOrMvsMip4Jmy7IN+KyTFBgnbTXsobpY0if0XeqjTTBLMA4G -peer1.org2.example.com | [054 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572312E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.4 -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -peer1.org1.example.com | [048 12-05 07:29:41.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.org2.example.com | [055 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: F6348183C44E6737F18B083B249739FB564529E593CDBA2B4F6B69E80E8AB9BA -peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIExdUk4NTXuv -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [049 12-05 07:29:41.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] -peer1.org2.example.com | [056 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org2.example.com | lhveBMr/kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICgvZ/Rj -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [046 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [057 12-05 07:29:41.97 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 | CiBmkLGi9TJAI+aPXjzlWzmwyqCREKX/88hLAiBWNGnR/+DqkceICFhw1Z9gk/zn -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [04a 12-05 07:29:41.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: cscc:1.0.4(networkid:dev,peerid:peer1.org1.example.com) -peer1.org2.example.com | [058 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [059 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267322E6578616D706C652E636F6D3A37303531 -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 | gRjU2qWofvp40BbS6Q== -peer1.org1.example.com | [04b 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572312E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 -peer0.org1.example.com | [048 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.4) lock -peer0.org2.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [04c 12-05 07:29:41.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 -orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G -peer1.org2.example.com | [05a 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 84DCB4760C577E9B4E2A280CB22EA6979C16748D7FD46DCFD4002D8650CAD285 -peer0.org1.example.com | [049 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.4) lock -peer0.org2.example.com | [030 12-05 07:29:42.67 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 | [04d 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 610BB25875422F3079968F96BBEA32BD138E1F2E14ADE32FCC2AEA25120875EC -peer1.org2.example.com | [05b 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.4 -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h -peer0.org1.example.com | [04a 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.4 -peer1.org1.example.com | [04e 12-05 07:29:41.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 | [05c 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org2.example.com | [031 12-05 07:29:42.67 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 | [04b 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.4) -orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.4 -peer0.org2.example.com | [032 12-05 07:29:42.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 -peer1.org2.example.com | [05d 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.4 -peer0.org1.example.com | [04c 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started -orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx -peer0.org2.example.com | [033 12-05 07:29:42.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.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | [04d 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -peer1.org2.example.com | [05e 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | zekLSULI9G2UUYA77A== -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | [034 12-05 07:29:42.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 | [04e 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.4 -peer1.org2.example.com | [05f 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [077 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | MIICGTCCAcCgAwIBAgIRAJjiyHVTsSgex9IwiV/aHl4wCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | [04f 12-05 07:29:40.56 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 | [060 12-05 07:29:41.97 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 | [061 12-05 07:29:41.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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [050 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local 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} -peer1.org2.example.com | [062 12-05 07:29:41.97 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.4 -peer0.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [051 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer1.org1.example.com | [04f 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.4) lock -peer0.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzIwWhcNMjcxMTI5MTM1NzIw -peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [063 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.4" , sending back REGISTERED -peer0.org1.example.com | [052 12-05 07:29:40.56 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 | [050 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.4) lock -peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [051 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.4 -peer1.org2.example.com | [064 12-05 07:29:41.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 | [053 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [054 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572302E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer0.org1.example.com | [055 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 8732BB4A5DD65C55142FBAE459418DF480931486636FB5A8FFC9613084545D9B -peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJl7DHrIVTIgNYQmvF7wQg2MICyjyDM/ -peer1.org2.example.com | [065 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [053 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.4) -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [056 12-05 07:29:40.56 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 | [054 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051} -peer0.org2.example.com | i5YOmx+dZMqKd223qOrMvsMip4Jmy7IN+KyTFBgnbTXsobpY0if0XeqjTTBLMA4G -peer1.org2.example.com | [066 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [052 12-05 07:29:41.73 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 | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIExdUk4NTXuv -peer0.org1.example.com | [057 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [067 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | [055 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Exiting -peer0.org1.example.com | [058 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 -peer0.org2.example.com | lhveBMr/kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICgvZ/Rj -peer1.org1.example.com | [056 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [068 12-05 07:29:41.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 cscc:1.0.4 launch seq completed -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -peer0.org1.example.com | [059 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 -peer1.org1.example.com | [057 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267312E6578616D706C652E636F6D3A37303531 -peer1.org2.example.com | [069 12-05 07:29:41.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 -peer0.org2.example.com | CiBmkLGi9TJAI+aPXjzlWzmwyqCREKX/88hLAiBWNGnR/+DqkceICFhw1Z9gk/zn -peer0.org1.example.com | [05a 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.4 -peer1.org1.example.com | [058 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 5E1207E32E2709D3C49FD6E4E42EA75E054BF7CAB0517372323BB60EB639719F -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [06a 12-05 07:29:41.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... -peer0.org2.example.com | gRjU2qWofvp40BbS6Q== -peer0.org1.example.com | [05b 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org1.example.com | [059 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.4 -peer1.org2.example.com | [06b 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92543944]Move state message READY -peer0.org1.example.com | [05c 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.4 -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [05a 12-05 07:29:41.73 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 | [06c 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [92543944]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [05d 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [05b 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [036 12-05 07:29:42.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [037 12-05 07:29:42.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer1.org2.example.com | [06d 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [92543944]Entered state ready -peer0.org1.example.com | [05e 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [05c 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.4 -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 -peer1.org2.example.com | [06e 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:92543944-7e4f-4372-9669-adce68c926d9 -peer0.org2.example.com | [035 12-05 07:29:42.69 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 [] [15 250 74 86 255 134 183 7 249 123 23 20 73 177 218 37 180 227 77 207 22 52 106 103 14 226 123 248 37 214 6 88] peer0.org2.example.com:7051} incTime is 1512458982692528700 -peer0.org1.example.com | [05f 12-05 07:29:40.56 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 | [06f 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92543944]sending state message READY -orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G -peer1.org1.example.com | [05d 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org1.example.com | [060 12-05 07:29:40.56 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 | [070 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92543944]Received message READY from shim -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h -orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA -peer0.org2.example.com | [038 12-05 07:29:42.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.org2.example.com:7051 [] [15 250 74 86 255 134 183 7 249 123 23 20 73 177 218 37 180 227 77 207 22 52 106 103 14 226 123 248 37 214 6 88] peer0.org2.example.com:7051} -peer1.org1.example.com | [05e 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.4 -peer0.org1.example.com | [061 12-05 07:29:40.56 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.4 -peer1.org2.example.com | [071 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [92543944]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx -peer0.org2.example.com | [039 12-05 07:29:42.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 -peer0.org1.example.com | [062 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.4" , sending back REGISTERED -peer1.org2.example.com | [072 12-05 07:29:41.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 -peer1.org1.example.com | [05f 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | zekLSULI9G2UUYA77A== -peer0.org2.example.com | [03a 12-05 07:29:42.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 | [063 12-05 07:29:40.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 | [073 12-05 07:29:41.97 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 | [060 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [03b 12-05 07:29:42.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 | [061 12-05 07:29:41.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 | [074 12-05 07:29:41.97 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 | MIICGTCCAcCgAwIBAgIRAJjiyHVTsSgex9IwiV/aHl4wCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [062 12-05 07:29:41.73 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 | [075 12-05 07:29:41.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: cscc:1.0.4 -peer0.org1.example.com | [064 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -orderer.example.com | [078 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | [063 12-05 07:29:41.73 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.4 -peer0.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [065 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [076 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [92543944]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [064 12-05 07:29:41.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.4" , sending back REGISTERED -orderer.example.com | [079 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [077 12-05 07:29:41.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... -peer0.org1.example.com | [066 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | [065 12-05 07:29:41.74 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 | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzIwWhcNMjcxMTI5MTM1NzIw -peer1.org2.example.com | [078 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [92543944]sendExecuteMsg trigger event INIT -orderer.example.com | [07a 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [067 12-05 07:29:40.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 cscc:1.0.4 launch seq completed -peer1.org1.example.com | [066 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [079 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92543944]Move state message INIT -peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | [07b 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -peer0.org1.example.com | [068 12-05 07:29:40.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 -peer1.org1.example.com | [067 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [07a 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [92543944]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | [07c 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [07b 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [069 12-05 07:29:40.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... -peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJl7DHrIVTIgNYQmvF7wQg2MICyjyDM/ -peer1.org1.example.com | [069 12-05 07:29:41.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 cscc:1.0.4 launch seq completed -orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [07c 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92543944]sending state message INIT -peer0.org1.example.com | [06a 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebf1e200]Move state message READY -peer0.org2.example.com | i5YOmx+dZMqKd223qOrMvsMip4Jmy7IN+KyTFBgnbTXsobpY0if0XeqjTTBLMA4G -peer1.org1.example.com | [06a 12-05 07:29:41.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 -peer1.org2.example.com | [07d 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92543944]Received message INIT from shim -peer0.org1.example.com | [06b 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebf1e200]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIExdUk4NTXuv -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [07e 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [92543944]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [06b 12-05 07:29:41.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... -peer0.org2.example.com | lhveBMr/kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICgvZ/Rj -peer1.org2.example.com | [07f 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [06c 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dde5c627]Move state message READY -peer0.org2.example.com | CiBmkLGi9TJAI+aPXjzlWzmwyqCREKX/88hLAiBWNGnR/+DqkceICFhw1Z9gk/zn -peer0.org1.example.com | [06c 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [ebf1e200]Entered state ready -peer1.org2.example.com | [080 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [92543944]Received INIT, initializing chaincode -peer0.org2.example.com | gRjU2qWofvp40BbS6Q== -peer1.org1.example.com | [06d 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dde5c627]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [081 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org1.example.com | [06d 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:ebf1e200-7fdf-49de-8d99-8efdac6862f1 -peer0.org1.example.com | [06e 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebf1e200]sending state message READY -peer0.org1.example.com | [06f 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebf1e200]Received message READY from shim -peer0.org2.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [082 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [06e 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [dde5c627]Entered state ready -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -peer0.org1.example.com | [070 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ebf1e200]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [083 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92543944]Init get response status: 200 -peer1.org1.example.com | [06f 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:dde5c627-d374-4756-939c-600a623ddbca -peer0.org2.example.com | [03c 12-05 07:29:42.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 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [084 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92543944]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [070 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dde5c627]sending state message READY -peer0.org2.example.com | [03d 12-05 07:29:42.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 Org2MSP validating identity -peer0.org1.example.com | [071 12-05 07:29:40.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 | [085 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92543944]Move state message COMPLETED -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org2.example.com | [03e 12-05 07:29:42.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 -peer1.org1.example.com | [071 12-05 07:29:41.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 -peer0.org1.example.com | [072 12-05 07:29:40.56 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 | [086 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [92543944]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org2.example.com | [03f 12-05 07:29:42.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 | [073 12-05 07:29:40.56 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 | [087 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92543944]send state message COMPLETED -orderer.example.com | BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W -peer0.org2.example.com | [040 12-05 07:29:42.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: 1801AA01B1060A200FFA4A56FF86B707...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer0.org1.example.com | [074 12-05 07:29:40.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: cscc:1.0.4 -peer1.org2.example.com | [088 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92543944]Received message COMPLETED from shim -peer1.org1.example.com | [072 12-05 07:29:41.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 | [041 12-05 07:29:42.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: 37DE87CCCB482F34058EA43D79BE4C0AE0B08170A8B5E0ECAB3EFC6FFD25BF06 -orderer.example.com | RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer1.org2.example.com | [089 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [92543944]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [073 12-05 07:29:41.74 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 | [042 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org2.example.com:7051 started -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ -peer0.org1.example.com | [075 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ebf1e200]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [08a 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [92543944-7e4f-4372-9669-adce68c926d9]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [074 12-05 07:29:41.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: cscc:1.0.4 -peer0.org2.example.com | [043 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer1.org2.example.com | [08b 12-05 07:29:41.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:92543944-7e4f-4372-9669-adce68c926d9 -orderer.example.com | kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc -peer1.org1.example.com | [075 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [dde5c627]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [076 12-05 07:29:40.56 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 | [08c 12-05 07:29:41.97 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 | [044 12-05 07:29:42.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 | [045 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [076 12-05 07:29:41.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 | [077 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ebf1e200]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [08d 12-05 07:29:41.97 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 | [077 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [dde5c627]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [078 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebf1e200]Move state message INIT -peer0.org1.example.com | [079 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebf1e200]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [08e 12-05 07:29:41.98 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.4,txid=c4f1585f-2473-42ef-9417-dac551dcff83,syscc=true,proposal=0x0,canname=lscc:1.0.4 -peer0.org2.example.com | [046 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572302E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer1.org1.example.com | [068 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq -peer1.org2.example.com | [08f 12-05 07:29:41.98 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.4 is being launched -peer0.org2.example.com | [047 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 2A03D7E259891D610ADBA9EB9BB18BD1BA992FE618D6F278ED18A0FA095E6652 -peer0.org1.example.com | [07a 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [078 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dde5c627]Received message READY from shim -peer1.org2.example.com | [090 12-05 07:29:41.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.org2.example.com | [048 12-05 07:29:42.70 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 | [079 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dde5c627]Handling ChaincodeMessage of type: READY(state:established) -peer0.org1.example.com | [07b 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebf1e200]sending state message INIT -peer1.org2.example.com | [091 12-05 07:29:41.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.org2.example.com:7052] -peer1.org1.example.com | [07a 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dde5c627]Move state message INIT -orderer.example.com | VA7fF8MfGA== -peer1.org2.example.com | [092 12-05 07:29:41.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: lscc:1.0.4(networkid:dev,peerid:peer1.org2.example.com) -peer0.org2.example.com | [049 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [07b 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dde5c627]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [07c 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebf1e200]Received message INIT from shim -peer1.org2.example.com | [093 12-05 07:29:41.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.org2.example.com:7052 -peer0.org2.example.com | [04a 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267322E6578616D706C652E636F6D3A37303531 -peer1.org1.example.com | [07c 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [07d 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ebf1e200]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [094 12-05 07:29:41.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: -peer1.org1.example.com | [07d 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dde5c627]sending state message INIT -peer0.org1.example.com | [07e 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [04b 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 31AA5BDA348977D7C004285715D545FB004C7F32E9BB02A9710DB7C2282B8EA6 -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.4 -peer1.org1.example.com | [07e 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dde5c627]Received message INIT from shim -peer0.org1.example.com | [07f 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [ebf1e200]Received INIT, initializing chaincode -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -orderer.example.com | [07d 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [04c 12-05 07:29:42.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.4,txid=d4cfe854-5fab-4a47-8e47-a041710108ce,syscc=true,proposal=0x0,canname=cscc:1.0.4 -peer1.org1.example.com | [07f 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dde5c627]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [080 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [080 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | [04d 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -peer1.org1.example.com | [081 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [dde5c627]Received INIT, initializing chaincode -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | [04e 12-05 07:29:42.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.4 is being launched -peer0.org1.example.com | [081 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [082 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -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 | [04f 12-05 07:29:42.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 -peer1.org1.example.com | [083 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [082 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebf1e200]Init get response status: 200 -peer1.org1.example.com | [084 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dde5c627]Init get response status: 200 -peer1.org2.example.com | [095 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.4) lock -peer0.org2.example.com | [050 12-05 07:29:42.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.org2.example.com:7052] -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [083 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebf1e200]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [085 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dde5c627]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [051 12-05 07:29:42.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.4(networkid:dev,peerid:peer0.org2.example.com) -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -peer0.org1.example.com | [084 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebf1e200]Move state message COMPLETED -peer1.org2.example.com | [096 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.4) lock -peer1.org1.example.com | [086 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dde5c627]Move state message COMPLETED -peer0.org2.example.com | [052 12-05 07:29:42.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.org2.example.com:7052 -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [085 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ebf1e200]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [097 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.4 -peer1.org1.example.com | [087 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dde5c627]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [053 12-05 07:29:42.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: -peer1.org2.example.com | [098 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.4) -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer1.org1.example.com | [088 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dde5c627]send state message COMPLETED -peer0.org1.example.com | [086 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebf1e200]send state message COMPLETED -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.4 -peer1.org2.example.com | [099 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.4 -peer0.org1.example.com | [087 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebf1e200]Received message COMPLETED from shim -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -peer1.org1.example.com | [089 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dde5c627]Received message COMPLETED from shim -peer1.org2.example.com | [09a 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.4 -peer0.org1.example.com | [088 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebf1e200]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [08a 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dde5c627]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -peer1.org2.example.com | [09b 12-05 07:29:41.98 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 | [089 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebf1e200-7fdf-49de-8d99-8efdac6862f1]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [08b 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dde5c627-d374-4756-939c-600a623ddbca]HandleMessage- COMPLETED. Notify -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -peer1.org2.example.com | [09c 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org1.example.com | [08c 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:dde5c627-d374-4756-939c-600a623ddbca -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | [08a 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ebf1e200-7fdf-49de-8d99-8efdac6862f1 -peer1.org2.example.com | [09d 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.4 -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 | [09e 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [08d 12-05 07:29:41.74 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 | [09f 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [08b 12-05 07:29:40.56 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 | [08e 12-05 07:29:41.74 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 | [054 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.4) lock -peer1.org2.example.com | [0a0 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -peer1.org1.example.com | [08f 12-05 07:29:41.74 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.4,txid=0c47b42f-344c-4a56-9193-54a19bc6d228,syscc=true,proposal=0x0,canname=lscc:1.0.4 -peer0.org1.example.com | [08c 12-05 07:29:40.56 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 | [055 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.4) lock -orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -peer0.org1.example.com | [08d 12-05 07:29:40.56 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.4,txid=0019f517-2706-4f93-afef-03f480d65ff0,syscc=true,proposal=0x0,canname=lscc:1.0.4 -peer1.org2.example.com | [0a1 12-05 07:29:41.98 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 | [056 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.4 -peer0.org2.example.com | [057 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.4) -peer1.org1.example.com | [090 12-05 07:29:41.74 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.4 is being launched -peer0.org1.example.com | [08e 12-05 07:29:40.56 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.4 is being launched -peer1.org2.example.com | [0a2 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | Xk1Xy2C2aVQjOcr++w== -peer1.org1.example.com | [091 12-05 07:29:41.74 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 | [08f 12-05 07:29:40.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 -peer0.org2.example.com | [058 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.4 -peer0.org1.example.com | [090 12-05 07:29:40.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 | [0a3 12-05 07:29:41.98 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.4 -peer0.org2.example.com | [05a 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.4 -peer1.org1.example.com | [092 12-05 07:29:41.74 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 | -----END CERTIFICATE----- -peer0.org1.example.com | [091 12-05 07:29:40.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: lscc:1.0.4(networkid:dev,peerid:peer0.org1.example.com) -peer1.org1.example.com | [093 12-05 07:29:41.74 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.4(networkid:dev,peerid:peer1.org1.example.com) -peer0.org1.example.com | [092 12-05 07:29:40.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 | [059 12-05 07:29:42.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 | [0a4 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.4" , sending back REGISTERED -peer0.org1.example.com | [093 12-05 07:29:40.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: -peer1.org1.example.com | [094 12-05 07:29:41.74 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 | [05b 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -orderer.example.com | [07e 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [0a5 12-05 07:29:41.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 | [0a6 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.4 -peer1.org1.example.com | [095 12-05 07:29:41.74 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 | [05c 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.4 -orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.4 -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | [0a7 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [05d 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | [05e 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [0a8 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [0a9 12-05 07:29:41.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 lscc:1.0.4 launch seq completed -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | [05f 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [0aa 12-05 07:29:41.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 -peer0.org2.example.com | [060 12-05 07:29:42.70 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 | CORE_CHAINCODE_LOGGING_SHIM=warning -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 | [0ab 12-05 07:29:41.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... -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | [061 12-05 07:29:42.70 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 | 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 | [0ac 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4f1585f]Move state message READY -peer0.org1.example.com | [095 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.4) lock -peer0.org1.example.com | [096 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.4) lock -peer0.org1.example.com | [097 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.4 -peer0.org2.example.com | [062 12-05 07:29:42.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.4 -peer1.org1.example.com | [096 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.4) lock -peer1.org2.example.com | [0ad 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4f1585f]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -peer0.org2.example.com | [063 12-05 07:29:42.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.4" , sending back REGISTERED -peer0.org1.example.com | [098 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.4) -peer1.org2.example.com | [0ae 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [c4f1585f]Entered state ready -peer1.org1.example.com | [097 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.4) lock -peer1.org1.example.com | [098 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.4 -peer0.org2.example.com | [064 12-05 07:29:42.70 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 | [0af 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:c4f1585f-2473-42ef-9417-dac551dcff83 -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [099 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.4 -peer0.org2.example.com | [065 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [099 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.4) -peer0.org1.example.com | [09a 12-05 07:29:40.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 | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer0.org2.example.com | [066 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [09a 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.4 -peer1.org2.example.com | [0b0 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4f1585f]sending state message READY -peer0.org1.example.com | [09b 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [067 12-05 07:29:42.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.4 launch seq completed -peer1.org1.example.com | [09b 12-05 07:29:41.74 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 | [0b1 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4f1585f]Received message READY from shim -peer0.org2.example.com | [068 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org1.example.com | [09c 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.4 -peer1.org1.example.com | [09c 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [0b3 12-05 07:29:41.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 -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -peer0.org2.example.com | [069 12-05 07:29:42.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 -peer0.org1.example.com | [094 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer1.org1.example.com | [09d 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.4 -peer1.org2.example.com | [0b4 12-05 07:29:41.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 | [06a 12-05 07:29:42.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.org1.example.com | [09d 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -peer1.org2.example.com | [0b5 12-05 07:29:41.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 | [06b 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d4cfe854]Move state message READY -peer1.org1.example.com | [09e 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org1.example.com | [09e 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.4 -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -peer1.org2.example.com | [0b6 12-05 07:29:41.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: lscc:1.0.4 -peer0.org2.example.com | [06c 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d4cfe854]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [09f 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.4 -peer0.org1.example.com | [09f 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [06d 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [d4cfe854]Entered state ready -orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -peer1.org2.example.com | [0b7 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c4f1585f]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [06e 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:d4cfe854-5fab-4a47-8e47-a041710108ce -peer1.org1.example.com | [0a0 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [06f 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d4cfe854]sending state message READY -peer1.org2.example.com | [0b8 12-05 07:29:41.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.org1.example.com | [0a0 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -peer0.org2.example.com | [070 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d4cfe854]Received message READY from shim -peer1.org1.example.com | [0a1 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [0a1 12-05 07:29:40.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 | [071 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d4cfe854]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | Xk1Xy2C2aVQjOcr++w== -peer1.org2.example.com | [0b9 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c4f1585f]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [072 12-05 07:29:42.70 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 | [0a2 12-05 07:29:40.56 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 | [0a2 12-05 07:29:41.74 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 | -----END CERTIFICATE----- -peer0.org2.example.com | [073 12-05 07:29:42.70 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 | [0b2 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4f1585f]Handling ChaincodeMessage of type: READY(state:established) -peer1.org1.example.com | [0a3 12-05 07:29:41.74 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 | [0a3 12-05 07:29:40.56 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.4 -peer1.org2.example.com | [0ba 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4f1585f]Move state message INIT -peer0.org2.example.com | [074 12-05 07:29:42.70 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 | [0a4 12-05 07:29:41.74 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.4 -peer0.org1.example.com | [0a4 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.4" , sending back REGISTERED -peer0.org2.example.com | [075 12-05 07:29:42.70 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.4 -peer1.org2.example.com | [0bb 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4f1585f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [07f 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org2.example.com | [076 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d4cfe854]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [0bc 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [0a5 12-05 07:29:40.56 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 | [0a5 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.4" , sending back REGISTERED -orderer.example.com | [080 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org2.example.com | [0bd 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4f1585f]sending state message INIT -peer0.org2.example.com | [077 12-05 07:29:42.70 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 | [0a6 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [0a6 12-05 07:29:41.74 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 | [0be 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4f1585f]Received message INIT from shim -orderer.example.com | [081 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org2.example.com | [078 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d4cfe854]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [0a7 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [0bf 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4f1585f]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [0a7 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [079 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d4cfe854]Move state message INIT -orderer.example.com | [082 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -peer0.org1.example.com | [0a8 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [0c0 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [0a8 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [07a 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d4cfe854]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [0a9 12-05 07:29:40.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 lscc:1.0.4 launch seq completed -orderer.example.com | [083 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [0c1 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c4f1585f]Received INIT, initializing chaincode -peer1.org1.example.com | [0a9 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [07b 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [0aa 12-05 07:29:40.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 -peer1.org1.example.com | [0aa 12-05 07:29:41.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 lscc:1.0.4 launch seq completed -peer0.org2.example.com | [07c 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d4cfe854]sending state message INIT -peer1.org2.example.com | [0c2 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [0ab 12-05 07:29:40.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... -peer0.org2.example.com | [07d 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d4cfe854]Received message INIT from shim -orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [0ac 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0019f517]Move state message READY -peer1.org1.example.com | [0ab 12-05 07:29:41.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 -peer1.org2.example.com | [0c3 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4f1585f]Init get response status: 200 -peer0.org2.example.com | [07e 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d4cfe854]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [0ad 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0019f517]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [0c4 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4f1585f]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [0ac 12-05 07:29:41.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... -peer0.org1.example.com | [0ae 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [0019f517]Entered state ready -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [07f 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [0c5 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4f1585f]Move state message COMPLETED -peer1.org1.example.com | [0ad 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c47b42f]Move state message READY -peer0.org1.example.com | [0af 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:0019f517-2706-4f93-afef-03f480d65ff0 -peer0.org2.example.com | [080 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d4cfe854]Received INIT, initializing chaincode -peer0.org1.example.com | [0b0 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0019f517]sending state message READY -peer1.org1.example.com | [0ae 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c47b42f]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [0c6 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4f1585f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [0b1 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0019f517]Received message READY from shim -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org2.example.com | [081 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org1.example.com | [0b2 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0019f517]Handling ChaincodeMessage of type: READY(state:established) -peer1.org1.example.com | [0af 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [0c47b42f]Entered state ready -peer1.org2.example.com | [0c7 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4f1585f]send state message COMPLETED -peer0.org1.example.com | [0b3 12-05 07:29:40.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 -peer0.org2.example.com | [082 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV -peer1.org2.example.com | [0c8 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4f1585f]Received message COMPLETED from shim -peer1.org1.example.com | [0b0 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:0c47b42f-344c-4a56-9193-54a19bc6d228 -peer0.org1.example.com | [0b4 12-05 07:29:40.56 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 | [083 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d4cfe854]Init get response status: 200 -peer0.org1.example.com | [0b5 12-05 07:29:40.56 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 | [0c9 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4f1585f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [0b1 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c47b42f]sending state message READY -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org2.example.com | [084 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d4cfe854]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [0b6 12-05 07:29:40.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: lscc:1.0.4 -peer1.org2.example.com | [0ca 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4f1585f-2473-42ef-9417-dac551dcff83]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [0b2 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c47b42f]Received message READY from shim -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer0.org1.example.com | [0b7 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0019f517]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [085 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d4cfe854]Move state message COMPLETED -peer1.org2.example.com | [0cb 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c4f1585f-2473-42ef-9417-dac551dcff83 -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR -peer1.org1.example.com | [0b3 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c47b42f]Handling ChaincodeMessage of type: READY(state:established) -peer0.org1.example.com | [0b8 12-05 07:29:40.56 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 | [086 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d4cfe854]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [0b4 12-05 07:29:41.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 -peer0.org1.example.com | [0b9 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0019f517]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [0cc 12-05 07:29:41.98 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 | [087 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d4cfe854]send state message COMPLETED -orderer.example.com | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w -peer0.org1.example.com | [0ba 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0019f517]Move state message INIT -peer0.org2.example.com | [088 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d4cfe854]Received message COMPLETED from shim -peer1.org1.example.com | [0b5 12-05 07:29:41.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 | [089 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d4cfe854]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [0bb 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0019f517]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [0cd 12-05 07:29:41.98 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 | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer1.org1.example.com | [0b6 12-05 07:29:41.74 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 | [0bc 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK -peer0.org2.example.com | [08a 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d4cfe854-5fab-4a47-8e47-a041710108ce]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [0bd 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0019f517]sending state message INIT -orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf -peer1.org2.example.com | [0ce 12-05 07:29:41.98 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.4,txid=d3684500-193f-4251-9b28-9fce512332e6,syscc=true,proposal=0x0,canname=escc:1.0.4 -peer0.org1.example.com | [0be 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0019f517]Received message INIT from shim -orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= -peer0.org2.example.com | [08b 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d4cfe854-5fab-4a47-8e47-a041710108ce -peer1.org1.example.com | [0b7 12-05 07:29:41.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: lscc:1.0.4 -peer1.org2.example.com | [0cf 12-05 07:29:41.98 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.4 is being launched -peer0.org1.example.com | [0bf 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0019f517]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [0b8 12-05 07:29:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0c47b42f]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [08c 12-05 07:29:42.70 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 | [0c0 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [0c1 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [0019f517]Received INIT, initializing chaincode -peer0.org2.example.com | [08d 12-05 07:29:42.70 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 | [0d0 12-05 07:29:41.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 | [0c2 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [0b9 12-05 07:29:41.75 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 | [08e 12-05 07:29:42.70 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.4,txid=eb6a7ebb-589d-479a-89d6-76e26f8237a7,syscc=true,proposal=0x0,canname=lscc:1.0.4 -peer0.org1.example.com | [0c3 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0019f517]Init get response status: 200 -orderer.example.com | [084 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [0ba 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0c47b42f]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [0c4 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0019f517]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [0d1 12-05 07:29:41.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.org2.example.com:7052] -peer0.org2.example.com | [08f 12-05 07:29:42.70 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.4 is being launched -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [0c5 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0019f517]Move state message COMPLETED -peer1.org2.example.com | [0d2 12-05 07:29:41.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: escc:1.0.4(networkid:dev,peerid:peer1.org2.example.com) -peer1.org1.example.com | [0bb 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c47b42f]Move state message INIT -peer0.org2.example.com | [090 12-05 07:29:42.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 | [0c6 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0019f517]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [0d3 12-05 07:29:41.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.org2.example.com:7052 -peer1.org1.example.com | [0bc 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c47b42f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [091 12-05 07:29:42.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.org2.example.com:7052] -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [0c7 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0019f517]send state message COMPLETED -peer1.org1.example.com | [0bd 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [092 12-05 07:29:42.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: lscc:1.0.4(networkid:dev,peerid:peer0.org2.example.com) -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [0c8 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0019f517]Received message COMPLETED from shim -peer1.org2.example.com | [0d4 12-05 07:29:41.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 | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -peer1.org1.example.com | [0be 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c47b42f]sending state message INIT -peer0.org2.example.com | [093 12-05 07:29:42.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.org2.example.com:7052 -peer0.org1.example.com | [0c9 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0019f517]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.4 -peer0.org2.example.com | [094 12-05 07:29:42.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 | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [0ca 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0019f517-2706-4f93-afef-03f480d65ff0]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.4 -peer1.org1.example.com | [0bf 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c47b42f]Received message INIT from shim -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org1.example.com | [0cb 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0019f517-2706-4f93-afef-03f480d65ff0 -peer1.org1.example.com | [0c0 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c47b42f]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [0c1 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | [0cc 12-05 07:29:40.56 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 | [0cd 12-05 07:29:40.56 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 | [0ce 12-05 07:29:40.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.4,txid=8bbc4b00-7043-45a4-a6a5-09d6a09935a7,syscc=true,proposal=0x0,canname=escc:1.0.4 -peer1.org1.example.com | [0c2 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [0c47b42f]Received INIT, initializing chaincode -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -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 | [0cf 12-05 07:29:40.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.4 is being launched -peer1.org1.example.com | [0c3 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | [0d0 12-05 07:29:40.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 -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 | [095 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.4) lock -peer1.org1.example.com | [0c4 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c47b42f]Init get response status: 200 -peer0.org1.example.com | [0d1 12-05 07:29:40.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 | [0d5 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.4) lock -peer0.org2.example.com | [096 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.4) lock -orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org1.example.com | [0c5 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c47b42f]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [0d2 12-05 07:29:40.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.4(networkid:dev,peerid:peer0.org1.example.com) -peer1.org2.example.com | [0d6 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.4) lock -peer0.org2.example.com | [097 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.4 -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -peer1.org1.example.com | [0c6 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c47b42f]Move state message COMPLETED -peer0.org2.example.com | [098 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.4) -peer1.org2.example.com | [0d7 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.4 -peer0.org1.example.com | [0d3 12-05 07:29:40.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 -peer1.org1.example.com | [0c7 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c47b42f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -peer1.org2.example.com | [0d8 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.4) -peer0.org2.example.com | [099 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.4 -peer0.org2.example.com | [09a 12-05 07:29:42.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 | [0d4 12-05 07:29:40.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: -peer1.org1.example.com | [0c8 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c47b42f]send state message COMPLETED -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -peer1.org2.example.com | [0d9 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.4 -peer1.org2.example.com | [0da 12-05 07:29:41.98 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 | [09b 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.4 -peer1.org1.example.com | [0c9 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c47b42f]Received message COMPLETED from shim -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [085 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [0db 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.4 -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [0ca 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c47b42f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [09c 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.4 -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [0cb 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c47b42f-344c-4a56-9193-54a19bc6d228]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [09d 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org2.example.com | [0dd 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [0dc 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | [0cc 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0c47b42f-344c-4a56-9193-54a19bc6d228 -peer0.org2.example.com | [09e 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.4 -peer0.org2.example.com | [09f 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [0a0 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [0de 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.4 -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 | [0cd 12-05 07:29:41.75 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 | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -peer0.org2.example.com | [0a1 12-05 07:29:42.70 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 | [0d5 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.4) lock -peer1.org2.example.com | [0df 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [0ce 12-05 07:29:41.75 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 | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [0a2 12-05 07:29:42.70 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 | [0d6 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.4) lock -peer1.org2.example.com | [0e0 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [0cf 12-05 07:29:41.75 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.4,txid=56b7601e-32d0-40a2-a592-a29d03617f82,syscc=true,proposal=0x0,canname=escc:1.0.4 -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org2.example.com | [0a3 12-05 07:29:42.70 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.4 -peer0.org1.example.com | [0d7 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.4 -peer1.org1.example.com | [0d0 12-05 07:29:41.75 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.4 is being launched -peer1.org2.example.com | [0e1 12-05 07:29:41.98 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 | [0e2 12-05 07:29:41.98 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 | [0e3 12-05 07:29:41.98 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.4 -peer1.org1.example.com | [0d1 12-05 07:29:41.75 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 | [0a4 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.4" , sending back REGISTERED -peer0.org1.example.com | [0d8 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.4) -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -peer0.org2.example.com | [0a5 12-05 07:29:42.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 | [0d2 12-05 07:29:41.75 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 | [0d9 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.4 -peer1.org2.example.com | [0e4 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.4" , sending back REGISTERED -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org2.example.com | [0a6 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [0d3 12-05 07:29:41.75 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.4(networkid:dev,peerid:peer1.org1.example.com) -peer1.org2.example.com | [0e5 12-05 07:29:41.98 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 | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org2.example.com | [0a7 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [0da 12-05 07:29:40.56 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 | [0e7 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [0a8 12-05 07:29:42.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 lscc:1.0.4 launch seq completed -peer1.org1.example.com | [0d4 12-05 07:29:41.75 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 | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -peer0.org1.example.com | [0db 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [0e8 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [0d5 12-05 07:29:41.75 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 | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org2.example.com | [0a9 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org1.example.com | [0dc 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.4 -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -peer0.org2.example.com | [0aa 12-05 07:29:42.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 -peer1.org2.example.com | [0e6 12-05 07:29:41.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 escc:1.0.4 launch seq completed -peer0.org1.example.com | [0dd 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.4 -peer1.org2.example.com | [0ea 12-05 07:29:41.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 -peer0.org2.example.com | [0ab 12-05 07:29:42.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.org1.example.com | [0de 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.4 -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | [0eb 12-05 07:29:41.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.org2.example.com | [0ac 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [eb6a7ebb]Move state message READY -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [0df 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [0ec 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d3684500]Move state message READY -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | [0ad 12-05 07:29:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [eb6a7ebb]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | [086 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -peer0.org1.example.com | [0e0 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | [0ae 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [eb6a7ebb]Entered state ready -orderer.example.com | [087 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -peer1.org2.example.com | [0e9 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -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 | [088 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer0.org1.example.com | [0e1 12-05 07:29:40.56 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 | [0ed 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d3684500]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [0af 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:eb6a7ebb-589d-479a-89d6-76e26f8237a7 -orderer.example.com | [089 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org1.example.com | [0d6 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.4) lock -peer0.org1.example.com | [0e2 12-05 07:29:40.56 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 | [0b0 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [eb6a7ebb]sending state message READY -peer1.org2.example.com | [0ee 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [d3684500]Entered state ready -orderer.example.com | [08a 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to SampleConsortium -peer0.org1.example.com | [0e3 12-05 07:29:40.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.4 -peer1.org1.example.com | [0d7 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.4) lock -peer0.org2.example.com | [0b1 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [eb6a7ebb]Received message READY from shim -orderer.example.com | [08b 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [0e4 12-05 07:29:40.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.4" , sending back REGISTERED -peer0.org2.example.com | [0b2 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [eb6a7ebb]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [0ef 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:d3684500-193f-4251-9b28-9fce512332e6 -orderer.example.com | [08c 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to SampleConsortium -peer1.org1.example.com | [0d8 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.4 -peer0.org2.example.com | [0b3 12-05 07:29:42.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 -orderer.example.com | [08d 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [0e5 12-05 07:29:40.56 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 | [08e 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to SampleConsortium -peer1.org2.example.com | [0f0 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d3684500]sending state message READY -peer1.org1.example.com | [0d9 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.4) -peer0.org1.example.com | [0e6 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [0b4 12-05 07:29:42.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 | [08f 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer1.org2.example.com | [0f1 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d3684500]Received message READY from shim -peer1.org1.example.com | [0da 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.4 -peer0.org2.example.com | [0b5 12-05 07:29:42.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 | [090 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to SampleConsortium -peer0.org1.example.com | [0e7 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [0db 12-05 07:29:41.75 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 | [0f2 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d3684500]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | [091 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org2.example.com | [0b6 12-05 07:29:42.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.4 -peer1.org2.example.com | [0f3 12-05 07:29:41.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 | [0e8 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | [092 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to SampleConsortium -peer1.org1.example.com | [0dc 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [0b7 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [eb6a7ebb]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [0f4 12-05 07:29:41.98 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 | [093 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org1.example.com | [0dd 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.4 -peer1.org2.example.com | [0f5 12-05 07:29:41.98 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 | [0e9 12-05 07:29:40.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.4 launch seq completed -peer1.org1.example.com | [0de 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -orderer.example.com | [094 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to SampleConsortium -peer0.org2.example.com | [0b8 12-05 07:29:42.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 | [0f6 12-05 07:29:41.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.4 -orderer.example.com | [095 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -peer1.org1.example.com | [0df 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.4 -peer0.org2.example.com | [0b9 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [eb6a7ebb]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [0ea 12-05 07:29:40.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 -peer1.org2.example.com | [0f7 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d3684500]Inside sendExecuteMessage. Message INIT -orderer.example.com | [096 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org1MSP/Admins to Consortiums -orderer.example.com | [097 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -peer1.org1.example.com | [0e0 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [0f8 12-05 07:29:41.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 | [0ba 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [eb6a7ebb]Move state message INIT -peer0.org1.example.com | [0eb 12-05 07:29:40.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 | [098 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org1MSP/Readers to Consortiums -peer0.org2.example.com | [0bb 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [eb6a7ebb]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [0ec 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8bbc4b00]Move state message READY -peer1.org1.example.com | [0e1 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | [099 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -peer1.org2.example.com | [0f9 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d3684500]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [0ed 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8bbc4b00]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [0bc 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [0e2 12-05 07:29:41.75 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 | [0fa 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d3684500]Move state message INIT -peer0.org2.example.com | [0bd 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [eb6a7ebb]sending state message INIT -orderer.example.com | [09a 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org1MSP/Writers to Consortiums -peer0.org1.example.com | [0ee 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [8bbc4b00]Entered state ready -peer1.org1.example.com | [0e3 12-05 07:29:41.75 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 | [0be 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [eb6a7ebb]Received message INIT from shim -peer1.org2.example.com | [0fb 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d3684500]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [09b 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -peer0.org1.example.com | [0ef 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:8bbc4b00-7043-45a4-a6a5-09d6a09935a7 -peer1.org1.example.com | [0e4 12-05 07:29:41.75 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.4 -peer0.org1.example.com | [0f0 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8bbc4b00]sending state message READY -peer1.org1.example.com | [0e5 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.4" , sending back REGISTERED -peer0.org2.example.com | [0bf 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [eb6a7ebb]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | [09c 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org2MSP/Readers to Consortiums -peer0.org1.example.com | [0f1 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8bbc4b00]Received message READY from shim -peer1.org2.example.com | [0fc 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [0e6 12-05 07:29:41.75 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 | [0c0 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [0f2 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8bbc4b00]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | [09d 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -peer1.org2.example.com | [0fd 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d3684500]sending state message INIT -peer1.org1.example.com | [0e7 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [0c1 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [eb6a7ebb]Received INIT, initializing chaincode -orderer.example.com | [09e 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org2MSP/Writers to Consortiums -peer1.org2.example.com | [0fe 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d3684500]Received message INIT from shim -peer0.org1.example.com | [0f3 12-05 07:29:40.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.org1.example.com | [0e8 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | [09f 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -peer0.org1.example.com | [0f4 12-05 07:29:40.56 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 | [0c2 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [0ff 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d3684500]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [0e9 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | [0a0 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org2MSP/Admins to Consortiums -peer0.org2.example.com | [0c3 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [eb6a7ebb]Init get response status: 200 -peer1.org2.example.com | [100 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [0f5 12-05 07:29:40.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 | [0a1 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org2.example.com | [0c4 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [eb6a7ebb]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [101 12-05 07:29:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d3684500]Received INIT, initializing chaincode -peer1.org1.example.com | [0ea 12-05 07:29:41.75 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.4 launch seq completed -peer0.org1.example.com | [0f6 12-05 07:29:40.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.4 -orderer.example.com | [0a2 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -peer0.org2.example.com | [0c5 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [eb6a7ebb]Move state message COMPLETED -peer1.org2.example.com | [102 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer1.org1.example.com | [0eb 12-05 07:29:41.75 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 | [0f7 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8bbc4b00]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [0c6 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [eb6a7ebb]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [0ec 12-05 07:29:41.75 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 | [0a3 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [0f8 12-05 07:29:40.56 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 | [0c7 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [eb6a7ebb]send state message COMPLETED -peer1.org2.example.com | [103 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d3684500]Init get response status: 200 -peer1.org1.example.com | [0ed 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [56b7601e]Move state message READY -peer0.org1.example.com | [0f9 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8bbc4b00]sendExecuteMsg trigger event INIT -orderer.example.com | [0a4 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -peer0.org2.example.com | [0c8 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [eb6a7ebb]Received message COMPLETED from shim -peer1.org1.example.com | [0ee 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [56b7601e]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [0c9 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [eb6a7ebb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [104 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d3684500]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [0fa 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8bbc4b00]Move state message INIT -orderer.example.com | [0a5 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer1.org2.example.com | [105 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d3684500]Move state message COMPLETED -peer1.org1.example.com | [0ef 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [56b7601e]Entered state ready -peer0.org2.example.com | [0ca 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [eb6a7ebb-589d-479a-89d6-76e26f8237a7]HandleMessage- COMPLETED. Notify -orderer.example.com | [0a6 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -peer0.org1.example.com | [0fb 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8bbc4b00]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [106 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d3684500]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [0f0 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:56b7601e-32d0-40a2-a592-a29d03617f82 -peer0.org2.example.com | [0cb 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:eb6a7ebb-589d-479a-89d6-76e26f8237a7 -peer0.org1.example.com | [0fc 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [0a7 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org2.example.com | [0cc 12-05 07:29:42.71 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 | [107 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d3684500]send state message COMPLETED -peer1.org1.example.com | [0f1 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [56b7601e]sending state message READY -peer1.org1.example.com | [0f2 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [56b7601e]Received message READY from shim -orderer.example.com | [0a8 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [0a9 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org2.example.com | [0cd 12-05 07:29:42.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 -peer1.org2.example.com | [108 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d3684500]Received message COMPLETED from shim -orderer.example.com | [0aa 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer1.org1.example.com | [0f3 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [56b7601e]Handling ChaincodeMessage of type: READY(state:established) -peer0.org1.example.com | [0fd 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8bbc4b00]sending state message INIT -peer0.org2.example.com | [0ce 12-05 07:29:42.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.4,txid=42daf9cf-8f26-4378-800e-bbfee5d2924f,syscc=true,proposal=0x0,canname=escc:1.0.4 -peer1.org2.example.com | [109 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d3684500]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [0cf 12-05 07:29:42.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.4 is being launched -peer1.org2.example.com | [10a 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d3684500-193f-4251-9b28-9fce512332e6]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [0fe 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8bbc4b00]Received message INIT from shim -peer1.org1.example.com | [0f4 12-05 07:29:41.75 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 | [0ab 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [0ff 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8bbc4b00]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [0d0 12-05 07:29:42.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 -orderer.example.com | [0ac 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/Admins to Channel -peer1.org2.example.com | [10b 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d3684500-193f-4251-9b28-9fce512332e6 -peer0.org1.example.com | [100 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [0f5 12-05 07:29:41.75 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 | [0ad 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org1MSP/Admins for evaluation -peer0.org2.example.com | [0d1 12-05 07:29:42.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.org2.example.com:7052] -peer0.org1.example.com | [101 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [8bbc4b00]Received INIT, initializing chaincode -peer1.org2.example.com | [10c 12-05 07:29:41.99 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 | [0f6 12-05 07:29:41.75 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 | [10d 12-05 07:29:41.99 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 | [0d2 12-05 07:29:42.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: escc:1.0.4(networkid:dev,peerid:peer0.org2.example.com) -orderer.example.com | [0ae 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Admins to Channel -peer1.org2.example.com | [10e 12-05 07:29:41.99 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.4,txid=96b986c0-038f-4be7-968f-98830d673f16,syscc=true,proposal=0x0,canname=vscc:1.0.4 -peer0.org1.example.com | [102 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer0.org2.example.com | [0d3 12-05 07:29:42.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.org2.example.com:7052 -peer1.org1.example.com | [0f7 12-05 07:29:41.75 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.4 -peer1.org2.example.com | [10f 12-05 07:29:41.99 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.4 is being launched -peer0.org1.example.com | [103 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8bbc4b00]Init get response status: 200 -orderer.example.com | [0af 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org1MSP/Readers for evaluation -peer0.org2.example.com | [0d4 12-05 07:29:42.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: -peer1.org1.example.com | [0f8 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [56b7601e]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [110 12-05 07:29:41.99 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 | [104 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8bbc4b00]Init succeeded. Sending COMPLETED -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.4 -peer1.org2.example.com | [111 12-05 07:29:41.99 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 | [0b0 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Readers to Channel -peer1.org1.example.com | [0f9 12-05 07:29:41.75 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 | [105 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8bbc4b00]Move state message COMPLETED -peer1.org2.example.com | [112 12-05 07:29:41.99 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.4(networkid:dev,peerid:peer1.org2.example.com) -orderer.example.com | [0b1 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org1MSP/Writers for evaluation -peer1.org1.example.com | [0fa 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [56b7601e]sendExecuteMsg trigger event INIT -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | [113 12-05 07:29:41.99 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 | [0fb 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [56b7601e]Move state message INIT -peer1.org2.example.com | [114 12-05 07:29:41.99 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 | [106 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8bbc4b00]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.4 -peer1.org1.example.com | [0fc 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [56b7601e]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | [0b2 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Writers to Channel -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | [107 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8bbc4b00]send state message COMPLETED -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -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 | [0fd 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [0b3 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org2MSP/Readers for evaluation -peer0.org1.example.com | [108 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8bbc4b00]Received message COMPLETED from shim -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | [0fe 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [56b7601e]sending state message INIT -peer0.org2.example.com | [0d5 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.4) lock -orderer.example.com | [0b4 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Readers to Channel -peer1.org1.example.com | [0ff 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [56b7601e]Received message INIT from shim -peer0.org1.example.com | [109 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8bbc4b00]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -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.org1.example.com | [100 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [56b7601e]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [0d6 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.4) lock -peer0.org1.example.com | [10a 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8bbc4b00-7043-45a4-a6a5-09d6a09935a7]HandleMessage- COMPLETED. Notify -orderer.example.com | [0b5 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org2MSP/Writers for evaluation -peer1.org2.example.com | [115 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.4) lock -peer1.org1.example.com | [101 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [0b6 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Writers to Channel -peer0.org2.example.com | [0d7 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.4 -peer1.org2.example.com | [116 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.4) lock -peer0.org1.example.com | [10b 12-05 07:29:40.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8bbc4b00-7043-45a4-a6a5-09d6a09935a7 -peer1.org1.example.com | [102 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [56b7601e]Received INIT, initializing chaincode -peer1.org2.example.com | [117 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.4 -peer0.org1.example.com | [10c 12-05 07:29:40.56 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 | [103 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer0.org2.example.com | [0d8 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.4) -peer1.org2.example.com | [118 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.4) -orderer.example.com | [0b7 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org2MSP/Admins for evaluation -peer0.org1.example.com | [10d 12-05 07:29:40.56 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 | [104 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [56b7601e]Init get response status: 200 -peer1.org2.example.com | [11a 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.4 -peer0.org2.example.com | [0d9 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.4 -orderer.example.com | [0b8 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Admins to Channel -peer0.org1.example.com | [10e 12-05 07:29:40.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.4,txid=8a2131e4-69be-414f-8030-ed18225f882d,syscc=true,proposal=0x0,canname=vscc:1.0.4 -peer1.org1.example.com | [105 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [56b7601e]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [11b 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org2.example.com | [0da 12-05 07:29:42.71 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 | [0b9 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer1.org2.example.com | [11c 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.4 -peer0.org1.example.com | [10f 12-05 07:29:40.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.4 is being launched -peer0.org2.example.com | [0db 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.4 -peer1.org1.example.com | [106 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [56b7601e]Move state message COMPLETED -peer1.org2.example.com | [11d 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | [0ba 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -peer0.org2.example.com | [0dc 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org1.example.com | [107 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [56b7601e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [110 12-05 07:29:40.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 | [119 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.4 -peer0.org2.example.com | [0dd 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.4 -peer1.org1.example.com | [108 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [56b7601e]send state message COMPLETED -peer1.org2.example.com | [11e 12-05 07:29:41.99 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 | [0bb 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [111 12-05 07:29:40.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] -peer1.org1.example.com | [109 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [56b7601e]Received message COMPLETED from shim -peer1.org2.example.com | [11f 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [0de 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [112 12-05 07:29:40.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.4(networkid:dev,peerid:peer0.org1.example.com) -peer1.org1.example.com | [10a 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [56b7601e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [120 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | [0bc 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -peer0.org2.example.com | [0df 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [113 12-05 07:29:40.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 -peer1.org1.example.com | [10b 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [56b7601e-32d0-40a2-a592-a29d03617f82]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [121 12-05 07:29:41.99 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 | [114 12-05 07:29:40.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: -peer0.org2.example.com | [0e0 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [10c 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:56b7601e-32d0-40a2-a592-a29d03617f82 -orderer.example.com | [0bd 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org2.example.com | [122 12-05 07:29:41.99 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 | [10d 12-05 07:29:41.75 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 | CORE_CHAINCODE_ID_NAME=vscc:1.0.4 -peer1.org1.example.com | [10e 12-05 07:29:41.75 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.org2.example.com | [123 12-05 07:29:41.99 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.4 -peer0.org2.example.com | [0e1 12-05 07:29:42.71 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_PEER_TLS_ENABLED=true -peer1.org1.example.com | [10f 12-05 07:29:41.75 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.4,txid=80daf944-b6c4-4d3b-a999-10171073dd01,syscc=true,proposal=0x0,canname=vscc:1.0.4 -orderer.example.com | [0be 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -peer0.org2.example.com | [0e2 12-05 07:29:42.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 | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | [124 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.4" , sending back REGISTERED -peer1.org1.example.com | [110 12-05 07:29:41.75 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.4 is being launched -peer0.org2.example.com | [0e3 12-05 07:29:42.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.4 -peer1.org2.example.com | [125 12-05 07:29:41.99 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 | [111 12-05 07:29:41.75 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 | [0bf 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -peer0.org2.example.com | [0e4 12-05 07:29:42.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.4" , sending back REGISTERED -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | [126 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [112 12-05 07:29:41.75 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 | [0c0 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -peer1.org2.example.com | [127 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [113 12-05 07:29:41.75 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.4(networkid:dev,peerid:peer1.org1.example.com) -peer0.org2.example.com | [0e5 12-05 07:29:42.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 | 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 | [114 12-05 07:29:41.75 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 | [0e6 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -orderer.example.com | [0c1 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -peer1.org2.example.com | [128 12-05 07:29:41.99 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.4 launch seq completed -peer0.org1.example.com | [115 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.4) lock -peer1.org1.example.com | [115 12-05 07:29:41.75 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 | [0c2 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -peer0.org1.example.com | [116 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.4) lock -peer1.org2.example.com | [12a 12-05 07:29:41.99 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 | [0e7 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.4 -orderer.example.com | [0c3 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -peer0.org2.example.com | [0e9 12-05 07:29:42.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.4 launch seq completed -peer0.org1.example.com | [117 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.4 -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | [129 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org1.example.com | [118 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.4) -orderer.example.com | [0c4 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | [12b 12-05 07:29:41.99 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 | [0e8 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org1.example.com | [119 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.4 -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | [0c5 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -peer0.org2.example.com | [0ea 12-05 07:29:42.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 | [12c 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [96b986c0]Move state message READY -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 | [0eb 12-05 07:29:42.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.org1.example.com | [116 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.4) lock -peer0.org1.example.com | [11a 12-05 07:29:40.57 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 | [12d 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [96b986c0]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [0ec 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [42daf9cf]Move state message READY -orderer.example.com | [0c6 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -peer1.org2.example.com | [12e 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [96b986c0]Entered state ready -peer0.org2.example.com | [0ed 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [42daf9cf]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [117 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.4) lock -peer0.org1.example.com | [11b 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [0ee 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [42daf9cf]Entered state ready -peer0.org1.example.com | [11c 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.4 -peer0.org1.example.com | [11d 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org1.example.com | [118 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.4 -peer0.org2.example.com | [0ef 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:42daf9cf-8f26-4378-800e-bbfee5d2924f -peer1.org2.example.com | [12f 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:96b986c0-038f-4be7-968f-98830d673f16 -orderer.example.com | [0c7 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Consortiums/Writers -peer0.org2.example.com | [0f0 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [42daf9cf]sending state message READY -peer1.org1.example.com | [119 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.4) -peer1.org2.example.com | [130 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [96b986c0]sending state message READY -peer0.org2.example.com | [0f1 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [42daf9cf]Received message READY from shim -peer0.org1.example.com | [11e 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.4 -peer1.org1.example.com | [11a 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.4 -peer1.org2.example.com | [131 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [96b986c0]Received message READY from shim -peer0.org2.example.com | [0f2 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [42daf9cf]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | [0c8 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [11f 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [11b 12-05 07:29:41.75 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 | [132 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [96b986c0]Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [0f3 12-05 07:29:42.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.org1.example.com | [120 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | [0c9 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org2.example.com | [133 12-05 07:29:41.99 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 12-05 07:29:42.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 | [0ca 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org1.example.com | [11c 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [134 12-05 07:29:41.99 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 12-05 07:29:42.71 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 | [11d 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.4 -orderer.example.com | [0cb 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Consortiums/Readers -peer1.org2.example.com | [135 12-05 07:29:41.99 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 12-05 07:29:42.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.4 -peer0.org1.example.com | [121 12-05 07:29:40.57 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 | [11e 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org2.example.com | [136 12-05 07:29:41.99 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.4 -peer0.org2.example.com | [0f7 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [42daf9cf]Inside sendExecuteMessage. Message INIT -orderer.example.com | [0cc 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer1.org1.example.com | [11f 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.4 -peer0.org1.example.com | [122 12-05 07:29:40.57 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 | [0f8 12-05 07:29:42.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 | [137 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [96b986c0]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [123 12-05 07:29:40.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.4 -orderer.example.com | [0cd 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org2.example.com | [0f9 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [42daf9cf]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [120 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [124 12-05 07:29:40.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.4" , sending back REGISTERED -peer0.org2.example.com | [0fa 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [42daf9cf]Move state message INIT -peer0.org2.example.com | [0fb 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [42daf9cf]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [0ce 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org1.example.com | [125 12-05 07:29:40.57 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 | [0fc 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [138 12-05 07:29:41.99 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 | [121 12-05 07:29:41.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | [0cf 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [126 12-05 07:29:40.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.4 launch seq completed -peer0.org2.example.com | [0fd 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [42daf9cf]sending state message INIT -peer1.org2.example.com | [139 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [96b986c0]sendExecuteMsg trigger event INIT -orderer.example.com | [0d0 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org1.example.com | [122 12-05 07:29:41.75 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 | [0fe 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [42daf9cf]Received message INIT from shim -peer0.org1.example.com | [127 12-05 07:29:40.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 -peer1.org1.example.com | [123 12-05 07:29:41.76 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 | [13a 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [96b986c0]Move state message INIT -peer0.org2.example.com | [0ff 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [42daf9cf]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | [0d1 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -peer0.org2.example.com | [100 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [124 12-05 07:29:41.76 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.4 -peer0.org1.example.com | [128 12-05 07:29:40.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 | [13b 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [96b986c0]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [101 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [42daf9cf]Received INIT, initializing chaincode -peer0.org1.example.com | [129 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a2131e4]Move state message READY -orderer.example.com | [0d2 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org1.example.com | [125 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.4" , sending back REGISTERED -peer1.org2.example.com | [13c 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [102 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -orderer.example.com | [0d3 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.readBlock -> DEBU Read block 0 -peer0.org1.example.com | [12a 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8a2131e4]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [13d 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [96b986c0]sending state message INIT -peer1.org1.example.com | [126 12-05 07:29:41.76 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 | [103 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [42daf9cf]Init get response status: 200 -orderer.example.com | [0d4 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/orderer/multichain] main.initializeMultiChainManager.NewManagerImpl.newChainSupport -> DEBU [channel: testchainid] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=0): -peer1.org1.example.com | [127 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [13e 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [96b986c0]Received message INIT from shim -peer0.org1.example.com | [12b 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [8a2131e4]Entered state ready -peer0.org2.example.com | [104 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [42daf9cf]Init succeeded. Sending COMPLETED -orderer.example.com | [0d5 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/orderer/multichain] main.initializeMultiChainManager.NewManagerImpl -> INFO Starting with system channel testchainid and orderer type solo -peer1.org2.example.com | [13f 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [96b986c0]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [128 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | [0d6 12-05 07:29:40.24 UTC] [main] main -> INFO Beginning to serve requests -peer0.org2.example.com | [105 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [42daf9cf]Move state message COMPLETED -peer1.org1.example.com | [129 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org1.example.com | [12c 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:8a2131e4-69be-414f-8030-ed18225f882d -peer1.org2.example.com | [140 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [0d7 12-05 07:29:42.88 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -peer0.org2.example.com | [106 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [42daf9cf]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [12a 12-05 07:29:41.76 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.4 launch seq completed -peer0.org1.example.com | [12d 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a2131e4]sending state message READY -peer1.org2.example.com | [141 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [96b986c0]Received INIT, initializing chaincode -orderer.example.com | [0d8 12-05 07:29:42.88 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -peer0.org2.example.com | [107 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [42daf9cf]send state message COMPLETED -peer0.org1.example.com | [12e 12-05 07:29:40.57 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 | [142 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [96b986c0]Init get response status: 200 -peer1.org1.example.com | [12b 12-05 07:29:41.76 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 | [0d9 12-05 07:29:42.88 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -peer0.org2.example.com | [108 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [42daf9cf]Received message COMPLETED from shim -peer0.org1.example.com | [12f 12-05 07:29:40.57 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 | [143 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [96b986c0]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [12c 12-05 07:29:41.76 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 | [109 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [42daf9cf]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [0da 12-05 07:29:42.89 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -peer1.org2.example.com | [144 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [96b986c0]Move state message COMPLETED -peer0.org1.example.com | [130 12-05 07:29:40.57 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 | [12d 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [80daf944]Move state message READY -peer1.org1.example.com | [12e 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [80daf944]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [131 12-05 07:29:40.57 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.4 -peer1.org2.example.com | [145 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [96b986c0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [0db 12-05 07:29:42.89 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop -peer0.org2.example.com | [10a 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [42daf9cf-8f26-4378-800e-bbfee5d2924f]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [12f 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [80daf944]Entered state ready -peer1.org2.example.com | [146 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [96b986c0]send state message COMPLETED -orderer.example.com | [0dc 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Preprocessing CONFIG_UPDATE -peer0.org2.example.com | [10b 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:42daf9cf-8f26-4378-800e-bbfee5d2924f -peer0.org1.example.com | [132 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8a2131e4]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [10c 12-05 07:29:42.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 | [10d 12-05 07:29:42.71 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 | [0dd 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/orderer/configupdate] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process -> DEBU Processing channel creation request for channel businesschannel -peer0.org1.example.com | [133 12-05 07:29:40.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 | [130 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:80daf944-b6c4-4d3b-a999-10171073dd01 -peer1.org2.example.com | [147 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [96b986c0]Received message COMPLETED from shim -peer1.org1.example.com | [131 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [80daf944]sending state message READY -peer1.org2.example.com | [148 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [96b986c0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [10e 12-05 07:29:42.71 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.4,txid=1567a872-6bf5-4346-9327-fba9409f417e,syscc=true,proposal=0x0,canname=vscc:1.0.4 -orderer.example.com | [0de 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [132 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [80daf944]Received message READY from shim -peer0.org1.example.com | [134 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8a2131e4]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [149 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [96b986c0-038f-4be7-968f-98830d673f16]HandleMessage- COMPLETED. Notify -orderer.example.com | [0df 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [10f 12-05 07:29:42.71 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.4 is being launched -peer1.org1.example.com | [133 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [80daf944]Handling ChaincodeMessage of type: READY(state:established) -peer0.org1.example.com | [135 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [14a 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:96b986c0-038f-4be7-968f-98830d673f16 -peer0.org2.example.com | [110 12-05 07:29:42.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 | [134 12-05 07:29:41.76 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 | [0e0 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [136 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [14b 12-05 07:29:41.99 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 | [135 12-05 07:29:41.76 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 | [111 12-05 07:29:42.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.org2.example.com:7052] -orderer.example.com | [0e1 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [14c 12-05 07:29:41.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 -peer0.org1.example.com | [137 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [112 12-05 07:29:42.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: vscc:1.0.4(networkid:dev,peerid:peer0.org2.example.com) -peer1.org1.example.com | [136 12-05 07:29:41.76 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 | [14d 12-05 07:29:41.99 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.4,txid=e5243e78-1d98-46b9-8ab1-f132369f4fce,syscc=true,proposal=0x0,canname=qscc:1.0.4 -peer0.org1.example.com | [138 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a2131e4]Received message READY from shim -orderer.example.com | [0e2 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0ABC060A1B08011A0608E69599D10522...07526561646572731A0641646D696E73 -peer1.org2.example.com | [14e 12-05 07:29:41.99 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.4 is being launched -peer0.org2.example.com | [113 12-05 07:29:42.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.org2.example.com:7052 -peer1.org1.example.com | [137 12-05 07:29:41.76 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.4 -peer0.org1.example.com | [139 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a2131e4]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | [0e3 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 6341964D25188EC88D1EA7AEFF9175472DF2D75686EA120C7123CC8D9FE22A8F -peer1.org2.example.com | [14f 12-05 07:29:41.99 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 | [114 12-05 07:29:42.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: -peer0.org1.example.com | [13a 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a2131e4]Move state message INIT -peer1.org1.example.com | [138 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [80daf944]Inside sendExecuteMessage. Message INIT -orderer.example.com | [0e4 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org2.example.com | [150 12-05 07:29:41.99 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 | CORE_CHAINCODE_ID_NAME=vscc:1.0.4 -peer0.org1.example.com | [13b 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8a2131e4]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [0e5 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [139 12-05 07:29:41.76 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 | [13c 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -orderer.example.com | [0e6 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [151 12-05 07:29:41.99 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.4(networkid:dev,peerid:peer1.org2.example.com) -peer0.org1.example.com | [13d 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a2131e4]sending state message INIT -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [13a 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [80daf944]sendExecuteMsg trigger event INIT -orderer.example.com | [0e7 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [152 12-05 07:29:41.99 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 | [13e 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a2131e4]Received message INIT from shim -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | [0e8 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [153 12-05 07:29:41.99 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 | [13b 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [80daf944]Move state message INIT -peer0.org1.example.com | [13f 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a2131e4]Handling ChaincodeMessage of type: INIT(state:ready) -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 | [0e9 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.4 -peer0.org1.example.com | [140 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [13c 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [80daf944]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [115 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.4) lock -orderer.example.com | [0ea 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer0.org1.example.com | [141 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [8a2131e4]Received INIT, initializing chaincode -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -orderer.example.com | [0eb 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [13d 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [142 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a2131e4]Init get response status: 200 -peer0.org2.example.com | [116 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.4) lock -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [13e 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [80daf944]sending state message INIT -peer0.org1.example.com | [143 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a2131e4]Init succeeded. Sending COMPLETED -orderer.example.com | [0ec 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.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 | [144 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a2131e4]Move state message COMPLETED -peer0.org2.example.com | [117 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.4 -orderer.example.com | [0ed 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [145 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a2131e4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -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.org1.example.com | [13f 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [80daf944]Received message INIT from shim -peer0.org1.example.com | [146 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a2131e4]send state message COMPLETED -peer0.org2.example.com | [118 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.4) -orderer.example.com | [0ee 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [147 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a2131e4]Received message COMPLETED from shim -peer1.org2.example.com | [154 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.4) lock -peer0.org1.example.com | [148 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8a2131e4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [0ef 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [140 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [80daf944]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [155 12-05 07:29:41.99 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.4) lock -peer0.org1.example.com | [149 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8a2131e4-69be-414f-8030-ed18225f882d]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [119 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.4 -orderer.example.com | [0f0 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [14a 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8a2131e4-69be-414f-8030-ed18225f882d -peer0.org2.example.com | [11a 12-05 07:29:42.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.org1.example.com | [141 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [0f1 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [156 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.4 -peer0.org1.example.com | [14b 12-05 07:29:40.57 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 | [11b 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [142 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [80daf944]Received INIT, initializing chaincode -peer0.org1.example.com | [14c 12-05 07:29:40.57 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 | [157 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.4) -peer0.org2.example.com | [11c 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.4 -peer0.org1.example.com | [14d 12-05 07:29:40.57 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.4,txid=3bb78f79-7308-4fc2-a4e3-a20f4f893f69,syscc=true,proposal=0x0,canname=qscc:1.0.4 -peer1.org2.example.com | [159 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.4 -peer1.org1.example.com | [143 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [80daf944]Init get response status: 200 -orderer.example.com | [0f2 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [11d 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org1.example.com | [14e 12-05 07:29:40.57 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.4 is being launched -peer0.org2.example.com | [11e 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.4 -peer1.org2.example.com | [15a 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org1.example.com | [144 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [80daf944]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [14f 12-05 07:29:40.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 -peer0.org2.example.com | [11f 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [150 12-05 07:29:40.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] -peer1.org2.example.com | [15b 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.4 -peer1.org1.example.com | [145 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [80daf944]Move state message COMPLETED -peer0.org2.example.com | [120 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [151 12-05 07:29:40.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: qscc:1.0.4(networkid:dev,peerid:peer0.org1.example.com) -peer1.org2.example.com | [15c 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | [0f3 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org2.example.com | [121 12-05 07:29:42.71 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 | [152 12-05 07:29:40.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 -peer1.org1.example.com | [146 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [80daf944]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [0f4 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [122 12-05 07:29:42.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 | [153 12-05 07:29:40.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: -peer1.org2.example.com | [158 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.4 -peer1.org1.example.com | [147 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [80daf944]send state message COMPLETED -orderer.example.com | [0f5 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.4 -peer1.org2.example.com | [15d 12-05 07:29:42.00 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 | [123 12-05 07:29:42.71 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.4 -orderer.example.com | [0f6 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [148 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [80daf944]Received message COMPLETED from shim -orderer.example.com | [0f7 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [15e 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [124 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.4" , sending back REGISTERED -peer0.org2.example.com | [125 12-05 07:29:42.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 | [126 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | [0f8 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [15f 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [14a 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [80daf944]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [127 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | [0f9 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org2.example.com | [128 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [160 12-05 07:29:42.00 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 | [0fa 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [14b 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [80daf944-b6c4-4d3b-a999-10171073dd01]HandleMessage- COMPLETED. Notify -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 | [161 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | [0fb 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [149 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [154 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.4) lock -peer0.org2.example.com | [129 12-05 07:29:42.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 vscc:1.0.4 launch seq completed -orderer.example.com | [0fc 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [155 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.4) lock -peer1.org1.example.com | [14c 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:80daf944-b6c4-4d3b-a999-10171073dd01 -peer1.org2.example.com | [162 12-05 07:29:42.00 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.4 -peer0.org2.example.com | [12a 12-05 07:29:42.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 | [0fd 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [156 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.4 -peer1.org1.example.com | [14d 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [0fe 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org2.example.com | [12b 12-05 07:29:42.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 | [163 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.4" , sending back REGISTERED -orderer.example.com | [0ff 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [14f 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 180172D3060A208B9988C3A7821D70D6...ED43B93F453D936E40E406E284A986F4 -peer0.org2.example.com | [12c 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1567a872]Move state message READY -peer0.org1.example.com | [157 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.4) -orderer.example.com | [100 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [164 12-05 07:29:42.00 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 | [12d 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1567a872]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [150 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: E36D94C08E891CD267238A2155A1FAF304715213253B97A9345799726D4EE5E4 -orderer.example.com | [101 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [158 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.4 -peer1.org2.example.com | [165 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [12e 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [1567a872]Entered state ready -orderer.example.com | [102 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [166 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [14e 12-05 07:29:41.76 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 | [159 12-05 07:29:40.57 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 | [167 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [12f 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:1567a872-6bf5-4346-9327-fba9409f417e -orderer.example.com | [103 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -peer0.org1.example.com | [15a 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [152 12-05 07:29:41.76 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 | [104 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org2.example.com | [130 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1567a872]sending state message READY -peer1.org2.example.com | [168 12-05 07:29:42.00 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.4 launch seq completed -peer0.org2.example.com | [131 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1567a872]Received message READY from shim -peer1.org1.example.com | [151 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 856 bytes, Signature: 70 bytes to 172.18.0.3:7051 -orderer.example.com | [105 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [15b 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.4 -peer0.org2.example.com | [132 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1567a872]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [169 12-05 07:29:42.00 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 | [153 12-05 07:29:41.76 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.4,txid=338c4b79-7d53-4e4e-a43f-5b5241ba7434,syscc=true,proposal=0x0,canname=qscc:1.0.4 -orderer.example.com | [106 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer0.org2.example.com | [133 12-05 07:29:42.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.org2.example.com | [16a 12-05 07:29:42.00 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 | [15c 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org1.example.com | [154 12-05 07:29:41.76 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.4 is being launched -peer0.org2.example.com | [134 12-05 07:29:42.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.org1.example.com | [15d 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.4 -peer1.org2.example.com | [16b 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e5243e78]Move state message READY -orderer.example.com | [107 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer1.org1.example.com | [155 12-05 07:29:41.76 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 | [15e 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [135 12-05 07:29:42.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 | [16c 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e5243e78]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | [108 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org1.example.com | [156 12-05 07:29:41.76 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 | [15f 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | [109 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org2.example.com | [136 12-05 07:29:42.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: vscc:1.0.4 -peer0.org1.example.com | [160 12-05 07:29:40.57 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 | [157 12-05 07:29:41.76 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.4(networkid:dev,peerid:peer1.org1.example.com) -peer1.org2.example.com | [16d 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [e5243e78]Entered state ready -orderer.example.com | [10a 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [161 12-05 07:29:40.57 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 | [158 12-05 07:29:41.76 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 | [137 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1567a872]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [16e 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:e5243e78-1d98-46b9-8ab1-f132369f4fce -peer0.org1.example.com | [162 12-05 07:29:40.57 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.4 -orderer.example.com | [10b 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -peer1.org1.example.com | [159 12-05 07:29:41.76 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 | [138 12-05 07:29:42.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 | [16f 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e5243e78]sending state message READY -orderer.example.com | [10c 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [163 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.4" , sending back REGISTERED -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.4 -peer0.org2.example.com | [139 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1567a872]sendExecuteMsg trigger event INIT -orderer.example.com | [10d 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [170 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5243e78]Received message READY from shim -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | [164 12-05 07:29:40.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 | [10e 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [172 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e5243e78]Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [13a 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1567a872]Move state message INIT -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | [165 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | [171 12-05 07:29:42.00 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 | [10f 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [166 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [13b 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1567a872]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [110 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -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 | [167 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [13c 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [173 12-05 07:29:42.00 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 | [111 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -peer1.org1.example.com | [15a 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.4) lock -peer0.org2.example.com | [13d 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1567a872]sending state message INIT -peer0.org1.example.com | [168 12-05 07:29:40.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 qscc:1.0.4 launch seq completed -peer1.org2.example.com | [174 12-05 07:29:42.00 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 | [15b 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.4) lock -orderer.example.com | [112 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -peer0.org1.example.com | [169 12-05 07:29:40.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.org2.example.com | [13e 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1567a872]Received message INIT from shim -peer1.org2.example.com | [175 12-05 07:29:42.00 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.4 -peer1.org1.example.com | [15c 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.4 -orderer.example.com | [113 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -peer0.org2.example.com | [13f 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1567a872]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [176 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e5243e78]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [16a 12-05 07:29:40.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... -orderer.example.com | [114 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer1.org1.example.com | [15d 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.4) -peer0.org2.example.com | [140 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [177 12-05 07:29:42.00 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 | [16b 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3bb78f79]Move state message READY -peer0.org2.example.com | [141 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [1567a872]Received INIT, initializing chaincode -orderer.example.com | [115 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy ChannelCreationPolicy for Application -peer0.org1.example.com | [16c 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3bb78f79]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [142 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1567a872]Init get response status: 200 -peer1.org2.example.com | [178 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e5243e78]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [15e 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.4 -peer0.org2.example.com | [143 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1567a872]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [16d 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [3bb78f79]Entered state ready -orderer.example.com | [116 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [144 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1567a872]Move state message COMPLETED -peer1.org1.example.com | [15f 12-05 07:29:41.76 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 | [117 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [16e 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:3bb78f79-7308-4fc2-a4e3-a20f4f893f69 -peer1.org2.example.com | [179 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e5243e78]Move state message INIT -peer0.org2.example.com | [145 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1567a872]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [118 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org1.example.com | [160 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [16f 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3bb78f79]sending state message READY -peer1.org2.example.com | [17a 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e5243e78]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [146 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1567a872]send state message COMPLETED -orderer.example.com | [119 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [170 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3bb78f79]Received message READY from shim -peer1.org1.example.com | [161 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.4 -orderer.example.com | [11a 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [17b 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [171 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3bb78f79]Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [147 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1567a872]Received message COMPLETED from shim -orderer.example.com | [11b 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [11c 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -peer1.org2.example.com | [17c 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e5243e78]sending state message INIT -orderer.example.com | [11d 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -peer1.org1.example.com | [162 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -orderer.example.com | [11e 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -peer0.org2.example.com | [148 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1567a872]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [172 12-05 07:29:40.57 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 | [17d 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5243e78]Received message INIT from shim -orderer.example.com | [11f 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [163 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.4 -peer0.org2.example.com | [149 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1567a872-6bf5-4346-9327-fba9409f417e]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [173 12-05 07:29:40.57 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 | [17e 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e5243e78]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | [120 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [164 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [14a 12-05 07:29:42.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1567a872-6bf5-4346-9327-fba9409f417e -peer0.org1.example.com | [174 12-05 07:29:40.57 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 | [17f 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [121 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org2.example.com | [14b 12-05 07:29:42.71 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 | [175 12-05 07:29:40.57 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.4 -peer1.org1.example.com | [165 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [180 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e5243e78]Received INIT, initializing chaincode -orderer.example.com | [122 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [14c 12-05 07:29:42.71 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 | [176 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3bb78f79]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [166 12-05 07:29:41.76 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 | [181 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -orderer.example.com | [123 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [14d 12-05 07:29:42.72 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.4,txid=5b388ede-6287-4d83-885f-5fa1d578a447,syscc=true,proposal=0x0,canname=qscc:1.0.4 -peer1.org2.example.com | [182 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [177 12-05 07:29:40.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 | [167 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | [124 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [14e 12-05 07:29:42.72 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.4 is being launched -peer1.org2.example.com | [183 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5243e78]Init get response status: 200 -peer0.org1.example.com | [178 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3bb78f79]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [168 12-05 07:29:41.76 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.4 -orderer.example.com | [125 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -peer1.org2.example.com | [184 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5243e78]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [14f 12-05 07:29:42.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.org1.example.com | [179 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3bb78f79]Move state message INIT -peer0.org2.example.com | [150 12-05 07:29:42.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.org2.example.com:7052] -peer1.org1.example.com | [169 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.4" , sending back REGISTERED -peer1.org2.example.com | [185 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5243e78]Move state message COMPLETED -orderer.example.com | [126 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -peer0.org1.example.com | [17a 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3bb78f79]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [17b 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [127 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -peer0.org2.example.com | [151 12-05 07:29:42.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: qscc:1.0.4(networkid:dev,peerid:peer0.org2.example.com) -peer1.org1.example.com | [16a 12-05 07:29:41.76 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 | [186 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e5243e78]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [152 12-05 07:29:42.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.org2.example.com:7052 -orderer.example.com | [128 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer0.org1.example.com | [17c 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3bb78f79]sending state message INIT -peer1.org1.example.com | [16b 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [153 12-05 07:29:42.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 | [129 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [187 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5243e78]send state message COMPLETED -peer0.org1.example.com | [17d 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3bb78f79]Received message INIT from shim -peer1.org1.example.com | [16c 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.4 -peer1.org2.example.com | [188 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e5243e78]Received message COMPLETED from shim -orderer.example.com | [12a 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [17e 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3bb78f79]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [16d 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | [17f 12-05 07:29:40.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [189 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e5243e78]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [12b 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [16e 12-05 07:29:41.76 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.4 launch seq completed -peer1.org2.example.com | [18a 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e5243e78-1d98-46b9-8ab1-f132369f4fce]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [180 12-05 07:29:40.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [3bb78f79]Received INIT, initializing chaincode -orderer.example.com | [12c 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [16f 12-05 07:29:41.76 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 | [181 12-05 07:29:40.58 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -orderer.example.com | [12d 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [18b 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e5243e78-1d98-46b9-8ab1-f132369f4fce -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | [170 12-05 07:29:41.76 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 | [12e 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -peer0.org1.example.com | [182 12-05 07:29:40.58 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -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 | [171 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [338c4b79]Move state message READY -orderer.example.com | [12f 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -peer1.org2.example.com | [18c 12-05 07:29:42.00 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 | [154 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.4) lock -peer0.org1.example.com | [183 12-05 07:29:40.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3bb78f79]Init get response status: 200 -peer1.org1.example.com | [172 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [338c4b79]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [18d 12-05 07:29:42.00 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 | [155 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.4) lock -peer1.org2.example.com | [18e 12-05 07:29:42.00 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess -peer1.org1.example.com | [173 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [338c4b79]Entered state ready -peer0.org1.example.com | [184 12-05 07:29:40.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3bb78f79]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [174 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:338c4b79-7d53-4e4e-a43f-5b5241ba7434 -peer1.org2.example.com | [18f 12-05 07:29:42.00 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 | [175 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [338c4b79]sending state message READY -peer1.org2.example.com | [190 12-05 07:29:42.00 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] -peer0.org1.example.com | [185 12-05 07:29:40.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3bb78f79]Move state message COMPLETED -peer1.org2.example.com | [191 12-05 07:29:42.00 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 | [176 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [338c4b79]Received message READY from shim -peer0.org2.example.com | [156 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.4 -orderer.example.com | [130 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -peer1.org1.example.com | [177 12-05 07:29:41.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [338c4b79]Handling ChaincodeMessage of type: READY(state:established) -peer0.org1.example.com | [186 12-05 07:29:40.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3bb78f79]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [192 12-05 07:29:42.00 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 | [178 12-05 07:29:41.76 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 | [157 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.4) -orderer.example.com | [131 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -peer0.org1.example.com | [187 12-05 07:29:40.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3bb78f79]send state message COMPLETED -peer0.org2.example.com | [158 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.4 -peer1.org2.example.com | [193 12-05 07:29:42.00 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 | [188 12-05 07:29:40.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3bb78f79]Received message COMPLETED from shim -peer1.org1.example.com | [179 12-05 07:29:41.76 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 | [159 12-05 07:29:42.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 | [17a 12-05 07:29:41.76 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 | [15a 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [189 12-05 07:29:40.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3bb78f79]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [132 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [17b 12-05 07:29:41.76 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.4 -peer1.org2.example.com | [194 12-05 07:29:42.00 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.org2.example.com | [15b 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.4 -peer0.org1.example.com | [18a 12-05 07:29:40.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3bb78f79-7308-4fc2-a4e3-a20f4f893f69]HandleMessage- COMPLETED. Notify -orderer.example.com | [133 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [17c 12-05 07:29:41.77 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [338c4b79]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [18b 12-05 07:29:40.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3bb78f79-7308-4fc2-a4e3-a20f4f893f69 -peer0.org2.example.com | [15c 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org2.example.com | [195 12-05 07:29:42.00 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 | [134 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -peer1.org1.example.com | [17d 12-05 07:29:41.77 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 | [196 12-05 07:29:42.00 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.org2.example.com | [15d 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.4 -peer0.org1.example.com | [18c 12-05 07:29:40.58 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 | [17e 12-05 07:29:41.77 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [338c4b79]sendExecuteMsg trigger event INIT -orderer.example.com | [135 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -peer0.org2.example.com | [15e 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [17f 12-05 07:29:41.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [338c4b79]Move state message INIT -peer1.org2.example.com | [197 12-05 07:29:42.00 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 | [136 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -peer0.org1.example.com | [18d 12-05 07:29:40.58 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 | [15f 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [198 12-05 07:29:42.00 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 | [137 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -peer1.org1.example.com | [180 12-05 07:29:41.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [338c4b79]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [18e 12-05 07:29:40.58 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess -peer1.org2.example.com | [199 12-05 07:29:42.00 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 | [160 12-05 07:29:42.72 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 | [18f 12-05 07:29:40.58 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] -orderer.example.com | [138 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [181 12-05 07:29:41.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [182 12-05 07:29:41.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [338c4b79]sending state message INIT -peer0.org1.example.com | [190 12-05 07:29:40.58 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] -peer1.org2.example.com | [19a 12-05 07:29:42.00 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 | [139 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org2.example.com | [161 12-05 07:29:42.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 | [19b 12-05 07:29:42.00 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 | [191 12-05 07:29:40.58 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 | [162 12-05 07:29:42.72 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.4 -peer1.org1.example.com | [183 12-05 07:29:41.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [338c4b79]Received message INIT from shim -orderer.example.com | [13a 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -peer1.org2.example.com | [19c 12-05 07:29:42.00 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 | [184 12-05 07:29:41.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [338c4b79]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [19d 12-05 07:29:42.00 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 | [19e 12-05 07:29:42.00 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 | [19f 12-05 07:29:42.00 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 | [192 12-05 07:29:40.58 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 | [1a0 12-05 07:29:42.00 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 | [13b 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [163 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.4" , sending back REGISTERED -peer1.org1.example.com | [185 12-05 07:29:41.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [193 12-05 07:29:40.58 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.org2.example.com | [1a1 12-05 07:29:42.00 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 | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [1a2 12-05 07:29:42.01 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 | [194 12-05 07:29:40.58 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.org2.example.com | [164 12-05 07:29:42.72 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [1a3 12-05 07:29:44.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org1.example.com | [195 12-05 07:29:40.58 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 | [1a4 12-05 07:29:44.18 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42148aff0 -peer1.org1.example.com | [186 12-05 07:29:41.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [338c4b79]Received INIT, initializing chaincode -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [196 12-05 07:29:40.58 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 | [1a5 12-05 07:29:44.18 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 | [187 12-05 07:29:41.77 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org2.example.com | [1a6 12-05 07:29:44.18 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [165 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | [197 12-05 07:29:40.58 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' -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -peer1.org1.example.com | [188 12-05 07:29:41.77 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [1a7 12-05 07:29:44.18 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} -peer0.org2.example.com | [166 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [189 12-05 07:29:41.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [338c4b79]Init get response status: 200 -peer0.org1.example.com | [198 12-05 07:29:40.58 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 | [1a8 12-05 07:29:44.18 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 | [167 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer1.org1.example.com | [18a 12-05 07:29:41.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [338c4b79]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [1a9 12-05 07:29:44.18 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [199 12-05 07:29:40.58 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 | [18b 12-05 07:29:41.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [338c4b79]Move state message COMPLETED -peer1.org2.example.com | [1aa 12-05 07:29:44.18 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421438c30, header 0xc42148b080 -peer0.org2.example.com | [168 12-05 07:29:42.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 qscc:1.0.4 launch seq completed -peer0.org1.example.com | [19a 12-05 07:29:40.58 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 | [18c 12-05 07:29:41.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [338c4b79]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [1ab 12-05 07:29:44.18 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 | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [19b 12-05 07:29:40.58 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 | [169 12-05 07:29:42.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 -peer1.org1.example.com | [18d 12-05 07:29:41.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [338c4b79]send state message COMPLETED -peer1.org2.example.com | [1ac 12-05 07:29:44.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 0a984292e034f2e9e897f8be06e76943c6b84dadb9925b8d999261d096f4b9da -peer0.org1.example.com | [19c 12-05 07:29:40.58 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 | [18e 12-05 07:29:41.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [338c4b79]Received message COMPLETED from shim -peer1.org2.example.com | [1ad 12-05 07:29:44.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 0a984292e034f2e9e897f8be06e76943c6b84dadb9925b8d999261d096f4b9da channel id: -orderer.example.com | BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 -peer0.org2.example.com | [16a 12-05 07:29:42.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... -peer1.org1.example.com | [18f 12-05 07:29:41.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [338c4b79]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [1ae 12-05 07:29:44.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 0a984292e034f2e9e897f8be06e76943c6b84dadb9925b8d999261d096f4b9da channel id: version: 1.0.4 -orderer.example.com | +/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [19d 12-05 07:29:40.58 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 | [190 12-05 07:29:41.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [338c4b79-7d53-4e4e-a43f-5b5241ba7434]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [16b 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b388ede]Move state message READY -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN -peer1.org2.example.com | [1af 12-05 07:29:44.18 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.4,txid=0a984292e034f2e9e897f8be06e76943c6b84dadb9925b8d999261d096f4b9da,syscc=true,proposal=0xc421438c30,canname=cscc:1.0.4 -peer1.org1.example.com | [191 12-05 07:29:41.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:338c4b79-7d53-4e4e-a43f-5b5241ba7434 -peer0.org1.example.com | [19e 12-05 07:29:40.58 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.org1.example.com | [192 12-05 07:29:41.77 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 | wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 -peer0.org2.example.com | [16c 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b388ede]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [1b0 12-05 07:29:44.18 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.4 -peer1.org1.example.com | [193 12-05 07:29:41.77 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.org1.example.com | [19f 12-05 07:29:40.58 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 | [1b1 12-05 07:29:44.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [16d 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [5b388ede]Entered state ready -orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL -peer1.org1.example.com | [194 12-05 07:29:41.77 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess -peer0.org1.example.com | [1a0 12-05 07:29:40.58 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 | [1b2 12-05 07:29:44.18 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.4 -peer1.org1.example.com | [195 12-05 07:29:41.77 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] -orderer.example.com | liPpNxLSsBU= -peer0.org1.example.com | [1a1 12-05 07:29:40.58 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 | [16e 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:5b388ede-6287-4d83-885f-5fa1d578a447 -peer1.org2.example.com | [1b3 12-05 07:29:44.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0a984292]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [196 12-05 07:29:41.77 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 | [16f 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b388ede]sending state message READY -peer0.org1.example.com | [1a2 12-05 07:29:40.58 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.org1.example.com | [197 12-05 07:29:41.77 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.org2.example.com | [1b4 12-05 07:29:44.18 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 | [198 12-05 07:29:41.77 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 | [199 12-05 07:29:41.77 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 | [170 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b388ede]Received message READY from shim -peer1.org1.example.com | [19a 12-05 07:29:41.77 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 | -----END CERTIFICATE----- -peer0.org1.example.com | [1a3 12-05 07:29:43.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org2.example.com | [1b5 12-05 07:29:44.18 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 | [19b 12-05 07:29:41.77 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 | [171 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5b388ede]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | [13c 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [1a4 12-05 07:29:43.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4216238f0 -peer1.org1.example.com | [19c 12-05 07:29:41.77 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 | [1b6 12-05 07:29:44.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0a984292]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [172 12-05 07:29:42.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 -peer1.org1.example.com | [19d 12-05 07:29:41.77 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 | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [1a5 12-05 07:29:43.55 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 | [173 12-05 07:29:42.72 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 | [1b7 12-05 07:29:44.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a984292]Move state message TRANSACTION -peer1.org1.example.com | [19e 12-05 07:29:41.77 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [1b8 12-05 07:29:44.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0a984292]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [19f 12-05 07:29:41.77 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 | [1a6 12-05 07:29:43.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [174 12-05 07:29:42.72 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 | [1b9 12-05 07:29:44.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [1a0 12-05 07:29:41.77 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.org1.example.com | [1a7 12-05 07:29:43.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -peer0.org2.example.com | [175 12-05 07:29:42.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: qscc:1.0.4 -peer1.org1.example.com | [1a1 12-05 07:29:41.77 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 | [1ba 12-05 07:29:44.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a984292]sending state message TRANSACTION -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -peer0.org2.example.com | [176 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5b388ede]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [1a2 12-05 07:29:41.77 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 | [1bb 12-05 07:29:44.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a984292]Received message TRANSACTION from shim -peer0.org1.example.com | [1a8 12-05 07:29:43.55 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 | [177 12-05 07:29:42.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... -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [1a3 12-05 07:29:41.77 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 | [178 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5b388ede]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [1bc 12-05 07:29:44.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0a984292]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [1a4 12-05 07:29:41.77 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 | [179 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b388ede]Move state message INIT -peer0.org1.example.com | [1a9 12-05 07:29:43.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 -peer1.org1.example.com | [1a5 12-05 07:29:41.77 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 | [1bd 12-05 07:29:44.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0a984292]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [17a 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b388ede]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [1be 12-05 07:29:44.18 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -peer0.org2.example.com | [17b 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [1aa 12-05 07:29:43.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4215bfe50, header 0xc421623980 -orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G -peer0.org2.example.com | [17c 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b388ede]sending state message INIT -peer0.org1.example.com | [1ab 12-05 07:29:43.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:"cscc" -peer1.org1.example.com | [1a6 12-05 07:29:41.77 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 | [1bf 12-05 07:29:44.19 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h -peer0.org2.example.com | [17d 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b388ede]Received message INIT from shim -peer1.org1.example.com | [1a7 12-05 07:29:41.77 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 | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA -peer0.org2.example.com | [17e 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5b388ede]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [1c0 12-05 07:29:44.19 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 | [1a8 12-05 07:29:41.77 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 | [1ac 12-05 07:29:43.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: ccd54f80eb39c559c728c92f6478c606a3e76f14c7038955d5470018f4b4ada1 -peer0.org2.example.com | [17f 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [1c1 12-05 07:29:44.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO No info about blocks file found in the db. -orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx -peer0.org1.example.com | [1ad 12-05 07:29:43.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: ccd54f80eb39c559c728c92f6478c606a3e76f14c7038955d5470018f4b4ada1 channel id: -peer0.org2.example.com | [180 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [5b388ede]Received INIT, initializing chaincode -peer1.org1.example.com | [1a9 12-05 07:29:43.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org2.example.com | This could happen if this is the first time the ledger is constructed or the index is dropped. -peer0.org2.example.com | [181 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -orderer.example.com | zekLSULI9G2UUYA77A== -peer0.org1.example.com | [1ae 12-05 07:29:43.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: ccd54f80eb39c559c728c92f6478c606a3e76f14c7038955d5470018f4b4ada1 channel id: version: 1.0.4 -peer1.org2.example.com | Scanning blocks dir for the latest info -peer1.org1.example.com | [1aa 12-05 07:29:43.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42161fb90 -peer0.org2.example.com | [182 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [1c2 12-05 07:29:44.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -peer1.org1.example.com | [1ab 12-05 07:29:43.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org2.example.com | [1c3 12-05 07:29:44.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -orderer.example.com | [13d 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [183 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b388ede]Init get response status: 200 -peer0.org1.example.com | [1af 12-05 07:29:43.55 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.4,txid=ccd54f80eb39c559c728c92f6478c606a3e76f14c7038955d5470018f4b4ada1,syscc=true,proposal=0xc4215bfe50,canname=cscc:1.0.4 -orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [1c4 12-05 07:29:44.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -peer1.org1.example.com | [1ac 12-05 07:29:43.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [184 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b388ede]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [1b0 12-05 07:29:43.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) : cscc:1.0.4 -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [1c5 12-05 07:29:44.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -peer0.org2.example.com | [185 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b388ede]Move state message COMPLETED -peer1.org1.example.com | [1ad 12-05 07:29:43.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -peer0.org1.example.com | [1b1 12-05 07:29:43.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 | [1c6 12-05 07:29:44.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> INFO No block file found -peer0.org2.example.com | [186 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5b388ede]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [1ae 12-05 07:29:43.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 | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [1b2 12-05 07:29:43.55 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.4 -peer0.org2.example.com | [187 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b388ede]send state message COMPLETED -peer1.org1.example.com | [1af 12-05 07:29:43.79 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [1c7 12-05 07:29:44.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc421596780)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -peer0.org1.example.com | [1b3 12-05 07:29:43.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ccd54f80]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -peer0.org2.example.com | [188 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b388ede]Received message COMPLETED from shim -peer1.org2.example.com | [1c8 12-05 07:29:44.19 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.org1.example.com | [1b4 12-05 07:29:43.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... -peer0.org2.example.com | [189 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b388ede]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [1b0 12-05 07:29:43.79 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42166c4b0, header 0xc42161fc20 -peer1.org2.example.com | [1c9 12-05 07:29:44.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex -> INFO No block indexed, Last block present in block files=[0] -peer0.org2.example.com | [18a 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b388ede-6287-4d83-885f-5fa1d578a447]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [1b5 12-05 07:29:43.55 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 | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [18b 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5b388ede-6287-4d83-885f-5fa1d578a447 -peer1.org1.example.com | [1b1 12-05 07:29:43.79 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 | [1ca 12-05 07:29:44.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex -> INFO Start building index from block [0] -peer0.org1.example.com | [1b6 12-05 07:29:43.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ccd54f80]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [18c 12-05 07:29:42.72 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 | [1b2 12-05 07:29:43.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: b816213cae416f4d02e9341f9b82424b94ade40c6fdaa127a10b26c7b710e753 -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [18d 12-05 07:29:42.72 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.org1.example.com | [1b7 12-05 07:29:43.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ccd54f80]Move state message TRANSACTION -peer1.org2.example.com | [1cb 12-05 07:29:44.19 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 | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 -peer1.org1.example.com | [1b3 12-05 07:29:43.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: b816213cae416f4d02e9341f9b82424b94ade40c6fdaa127a10b26c7b710e753 channel id: -peer0.org2.example.com | [18e 12-05 07:29:42.72 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess -peer0.org1.example.com | [1b8 12-05 07:29:43.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ccd54f80]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G -peer0.org2.example.com | [18f 12-05 07:29:42.72 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] -peer1.org2.example.com | [1cc 12-05 07:29:44.19 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 | [1b4 12-05 07:29:43.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b816213cae416f4d02e9341f9b82424b94ade40c6fdaa127a10b26c7b710e753 channel id: version: 1.0.4 -peer0.org2.example.com | [190 12-05 07:29:42.72 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.org1.example.com | [1b9 12-05 07:29:43.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h -peer0.org2.example.com | [191 12-05 07:29:42.72 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 | [1b5 12-05 07:29:43.79 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.4,txid=b816213cae416f4d02e9341f9b82424b94ade40c6fdaa127a10b26c7b710e753,syscc=true,proposal=0xc42166c4b0,canname=cscc:1.0.4 -peer1.org2.example.com | [1cd 12-05 07:29:44.19 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 | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA -peer1.org1.example.com | [1b6 12-05 07:29:43.79 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.4 -peer0.org2.example.com | [192 12-05 07:29:42.72 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.org1.example.com | [1ba 12-05 07:29:43.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ccd54f80]sending state message TRANSACTION -peer1.org2.example.com | [1ce 12-05 07:29:44.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex -> INFO Finished building index. Last block indexed [0] -orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx -peer0.org1.example.com | [1bb 12-05 07:29:43.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ccd54f80]Received message TRANSACTION from shim -peer0.org2.example.com | [193 12-05 07:29:42.72 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 | [1b7 12-05 07:29:43.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [1cf 12-05 07:29:44.19 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.org1.example.com | [1bc 12-05 07:29:43.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ccd54f80]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | zekLSULI9G2UUYA77A== -peer0.org2.example.com | [194 12-05 07:29:42.72 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 | [1d0 12-05 07:29:44.19 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)(0xc420220580), Data:(*common.BlockData)(0xc42156a060), Metadata:(*common.BlockMetadata)(0xc42156a0a0)}, doMVCCValidation=true -peer1.org1.example.com | [1b8 12-05 07:29:43.79 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.4 -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [195 12-05 07:29:42.72 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 | [1d1 12-05 07:29:44.19 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 | [1bd 12-05 07:29:43.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ccd54f80]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [1b9 12-05 07:29:43.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b816213c]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [196 12-05 07:29:42.72 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 | [1be 12-05 07:29:43.56 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -peer1.org2.example.com | [1d2 12-05 07:29:44.19 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 | [13e 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | [1ba 12-05 07:29:43.79 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 | [197 12-05 07:29:42.72 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 | [1bf 12-05 07:29:43.56 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -orderer.example.com | [13f 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org2.example.com | [198 12-05 07:29:42.72 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 | [1c0 12-05 07:29:43.56 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.org2.example.com | [1d3 12-05 07:29:44.20 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{0xf0, 0xbf, 0x75, 0xab, 0xa3, 0xf5, 0x13, 0xfa, 0xa, 0x7b, 0xfc, 0x92, 0x5, 0x7c, 0x72, 0x12, 0x4, 0x8e, 0x2b, 0x4e, 0x50, 0x71, 0x5e, 0x78, 0xb3, 0xc7, 0xe9, 0x7e, 0x1f, 0xb9, 0x4, 0x91} txOffsets= -orderer.example.com | [140 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | [199 12-05 07:29:42.72 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 | [1c1 12-05 07:29:43.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO No info about blocks file found in the db. -peer1.org1.example.com | [1bb 12-05 07:29:43.79 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 | txId= locPointer=offset=38, bytesLength=11901 -orderer.example.com | [141 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | This could happen if this is the first time the ledger is constructed or the index is dropped. -peer0.org2.example.com | [19a 12-05 07:29:42.72 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 | [1bc 12-05 07:29:43.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b816213c]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | ] -orderer.example.com | [142 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -peer0.org1.example.com | Scanning blocks dir for the latest info -peer0.org2.example.com | [19b 12-05 07:29:42.72 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 | [1bd 12-05 07:29:43.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b816213c]Move state message TRANSACTION -peer0.org1.example.com | [1c2 12-05 07:29:43.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -peer1.org1.example.com | [1be 12-05 07:29:43.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b816213c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [19c 12-05 07:29:42.72 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 | [143 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [1d4 12-05 07:29:44.20 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=11901] for tx ID: [] to index -peer0.org1.example.com | [1c3 12-05 07:29:43.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [19d 12-05 07:29:42.72 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 | [1d5 12-05 07:29:44.20 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=11901] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [1c4 12-05 07:29:43.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [1bf 12-05 07:29:43.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [1d6 12-05 07:29:44.20 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=[11945], isChainEmpty=[false], lastBlockNumber=[0] -peer0.org1.example.com | [1c5 12-05 07:29:43.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [1c0 12-05 07:29:43.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b816213c]sending state message TRANSACTION -peer0.org2.example.com | [19e 12-05 07:29:42.72 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 | [1c6 12-05 07:29:43.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> INFO No block file found -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -peer0.org2.example.com | [19f 12-05 07:29:42.72 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 | [1d7 12-05 07:29:44.20 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 | [1c1 12-05 07:29:43.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b816213c]Received message TRANSACTION from shim -peer0.org1.example.com | [1c7 12-05 07:29:43.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4216fcb20)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [1a0 12-05 07:29:42.73 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 | [1d8 12-05 07:29:44.20 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.org1.example.com | [1c8 12-05 07:29:43.56 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 | [1c2 12-05 07:29:43.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b816213c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | [1c9 12-05 07:29:43.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex -> INFO No block indexed, Last block present in block files=[0] -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org2.example.com | [1a1 12-05 07:29:42.73 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 | [1c3 12-05 07:29:43.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b816213c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [1ca 12-05 07:29:43.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex -> INFO Start building index from block [0] -orderer.example.com | BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W -peer1.org1.example.com | [1c4 12-05 07:29:43.79 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -peer1.org2.example.com | [1d9 12-05 07:29:44.20 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 | [1cb 12-05 07:29:43.56 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 | RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org2.example.com | [1a2 12-05 07:29:42.73 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.org1.example.com | [1c5 12-05 07:29:43.79 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -peer1.org2.example.com | [1da 12-05 07:29:44.20 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 | [1cc 12-05 07:29:43.57 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 | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ -peer1.org2.example.com | [1db 12-05 07:29:44.20 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 | [1c6 12-05 07:29:43.79 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 | [1cd 12-05 07:29:43.57 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 | [1a3 12-05 07:29:43.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc -peer1.org2.example.com | [1dc 12-05 07:29:44.20 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 | [1c7 12-05 07:29:43.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO No info about blocks file found in the db. -peer0.org1.example.com | [1ce 12-05 07:29:43.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex -> INFO Finished building index. Last block indexed [0] -orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq -peer0.org2.example.com | [1a4 12-05 07:29:43.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42148d410 -peer0.org2.example.com | [1a5 12-05 07:29:43.99 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 12-05 07:29:43.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [1a7 12-05 07:29:43.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} -peer0.org2.example.com | [1a8 12-05 07:29:43.99 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 | [1a9 12-05 07:29:43.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [1aa 12-05 07:29:43.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42032d5e0, header 0xc42148d4a0 -peer0.org2.example.com | [1ab 12-05 07:29:43.99 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 | This could happen if this is the first time the ledger is constructed or the index is dropped. -peer1.org1.example.com | Scanning blocks dir for the latest info -peer1.org1.example.com | [1c8 12-05 07:29:43.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -peer0.org1.example.com | [1cf 12-05 07:29:43.57 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 | [1ac 12-05 07:29:43.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 8ca7684f908468e70cf1ae5fa54728266e1d526797973b24de7bfc78729aa7fa -orderer.example.com | VA7fF8MfGA== -peer1.org2.example.com | [1dd 12-05 07:29:44.20 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.org1.example.com | [1c9 12-05 07:29:43.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -peer0.org1.example.com | [1d0 12-05 07:29:43.57 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)(0xc421587900), Data:(*common.BlockData)(0xc4216ac8c0), Metadata:(*common.BlockMetadata)(0xc4216ac900)}, doMVCCValidation=true -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [1ad 12-05 07:29:43.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 8ca7684f908468e70cf1ae5fa54728266e1d526797973b24de7bfc78729aa7fa channel id: -peer1.org2.example.com | [1de 12-05 07:29:44.21 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer1.org1.example.com | [1ca 12-05 07:29:43.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -peer0.org1.example.com | [1d1 12-05 07:29:43.57 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 | [144 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [1ae 12-05 07:29:43.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 8ca7684f908468e70cf1ae5fa54728266e1d526797973b24de7bfc78729aa7fa channel id: version: 1.0.4 -peer1.org2.example.com | [1df 12-05 07:29:44.21 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 | [1cb 12-05 07:29:43.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -peer0.org1.example.com | [1d2 12-05 07:29:43.57 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 | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [1af 12-05 07:29:43.99 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.4,txid=8ca7684f908468e70cf1ae5fa54728266e1d526797973b24de7bfc78729aa7fa,syscc=true,proposal=0xc42032d5e0,canname=cscc:1.0.4 -peer1.org1.example.com | [1cc 12-05 07:29:43.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> INFO No block file found -peer1.org2.example.com | [1e0 12-05 07:29:44.21 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 | [1d3 12-05 07:29:43.57 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{0xf0, 0xbf, 0x75, 0xab, 0xa3, 0xf5, 0x13, 0xfa, 0xa, 0x7b, 0xfc, 0x92, 0x5, 0x7c, 0x72, 0x12, 0x4, 0x8e, 0x2b, 0x4e, 0x50, 0x71, 0x5e, 0x78, 0xb3, 0xc7, 0xe9, 0x7e, 0x1f, 0xb9, 0x4, 0x91} txOffsets= -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [1b0 12-05 07:29:43.99 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.4 -peer1.org2.example.com | [1e1 12-05 07:29:44.21 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 | txId= locPointer=offset=38, bytesLength=11901 -peer1.org1.example.com | [1cd 12-05 07:29:43.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4216dba00)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | [1b1 12-05 07:29:43.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | ] -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -peer1.org2.example.com | [1e2 12-05 07:29:44.21 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [1ce 12-05 07:29:43.80 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 | [1b2 12-05 07:29:43.99 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.4 -peer0.org1.example.com | [1d4 12-05 07:29:43.57 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=11901] for tx ID: [] to index -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | [1e3 12-05 07:29:44.21 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [1d5 12-05 07:29:43.57 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=11901] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org2.example.com | [1b3 12-05 07:29:43.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8ca7684f]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer1.org2.example.com | [1e4 12-05 07:29:44.21 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 | [1b4 12-05 07:29:43.99 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 | [1cf 12-05 07:29:43.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex -> INFO No block indexed, Last block present in block files=[0] -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -peer1.org2.example.com | [1e5 12-05 07:29:44.21 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 | [1d6 12-05 07:29:43.57 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=[11945], isChainEmpty=[false], lastBlockNumber=[0] -orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -peer1.org2.example.com | [1e6 12-05 07:29:44.21 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 | [1b5 12-05 07:29:44.00 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 | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -peer1.org1.example.com | [1d0 12-05 07:29:43.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex -> INFO Start building index from block [0] -peer0.org1.example.com | [1d7 12-05 07:29:43.57 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.org2.example.com | [1e7 12-05 07:29:44.21 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 | [1b6 12-05 07:29:44.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8ca7684f]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -peer0.org1.example.com | [1d8 12-05 07:29:43.57 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 | [1d1 12-05 07:29:43.80 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 | [1b7 12-05 07:29:44.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ca7684f]Move state message TRANSACTION -orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -peer1.org2.example.com | [1e8 12-05 07:29:44.21 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 | [1d9 12-05 07:29:43.57 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 | [1d2 12-05 07:29:43.80 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 | Xk1Xy2C2aVQjOcr++w== -peer0.org2.example.com | [1b8 12-05 07:29:44.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8ca7684f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [1e9 12-05 07:29:44.21 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 | [1da 12-05 07:29:43.57 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 | -----END CERTIFICATE----- -peer0.org2.example.com | [1b9 12-05 07:29:44.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [1ea 12-05 07:29:44.21 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 | [145 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [1d3 12-05 07:29:43.80 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 | [1db 12-05 07:29:43.57 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 | [1ba 12-05 07:29:44.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ca7684f]sending state message TRANSACTION -orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [1dc 12-05 07:29:43.57 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 | [1d4 12-05 07:29:43.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex -> INFO Finished building index. Last block indexed [0] -peer0.org1.example.com | [1dd 12-05 07:29:43.58 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.org2.example.com | [1bb 12-05 07:29:44.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ca7684f]Received message TRANSACTION from shim -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [1de 12-05 07:29:43.58 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer1.org1.example.com | [1d5 12-05 07:29:43.80 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.org2.example.com | [1eb 12-05 07:29:44.21 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 | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [1df 12-05 07:29:43.58 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -peer0.org2.example.com | [1bc 12-05 07:29:44.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8ca7684f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [1e0 12-05 07:29:43.58 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 | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | [1d6 12-05 07:29:43.80 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)(0xc4216aa540), Data:(*common.BlockData)(0xc4216d4760), Metadata:(*common.BlockMetadata)(0xc4216d47a0)}, doMVCCValidation=true -peer0.org1.example.com | [1e1 12-05 07:29:43.58 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 | [1bd 12-05 07:29:44.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8ca7684f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer1.org2.example.com | [1ec 12-05 07:29:44.21 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 | [1e2 12-05 07:29:43.58 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 | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -peer1.org1.example.com | [1d7 12-05 07:29:43.80 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 | [1be 12-05 07:29:44.00 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -peer0.org1.example.com | [1e3 12-05 07:29:43.58 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 | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -peer1.org2.example.com | [1ed 12-05 07:29:44.21 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.org1.example.com | [1e4 12-05 07:29:43.58 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 | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -peer1.org1.example.com | [1d8 12-05 07:29:43.80 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 | [1ee 12-05 07:29:44.21 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 | [1bf 12-05 07:29:44.00 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -peer0.org1.example.com | [1e5 12-05 07:29:43.58 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 | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -peer0.org2.example.com | [1c0 12-05 07:29:44.00 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.org2.example.com | [1ef 12-05 07:29:44.21 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 | [1d9 12-05 07:29:43.80 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{0xf0, 0xbf, 0x75, 0xab, 0xa3, 0xf5, 0x13, 0xfa, 0xa, 0x7b, 0xfc, 0x92, 0x5, 0x7c, 0x72, 0x12, 0x4, 0x8e, 0x2b, 0x4e, 0x50, 0x71, 0x5e, 0x78, 0xb3, 0xc7, 0xe9, 0x7e, 0x1f, 0xb9, 0x4, 0x91} txOffsets= -peer0.org1.example.com | [1e6 12-05 07:29:43.58 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 | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -peer1.org2.example.com | [1f0 12-05 07:29:44.21 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 | txId= locPointer=offset=38, bytesLength=11901 -peer0.org2.example.com | [1c1 12-05 07:29:44.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO No info about blocks file found in the db. -peer0.org1.example.com | [1e7 12-05 07:29:43.58 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 | Xk1Xy2C2aVQjOcr++w== -peer1.org1.example.com | ] -peer1.org2.example.com | [1f1 12-05 07:29:44.21 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 | This could happen if this is the first time the ledger is constructed or the index is dropped. -peer0.org1.example.com | [1e8 12-05 07:29:43.58 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 | -----END CERTIFICATE----- -peer1.org2.example.com | [1f2 12-05 07:29:44.21 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 | [1da 12-05 07:29:43.80 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=11901] for tx ID: [] to index -peer0.org1.example.com | [1e9 12-05 07:29:43.58 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 -orderer.example.com | [146 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer1.org2.example.com | [1f3 12-05 07:29:44.21 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 | [1db 12-05 07:29:43.80 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=11901] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [1ea 12-05 07:29:43.58 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 | [147 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org2.example.com | Scanning blocks dir for the latest info -peer1.org2.example.com | [1f4 12-05 07:29:44.21 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 | [1eb 12-05 07:29:43.58 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 | [148 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [1ec 12-05 07:29:43.58 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 | [149 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -peer1.org1.example.com | [1dc 12-05 07:29:43.81 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=[11945], isChainEmpty=[false], lastBlockNumber=[0] -peer0.org1.example.com | [1ed 12-05 07:29:43.58 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 | [1c2 12-05 07:29:44.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -peer1.org2.example.com | [1f5 12-05 07:29:44.21 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 | [1ee 12-05 07:29:43.58 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.org2.example.com | [1c3 12-05 07:29:44.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -peer1.org1.example.com | [1dd 12-05 07:29:43.81 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 | [14a 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [1ef 12-05 07:29:43.58 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 | [1f6 12-05 07:29:44.21 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 | [1c4 12-05 07:29:44.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [1f0 12-05 07:29:43.58 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 | [1de 12-05 07:29:43.81 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 | [1f7 12-05 07:29:44.21 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [1c5 12-05 07:29:44.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -peer0.org1.example.com | [1f1 12-05 07:29:43.58 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 | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer1.org1.example.com | [1df 12-05 07:29:43.81 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 | [1c6 12-05 07:29:44.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> INFO No block file found -peer1.org2.example.com | [1f8 12-05 07:29:44.21 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.org1.example.com | [1e0 12-05 07:29:43.81 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 | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV -peer0.org1.example.com | [1f2 12-05 07:29:43.58 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 | [1c7 12-05 07:29:44.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4215b5760)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -peer1.org1.example.com | [1e1 12-05 07:29:43.81 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 | [1f3 12-05 07:29:43.58 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 | [1f9 12-05 07:29:44.21 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 | [1c8 12-05 07:29:44.01 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.org1.example.com | [1f4 12-05 07:29:43.58 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 | [1e2 12-05 07:29:43.81 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 | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [1f5 12-05 07:29:43.58 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 | [1c9 12-05 07:29:44.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex -> INFO No block indexed, Last block present in block files=[0] -peer1.org2.example.com | [1fa 12-05 07:29:44.21 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.org1.example.com | [1e3 12-05 07:29:43.81 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 | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer0.org1.example.com | [1f6 12-05 07:29:43.58 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 | [1e4 12-05 07:29:43.81 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer0.org2.example.com | [1ca 12-05 07:29:44.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex -> INFO Start building index from block [0] -peer1.org2.example.com | [1fb 12-05 07:29:44.21 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.org1.example.com | [1f7 12-05 07:29:43.58 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 | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR -peer1.org1.example.com | [1e5 12-05 07:29:43.81 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 | [1cb 12-05 07:29:44.01 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.org2.example.com | [1fc 12-05 07:29:44.21 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 | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w -peer0.org2.example.com | [1cc 12-05 07:29:44.01 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 | [1f8 12-05 07:29:43.58 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.org1.example.com | [1e6 12-05 07:29:43.81 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 | [1fd 12-05 07:29:44.21 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 | [1cd 12-05 07:29:44.01 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 | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer0.org1.example.com | [1f9 12-05 07:29:43.58 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.org1.example.com | [1e7 12-05 07:29:43.81 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 | [1fe 12-05 07:29:44.21 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 | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK -peer0.org2.example.com | [1ce 12-05 07:29:44.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex -> INFO Finished building index. Last block indexed [0] -peer0.org1.example.com | [1fa 12-05 07:29:43.58 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 | [1ff 12-05 07:29:44.21 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 | [1e8 12-05 07:29:43.81 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 | [200 12-05 07:29:44.21 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 | [1cf 12-05 07:29:44.01 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.org1.example.com | [1fb 12-05 07:29:43.58 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 | [201 12-05 07:29:44.21 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 | [1e9 12-05 07:29:43.81 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 | [1d0 12-05 07:29:44.01 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)(0xc42036d180), Data:(*common.BlockData)(0xc4215a2400), Metadata:(*common.BlockMetadata)(0xc4215a2440)}, doMVCCValidation=true -orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf -peer0.org1.example.com | [1fc 12-05 07:29:43.58 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 | [202 12-05 07:29:44.21 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 | [1ea 12-05 07:29:43.81 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 | [1d1 12-05 07:29:44.01 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 | [1fd 12-05 07:29:43.58 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 | [203 12-05 07:29:44.21 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 | [1eb 12-05 07:29:43.81 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.org2.example.com | [1d2 12-05 07:29:44.01 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 | [1fe 12-05 07:29:43.58 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 | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= -peer0.org2.example.com | [1d3 12-05 07:29:44.01 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{0xf0, 0xbf, 0x75, 0xab, 0xa3, 0xf5, 0x13, 0xfa, 0xa, 0x7b, 0xfc, 0x92, 0x5, 0x7c, 0x72, 0x12, 0x4, 0x8e, 0x2b, 0x4e, 0x50, 0x71, 0x5e, 0x78, 0xb3, 0xc7, 0xe9, 0x7e, 0x1f, 0xb9, 0x4, 0x91} txOffsets= -peer0.org1.example.com | [1ff 12-05 07:29:43.58 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 | [1ec 12-05 07:29:43.81 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 | -----END CERTIFICATE----- -peer1.org2.example.com | [204 12-05 07:29:44.21 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 | txId= locPointer=offset=38, bytesLength=11901 -peer0.org1.example.com | [200 12-05 07:29:43.58 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 | [205 12-05 07:29:44.21 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 | [1ed 12-05 07:29:43.81 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 | [201 12-05 07:29:43.58 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 | ] -orderer.example.com | [14b 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [202 12-05 07:29:43.58 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 | [206 12-05 07:29:44.21 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 | [1ee 12-05 07:29:43.81 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 | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -peer0.org2.example.com | [1d4 12-05 07:29:44.01 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=11901] for tx ID: [] to index -peer1.org2.example.com | [207 12-05 07:29:44.21 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 | [203 12-05 07:29:43.58 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 | [1ef 12-05 07:29:43.81 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 | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [208 12-05 07:29:44.21 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -peer0.org1.example.com | [204 12-05 07:29:43.58 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 | [1d5 12-05 07:29:44.01 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=11901] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org1.example.com | [1f0 12-05 07:29:43.81 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 | [209 12-05 07:29:44.21 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 | [1d6 12-05 07:29:44.01 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=[11945], isChainEmpty=[false], lastBlockNumber=[0] -peer0.org1.example.com | [205 12-05 07:29:43.58 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 | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org1.example.com | [1f1 12-05 07:29:43.81 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 | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -peer1.org2.example.com | [20a 12-05 07:29:44.21 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 | [1d7 12-05 07:29:44.01 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 | [206 12-05 07:29:43.58 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 | [1f2 12-05 07:29:43.81 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 | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org2.example.com | [20b 12-05 07:29:44.21 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.org2.example.com | [1d8 12-05 07:29:44.01 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.org1.example.com | [207 12-05 07:29:43.58 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 | [1f3 12-05 07:29:43.81 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 | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org2.example.com | [20c 12-05 07:29:44.21 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 | [1d9 12-05 07:29:44.01 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 | [208 12-05 07:29:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -peer0.org2.example.com | [1da 12-05 07:29:44.01 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 | [20d 12-05 07:29:44.21 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 | [209 12-05 07:29:43.58 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 | [1f4 12-05 07:29:43.81 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 -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -peer0.org2.example.com | [1db 12-05 07:29:44.01 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 | [20e 12-05 07:29:44.21 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 | [1f5 12-05 07:29:43.81 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 | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org2.example.com | [20f 12-05 07:29:44.21 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 | [20a 12-05 07:29:43.58 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 | [1dc 12-05 07:29:44.01 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 | [1f6 12-05 07:29:43.81 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 | [210 12-05 07:29:44.21 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 | [1dd 12-05 07:29:44.02 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 | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -peer0.org1.example.com | [20b 12-05 07:29:43.58 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 | [1f7 12-05 07:29:43.81 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 | [211 12-05 07:29:44.21 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 | [1de 12-05 07:29:44.02 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -peer0.org1.example.com | [20c 12-05 07:29:43.58 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 | [1f8 12-05 07:29:43.81 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 | [212 12-05 07:29:44.21 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 | [1df 12-05 07:29:44.02 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -peer0.org1.example.com | [20d 12-05 07:29:43.58 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 | [1f9 12-05 07:29:43.81 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 | [213 12-05 07:29:44.21 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.org2.example.com | [1e0 12-05 07:29:44.02 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 | -----END CERTIFICATE----- -peer1.org2.example.com | [214 12-05 07:29:44.21 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 12-05 07:29:43.58 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 | [1fa 12-05 07:29:43.81 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 | [14c 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [215 12-05 07:29:44.21 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 | [1e1 12-05 07:29:44.02 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 | [20f 12-05 07:29:43.58 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 | [216 12-05 07:29:44.21 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 | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -peer0.org2.example.com | [1e2 12-05 07:29:44.02 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [1fb 12-05 07:29:43.81 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 | [210 12-05 07:29:43.59 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 | [217 12-05 07:29:44.21 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 | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [1e3 12-05 07:29:44.02 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [1fc 12-05 07:29:43.81 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 | [218 12-05 07:29:44.21 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 | [1e4 12-05 07:29:44.02 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 | [211 12-05 07:29:43.59 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 | [1fd 12-05 07:29:43.81 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 | [1e5 12-05 07:29:44.02 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 | [219 12-05 07:29:44.21 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 | [212 12-05 07:29:43.59 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 | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org2.example.com | [1e6 12-05 07:29:44.02 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 -peer1.org1.example.com | [1fe 12-05 07:29:43.81 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 | [21a 12-05 07:29:44.21 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 | [213 12-05 07:29:43.59 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.org2.example.com | [1e7 12-05 07:29:44.02 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 | [1ff 12-05 07:29:43.81 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 | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -peer1.org2.example.com | [21b 12-05 07:29:44.21 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 | [1e8 12-05 07:29:44.02 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.org1.example.com | [214 12-05 07:29:43.59 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 | [200 12-05 07:29:43.81 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 | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org2.example.com | [21c 12-05 07:29:44.21 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 | [1e9 12-05 07:29:44.02 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 | [215 12-05 07:29:43.59 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 | [201 12-05 07:29:43.81 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 | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org2.example.com | [21d 12-05 07:29:44.21 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 | [1ea 12-05 07:29:44.02 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 | [202 12-05 07:29:43.81 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 | [216 12-05 07:29:43.59 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 | [21e 12-05 07:29:44.21 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.org2.example.com | [1eb 12-05 07:29:44.02 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 | [203 12-05 07:29:43.81 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 | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -peer0.org1.example.com | [217 12-05 07:29:43.59 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 | [21f 12-05 07:29:44.21 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 -peer0.org2.example.com | [1ec 12-05 07:29:44.02 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 | [204 12-05 07:29:43.81 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 | [218 12-05 07:29:43.59 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 | [220 12-05 07:29:44.21 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 | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org2.example.com | [1ed 12-05 07:29:44.02 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 | [205 12-05 07:29:43.81 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 | [219 12-05 07:29:43.59 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 | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -peer0.org2.example.com | [1ee 12-05 07:29:44.02 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 | [221 12-05 07:29:44.21 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 | [206 12-05 07:29:43.81 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 | [21a 12-05 07:29:43.59 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 | [207 12-05 07:29:43.81 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 | [1ef 12-05 07:29:44.02 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 | [222 12-05 07:29:44.21 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 | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -peer0.org1.example.com | [21b 12-05 07:29:43.59 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 | [208 12-05 07:29:43.81 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 | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -peer1.org2.example.com | [223 12-05 07:29:44.21 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 | [1f0 12-05 07:29:44.02 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.org1.example.com | [21c 12-05 07:29:43.59 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 | [209 12-05 07:29:43.81 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 | [224 12-05 07:29:44.21 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 | [1f1 12-05 07:29:44.02 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 | [20a 12-05 07:29:43.81 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.org2.example.com | [225 12-05 07:29:44.22 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 | [1f2 12-05 07:29:44.02 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 | [20b 12-05 07:29:43.81 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 | [21d 12-05 07:29:43.59 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 | [226 12-05 07:29:44.22 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 | [20c 12-05 07:29:43.81 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 | [1f3 12-05 07:29:44.02 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 | [14d 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -peer1.org2.example.com | [227 12-05 07:29:44.22 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.org1.example.com | [20d 12-05 07:29:43.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [1f4 12-05 07:29:44.02 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 | [21e 12-05 07:29:43.59 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.org2.example.com | [228 12-05 07:29:44.22 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 | [14e 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -peer1.org1.example.com | [20e 12-05 07:29:43.82 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -peer1.org2.example.com | [229 12-05 07:29:44.23 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 | [14f 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer1.org1.example.com | [20f 12-05 07:29:43.82 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 | [21f 12-05 07:29:43.59 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 -peer0.org2.example.com | [1f5 12-05 07:29:44.02 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.org2.example.com | [22a 12-05 07:29:44.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] -orderer.example.com | [150 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer1.org1.example.com | [210 12-05 07:29:43.82 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 | [22b 12-05 07:29:44.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] -peer0.org2.example.com | [1f6 12-05 07:29:44.02 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 | [151 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -peer1.org2.example.com | [22c 12-05 07:29:44.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.org1.example.com | [211 12-05 07:29:43.82 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 | [220 12-05 07:29:43.59 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 | [1f7 12-05 07:29:44.02 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 | [152 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer1.org1.example.com | [212 12-05 07:29:43.82 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 | [22d 12-05 07:29:44.23 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer0.org1.example.com | [221 12-05 07:29:43.59 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 | [213 12-05 07:29:43.82 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 | [22e 12-05 07:29:44.23 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain -peer0.org1.example.com | [222 12-05 07:29:43.59 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 | [1f8 12-05 07:29:44.02 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 | [22f 12-05 07:29:44.23 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 | [214 12-05 07:29:43.82 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 | [153 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -peer0.org2.example.com | [1f9 12-05 07:29:44.02 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.org1.example.com | [223 12-05 07:29:43.59 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 | [230 12-05 07:29:44.23 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 [b947797d-fa20-428a-951c-3cb72c5a6beb] -peer0.org2.example.com | [1fa 12-05 07:29:44.02 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 | [154 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [224 12-05 07:29:43.59 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 | [215 12-05 07:29:43.82 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 | [231 12-05 07:29:44.23 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.4,txid=f462873d-14ec-413d-bdb4-e441efe72777,syscc=true,proposal=0x0,canname=cscc:1.0.4 -peer0.org1.example.com | [225 12-05 07:29:43.59 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 | [1fb 12-05 07:29:44.02 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 | [232 12-05 07:29:44.23 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.4 -orderer.example.com | [155 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -peer1.org1.example.com | [216 12-05 07:29:43.82 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 | [233 12-05 07:29:44.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [226 12-05 07:29:43.59 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 | [156 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org2.example.com | [1fc 12-05 07:29:44.02 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 | [234 12-05 07:29:44.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.4 -peer1.org1.example.com | [217 12-05 07:29:43.82 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 | [1fd 12-05 07:29:44.02 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 | [227 12-05 07:29:43.59 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 | [235 12-05 07:29:44.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f462873d]Inside sendExecuteMessage. Message INIT -orderer.example.com | [157 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -peer1.org2.example.com | [236 12-05 07:29:44.23 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 | [228 12-05 07:29:43.60 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 | [1fe 12-05 07:29:44.02 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 | [158 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer1.org1.example.com | [218 12-05 07:29:43.82 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 | [237 12-05 07:29:44.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f462873d]sendExecuteMsg trigger event INIT -orderer.example.com | [159 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -peer0.org1.example.com | [229 12-05 07:29:43.61 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 | [219 12-05 07:29:43.82 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 | [238 12-05 07:29:44.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f462873d]Move state message INIT -peer0.org2.example.com | [1ff 12-05 07:29:44.02 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 | [15a 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer1.org2.example.com | [239 12-05 07:29:44.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f462873d]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [21a 12-05 07:29:43.82 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 | [22a 12-05 07:29:43.61 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 | [15b 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -peer0.org2.example.com | [200 12-05 07:29:44.02 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 | [23a 12-05 07:29:44.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [21b 12-05 07:29:43.82 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 | [22b 12-05 07:29:43.61 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 | [23b 12-05 07:29:44.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f462873d]sending state message INIT -peer0.org2.example.com | [201 12-05 07:29:44.02 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 | [21c 12-05 07:29:43.82 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 | [22c 12-05 07:29:43.61 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 | [202 12-05 07:29:44.02 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 | [22d 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer1.org1.example.com | [21d 12-05 07:29:43.82 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 | [15c 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org2.example.com | [203 12-05 07:29:44.02 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 | [23c 12-05 07:29:44.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f462873d]Received message INIT from shim -peer0.org1.example.com | [22e 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain -peer1.org1.example.com | [21e 12-05 07:29:43.82 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 | [23d 12-05 07:29:44.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f462873d]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [204 12-05 07:29:44.02 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 | [15d 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [22f 12-05 07:29:43.61 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 | [205 12-05 07:29:44.02 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 | [21f 12-05 07:29:43.82 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 | [23e 12-05 07:29:44.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [206 12-05 07:29:44.02 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 | [15e 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer1.org2.example.com | [23f 12-05 07:29:44.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [f462873d]Received INIT, initializing chaincode -peer1.org1.example.com | [220 12-05 07:29:43.82 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 | [15f 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -peer0.org2.example.com | [207 12-05 07:29:44.02 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 | [230 12-05 07:29:43.61 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 [c65c0d86-1416-42c9-be44-491e0e2f9dbf] -peer1.org1.example.com | [221 12-05 07:29:43.82 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 | [240 12-05 07:29:44.23 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org2.example.com | [208 12-05 07:29:44.02 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | [160 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [231 12-05 07:29:43.61 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.4,txid=93d426d7-f9f8-47c3-9e24-8083f670b21b,syscc=true,proposal=0x0,canname=cscc:1.0.4 -peer1.org1.example.com | [222 12-05 07:29:43.82 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 | [241 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f462873d]Init get response status: 200 -orderer.example.com | [161 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -peer0.org1.example.com | [232 12-05 07:29:43.61 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.4 -peer0.org2.example.com | [209 12-05 07:29:44.02 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 | [223 12-05 07:29:43.82 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 | [242 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f462873d]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [20a 12-05 07:29:44.02 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 | [162 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [233 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [224 12-05 07:29:43.82 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.org2.example.com | [20b 12-05 07:29:44.02 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 | [243 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f462873d]Move state message COMPLETED -peer0.org1.example.com | [234 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.4 -peer1.org1.example.com | [225 12-05 07:29:43.82 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 | [163 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -peer0.org2.example.com | [20c 12-05 07:29:44.02 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 | [226 12-05 07:29:43.82 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.org2.example.com | [244 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f462873d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [20d 12-05 07:29:44.02 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 | [235 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [93d426d7]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [245 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f462873d]send state message COMPLETED -orderer.example.com | [164 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org2.example.com | [20e 12-05 07:29:44.02 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 | [246 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f462873d]Received message COMPLETED from shim -peer1.org1.example.com | [227 12-05 07:29:43.82 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.org1.example.com | [236 12-05 07:29:43.61 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 | [165 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org2.example.com | [20f 12-05 07:29:44.02 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 | [247 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f462873d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [166 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [237 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [93d426d7]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [228 12-05 07:29:43.82 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 | [210 12-05 07:29:44.02 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 | [248 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f462873d-14ec-413d-bdb4-e441efe72777]HandleMessage- COMPLETED. Notify -orderer.example.com | [167 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer1.org1.example.com | [229 12-05 07:29:43.82 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.org1.example.com | [238 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [93d426d7]Move state message INIT -peer0.org2.example.com | [211 12-05 07:29:44.02 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 | [168 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -peer1.org2.example.com | [249 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f462873d-14ec-413d-bdb4-e441efe72777 -peer0.org2.example.com | [212 12-05 07:29:44.02 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 | [22a 12-05 07:29:43.82 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 | [169 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -peer1.org2.example.com | [24a 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [239 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [93d426d7]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [213 12-05 07:29:44.02 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 | [16a 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -peer1.org1.example.com | [22b 12-05 07:29:43.82 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 | [24b 12-05 07:29:44.24 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 | [23a 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [16b 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -peer1.org1.example.com | [22c 12-05 07:29:43.82 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 | [16c 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -peer0.org2.example.com | [214 12-05 07:29:44.02 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 | [24c 12-05 07:29:44.24 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 [b947797d-fa20-428a-951c-3cb72c5a6beb] -peer0.org1.example.com | [23b 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [93d426d7]sending state message INIT -orderer.example.com | [16d 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel -peer1.org1.example.com | [22d 12-05 07:29:43.82 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 | [23c 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93d426d7]Received message INIT from shim -peer0.org1.example.com | [23d 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [93d426d7]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [215 12-05 07:29:44.02 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 | [24d 12-05 07:29:44.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 -orderer.example.com | [16e 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -peer1.org1.example.com | [22e 12-05 07:29:43.82 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 | [23e 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [16f 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -peer1.org2.example.com | [24e 12-05 07:29:44.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 [4f2bbd36-13ef-4753-8322-c25261a9e87a] -peer0.org2.example.com | [216 12-05 07:29:44.02 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 | [23f 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [93d426d7]Received INIT, initializing chaincode -peer1.org1.example.com | [22f 12-05 07:29:43.83 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 | [170 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -peer1.org2.example.com | [24f 12-05 07:29:44.24 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.4,txid=fa6e7a19-864c-4a42-b285-2be363d37da7,syscc=true,proposal=0x0,canname=lscc:1.0.4 -peer0.org2.example.com | [217 12-05 07:29:44.02 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 | [240 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -orderer.example.com | [171 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -peer1.org1.example.com | [230 12-05 07:29:43.83 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.org2.example.com | [218 12-05 07:29:44.02 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 | [250 12-05 07:29:44.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) : lscc:1.0.4 -peer0.org1.example.com | [241 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93d426d7]Init get response status: 200 -orderer.example.com | [172 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -peer1.org1.example.com | [231 12-05 07:29:43.83 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 | [219 12-05 07:29:44.02 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 | [251 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [173 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -peer0.org2.example.com | [21a 12-05 07:29:44.02 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 | [242 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93d426d7]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [252 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.4 -peer1.org1.example.com | [232 12-05 07:29:43.83 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 | [174 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -peer1.org2.example.com | [253 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [fa6e7a19]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [21b 12-05 07:29:44.02 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.org1.example.com | [243 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93d426d7]Move state message COMPLETED -orderer.example.com | [175 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -peer1.org1.example.com | [233 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer1.org2.example.com | [254 12-05 07:29:44.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... -peer0.org2.example.com | [21c 12-05 07:29:44.02 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 | [21d 12-05 07:29:44.02 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 -orderer.example.com | [176 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -peer1.org2.example.com | [255 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [fa6e7a19]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [244 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [93d426d7]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [234 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain -peer0.org2.example.com | [21e 12-05 07:29:44.02 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 | [245 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93d426d7]send state message COMPLETED -peer1.org2.example.com | [256 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa6e7a19]Move state message INIT -orderer.example.com | [177 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -peer0.org2.example.com | [21f 12-05 07:29:44.02 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 | [257 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa6e7a19]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [235 12-05 07:29:43.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.org1.example.com | [246 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [93d426d7]Received message COMPLETED from shim -orderer.example.com | [178 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org2.example.com | [220 12-05 07:29:44.02 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.org2.example.com | [258 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [236 12-05 07:29:43.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 [dacc2fb2-62cd-4b52-8e66-4fd9cca5d040] -peer0.org1.example.com | [247 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [93d426d7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [179 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -peer0.org2.example.com | [221 12-05 07:29:44.02 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 | [237 12-05 07:29:43.83 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.4,txid=95d8bd27-3d3a-4eaf-8e10-cf80534c7311,syscc=true,proposal=0x0,canname=cscc:1.0.4 -orderer.example.com | [17a 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org2.example.com | [222 12-05 07:29:44.02 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.org1.example.com | [248 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [93d426d7-f9f8-47c3-9e24-8083f670b21b]HandleMessage- COMPLETED. Notify -orderer.example.com | [17b 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -peer1.org2.example.com | [259 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa6e7a19]sending state message INIT -peer0.org2.example.com | [223 12-05 07:29:44.02 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 | [238 12-05 07:29:43.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) : cscc:1.0.4 -peer0.org1.example.com | [249 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:93d426d7-f9f8-47c3-9e24-8083f670b21b -orderer.example.com | [17c 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org2.example.com | [224 12-05 07:29:44.02 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 | [239 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [25a 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa6e7a19]Received message INIT from shim -peer0.org2.example.com | [225 12-05 07:29:44.03 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 | [17d 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -peer0.org1.example.com | [24a 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [23a 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.4 -peer1.org2.example.com | [25b 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa6e7a19]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [226 12-05 07:29:44.03 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 | [17e 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -peer0.org1.example.com | [24b 12-05 07:29:43.61 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 | [24c 12-05 07:29:43.61 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 [c65c0d86-1416-42c9-be44-491e0e2f9dbf] -peer1.org2.example.com | [25c 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [227 12-05 07:29:44.03 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 | [24d 12-05 07:29:43.61 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 | [17f 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | [180 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -peer1.org1.example.com | [23b 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [95d8bd27]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [228 12-05 07:29:44.03 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org2.example.com | [25d 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [fa6e7a19]Received INIT, initializing chaincode -orderer.example.com | [181 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -peer0.org1.example.com | [24e 12-05 07:29:43.61 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 [9fd5ddf6-32f1-4612-a1e7-7736bc16e667] -peer0.org2.example.com | [229 12-05 07:29:44.04 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 | [24f 12-05 07:29:43.61 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.4,txid=f4f96a0b-2f1e-4a91-b677-51aa8e3dc03b,syscc=true,proposal=0x0,canname=lscc:1.0.4 -peer1.org2.example.com | [25e 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa6e7a19]Init get response status: 200 -peer1.org1.example.com | [23c 12-05 07:29:43.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 | [182 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | [183 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | [184 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Application/Writers -orderer.example.com | [185 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org2.example.com | [22a 12-05 07:29:44.04 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 | [250 12-05 07:29:43.61 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.4 -peer1.org1.example.com | [23d 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [95d8bd27]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [25f 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa6e7a19]Init succeeded. Sending COMPLETED -orderer.example.com | [186 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in /Application/Admins -peer0.org2.example.com | [22b 12-05 07:29:44.04 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 | [251 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [23e 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [95d8bd27]Move state message INIT -peer1.org2.example.com | [260 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa6e7a19]Move state message COMPLETED -orderer.example.com | [187 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org2.example.com | [22c 12-05 07:29:44.04 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 | [23f 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [95d8bd27]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [188 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Application/Readers -peer1.org2.example.com | [261 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa6e7a19]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [22d 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer0.org2.example.com | [22e 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain -peer0.org2.example.com | [22f 12-05 07:29:44.04 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 | [230 12-05 07:29:44.04 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 [e12833cb-1d2a-4b4d-8fe0-ffb42fd63ad7] -peer0.org2.example.com | [231 12-05 07:29:44.04 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.4,txid=489c3dcd-22b1-416c-a5e8-6e844176ffcc,syscc=true,proposal=0x0,canname=cscc:1.0.4 -peer0.org2.example.com | [232 12-05 07:29:44.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) : cscc:1.0.4 -peer0.org2.example.com | [233 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [240 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [262 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa6e7a19]send state message COMPLETED -peer1.org2.example.com | [263 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa6e7a19]Received message COMPLETED from shim -peer1.org2.example.com | [264 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa6e7a19]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [265 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa6e7a19-864c-4a42-b285-2be363d37da7]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [266 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:fa6e7a19-864c-4a42-b285-2be363d37da7 -peer1.org2.example.com | [267 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [268 12-05 07:29:44.24 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 | [269 12-05 07:29:44.24 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 [4f2bbd36-13ef-4753-8322-c25261a9e87a] -peer1.org2.example.com | [26a 12-05 07:29:44.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 -peer0.org1.example.com | [252 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.4 -peer0.org2.example.com | [234 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.4 -peer0.org2.example.com | [235 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [489c3dcd]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [236 12-05 07:29:44.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... -peer0.org2.example.com | [237 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [489c3dcd]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [238 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [489c3dcd]Move state message INIT -peer1.org1.example.com | [241 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [95d8bd27]sending state message INIT -peer1.org1.example.com | [242 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95d8bd27]Received message INIT from shim -peer1.org1.example.com | [243 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [95d8bd27]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [244 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [245 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [95d8bd27]Received INIT, initializing chaincode -peer1.org1.example.com | [246 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer1.org1.example.com | [247 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95d8bd27]Init get response status: 200 -peer1.org1.example.com | [248 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95d8bd27]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [249 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95d8bd27]Move state message COMPLETED -peer1.org1.example.com | [24a 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [95d8bd27]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [24b 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95d8bd27]send state message COMPLETED -orderer.example.com | [189 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer1.org2.example.com | [26b 12-05 07:29:44.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 [7a4e9305-cc39-4e4f-bead-4df2b0e26d17] -peer0.org1.example.com | [253 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f4f96a0b]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [254 12-05 07:29:43.61 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 | [255 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f4f96a0b]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [24c 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [95d8bd27]Received message COMPLETED from shim -orderer.example.com | [18a 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [26c 12-05 07:29:44.24 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.4,txid=9dcc1720-5650-4684-bf02-3e0b048b12fb,syscc=true,proposal=0x0,canname=escc:1.0.4 -peer1.org2.example.com | [26d 12-05 07:29:44.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) : escc:1.0.4 -peer0.org1.example.com | [256 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4f96a0b]Move state message INIT -peer0.org1.example.com | [257 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4f96a0b]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [258 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [259 12-05 07:29:43.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4f96a0b]sending state message INIT -peer0.org1.example.com | [25a 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4f96a0b]Received message INIT from shim -peer0.org1.example.com | [25b 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4f96a0b]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [25c 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [25d 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [f4f96a0b]Received INIT, initializing chaincode -peer1.org1.example.com | [24d 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [95d8bd27]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [18b 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org2.example.com | [239 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [489c3dcd]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [23a 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [23b 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [489c3dcd]sending state message INIT -peer0.org2.example.com | [23c 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [489c3dcd]Received message INIT from shim -peer0.org2.example.com | [23d 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [489c3dcd]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [23e 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [23f 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [489c3dcd]Received INIT, initializing chaincode -peer0.org2.example.com | [240 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org2.example.com | [241 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [489c3dcd]Init get response status: 200 -peer0.org2.example.com | [242 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [489c3dcd]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [243 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [489c3dcd]Move state message COMPLETED -peer1.org2.example.com | [26e 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [25e 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4f96a0b]Init get response status: 200 -peer1.org1.example.com | [24e 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [95d8bd27-3d3a-4eaf-8e10-cf80534c7311]HandleMessage- COMPLETED. Notify -orderer.example.com | [18c 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [18d 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [18e 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | [18f 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [190 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [191 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [192 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [193 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [194 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [195 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [196 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | [197 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -orderer.example.com | [198 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026530 gate 1512458982923420400 evaluation starts -orderer.example.com | [199 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026530 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [19a 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026530 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [19b 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 -orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h -orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA -peer0.org2.example.com | [244 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [489c3dcd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [245 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [489c3dcd]send state message COMPLETED -peer0.org2.example.com | [246 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [489c3dcd]Received message COMPLETED from shim -peer0.org2.example.com | [247 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [489c3dcd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [248 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [489c3dcd-22b1-416c-a5e8-6e844176ffcc]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [249 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:489c3dcd-22b1-416c-a5e8-6e844176ffcc -peer0.org2.example.com | [24a 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [24b 12-05 07:29:44.04 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 | [24c 12-05 07:29:44.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 [e12833cb-1d2a-4b4d-8fe0-ffb42fd63ad7] -peer1.org1.example.com | [24f 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:95d8bd27-3d3a-4eaf-8e10-cf80534c7311 -peer1.org1.example.com | [250 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [251 12-05 07:29:43.83 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.org1.example.com | [252 12-05 07:29:43.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 [dacc2fb2-62cd-4b52-8e66-4fd9cca5d040] -peer1.org1.example.com | [253 12-05 07:29:43.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.org1.example.com | [25f 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4f96a0b]Init succeeded. Sending COMPLETED -orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx -orderer.example.com | zekLSULI9G2UUYA77A== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [19c 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | [19d 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026530 principal matched by identity 0 -orderer.example.com | [19e 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ae 28 16 e2 b4 c0 28 fc ec b8 21 99 cc 79 d5 ca |.(....(...!..y..| -orderer.example.com | 00000010 0c c3 c5 7d 6c 4c a4 5e 5b f0 d9 e1 fc 81 42 d3 |...}lL.^[.....B.| -orderer.example.com | [19f 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c6 67 e4 46 8f 27 7d 42 29 de cc |0E.!..g.F.'}B)..| -orderer.example.com | 00000010 9c a3 e4 5f 14 cf b8 f7 91 1a 74 6d 1d 16 70 7e |..._......tm..p~| -orderer.example.com | 00000020 a8 2b 59 3a cd 02 20 32 eb 46 8a 5f b4 2a 47 89 |.+Y:.. 2.F._.*G.| -orderer.example.com | 00000030 ba 35 49 5c 46 f0 9d 2c 46 88 c2 00 b1 2c a2 cb |.5I\F..,F....,..| -peer1.org2.example.com | [26f 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.4 -peer1.org2.example.com | [270 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9dcc1720]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [24d 12-05 07:29:44.04 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 | [254 12-05 07:29:43.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 [0a8b328d-076f-4b7d-8236-f4f6e47f488e] -peer0.org1.example.com | [260 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4f96a0b]Move state message COMPLETED -orderer.example.com | 00000040 6f 17 55 34 96 5e b9 |o.U4.^.| -peer0.org2.example.com | [24e 12-05 07:29:44.04 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 [a3dd2ac0-26c9-4aab-ac5c-0d4a3f90e18b] -peer0.org1.example.com | [261 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4f96a0b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [271 12-05 07:29:44.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... -peer0.org2.example.com | [24f 12-05 07:29:44.04 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.4,txid=b3eafd64-60d3-4fea-b9f1-9267ced3be55,syscc=true,proposal=0x0,canname=lscc:1.0.4 -peer1.org1.example.com | [255 12-05 07:29:43.83 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.4,txid=05ddacbf-375d-43ce-bf82-0d62ed0c80d0,syscc=true,proposal=0x0,canname=lscc:1.0.4 -orderer.example.com | [1a0 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026530 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [262 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4f96a0b]send state message COMPLETED -peer1.org2.example.com | [272 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9dcc1720]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [250 12-05 07:29:44.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) : lscc:1.0.4 -peer0.org1.example.com | [263 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4f96a0b]Received message COMPLETED from shim -peer1.org1.example.com | [256 12-05 07:29:43.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) : lscc:1.0.4 -peer1.org2.example.com | [273 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9dcc1720]Move state message INIT -peer0.org1.example.com | [264 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4f96a0b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [1a1 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026530 gate 1512458982923420400 evaluation succeeds -peer0.org1.example.com | [265 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4f96a0b-2f1e-4a91-b677-51aa8e3dc03b]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [274 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9dcc1720]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [251 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [257 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [1a2 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [266 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f4f96a0b-2f1e-4a91-b677-51aa8e3dc03b -peer1.org2.example.com | [275 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [258 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.4 -peer0.org1.example.com | [267 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | [1a3 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [252 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.4 -peer0.org1.example.com | [268 12-05 07:29:43.62 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 | [259 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [05ddacbf]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [276 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9dcc1720]sending state message INIT -peer0.org2.example.com | [253 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b3eafd64]Inside sendExecuteMessage. Message INIT -orderer.example.com | [1a4 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [269 12-05 07:29:43.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 [9fd5ddf6-32f1-4612-a1e7-7736bc16e667] -peer0.org2.example.com | [254 12-05 07:29:44.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.org1.example.com | [25a 12-05 07:29:43.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... -peer0.org1.example.com | [26a 12-05 07:29:43.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 -peer0.org2.example.com | [255 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b3eafd64]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [26b 12-05 07:29:43.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 [e66fafd6-1db0-40d6-a5ea-ddf912a3787d] -orderer.example.com | [1a5 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [25b 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [05ddacbf]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [277 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9dcc1720]Received message INIT from shim -peer0.org1.example.com | [26c 12-05 07:29:43.62 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.4,txid=f3ed19c0-7dd4-44a5-b3bf-fb90755acff7,syscc=true,proposal=0x0,canname=escc:1.0.4 -orderer.example.com | [1a6 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [26d 12-05 07:29:43.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) : escc:1.0.4 -peer1.org2.example.com | [278 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9dcc1720]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [256 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b3eafd64]Move state message INIT -peer1.org1.example.com | [25c 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [05ddacbf]Move state message INIT -peer0.org1.example.com | [26e 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [1a7 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [279 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [26f 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.4 -peer1.org1.example.com | [25d 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [05ddacbf]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [257 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b3eafd64]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [1a8 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [258 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [270 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f3ed19c0]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [27a 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [9dcc1720]Received INIT, initializing chaincode -peer1.org1.example.com | [25e 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [271 12-05 07:29:43.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... -orderer.example.com | [1a9 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [259 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b3eafd64]sending state message INIT -peer1.org2.example.com | [27b 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer0.org1.example.com | [272 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f3ed19c0]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [25f 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [05ddacbf]sending state message INIT -peer0.org2.example.com | [25a 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b3eafd64]Received message INIT from shim -peer0.org1.example.com | [273 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f3ed19c0]Move state message INIT -peer1.org2.example.com | [27c 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9dcc1720]Init get response status: 200 -peer0.org2.example.com | [25b 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b3eafd64]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [260 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [05ddacbf]Received message INIT from shim -peer0.org1.example.com | [274 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f3ed19c0]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [1aa 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [25c 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [27d 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9dcc1720]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [261 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [05ddacbf]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [275 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [25d 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b3eafd64]Received INIT, initializing chaincode -peer1.org2.example.com | [27e 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9dcc1720]Move state message COMPLETED -peer1.org1.example.com | [262 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [1ab 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [276 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f3ed19c0]sending state message INIT -peer1.org1.example.com | [263 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [05ddacbf]Received INIT, initializing chaincode -peer1.org2.example.com | [27f 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9dcc1720]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [277 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f3ed19c0]Received message INIT from shim -peer0.org2.example.com | [25e 12-05 07:29:44.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b3eafd64]Init get response status: 200 -peer1.org1.example.com | [264 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [05ddacbf]Init get response status: 200 -orderer.example.com | [1ac 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [278 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f3ed19c0]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [280 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9dcc1720]send state message COMPLETED -peer1.org1.example.com | [265 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [05ddacbf]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [25f 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b3eafd64]Init succeeded. Sending COMPLETED -orderer.example.com | [1ad 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [279 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [281 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9dcc1720]Received message COMPLETED from shim -orderer.example.com | [1ae 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org2.example.com | [260 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b3eafd64]Move state message COMPLETED -peer1.org1.example.com | [266 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [05ddacbf]Move state message COMPLETED -peer0.org1.example.com | [27a 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [f3ed19c0]Received INIT, initializing chaincode -orderer.example.com | [1af 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [261 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b3eafd64]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [267 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [05ddacbf]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [282 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9dcc1720]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [1b0 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [27b 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer0.org2.example.com | [262 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b3eafd64]send state message COMPLETED -peer1.org1.example.com | [268 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [05ddacbf]send state message COMPLETED -peer1.org2.example.com | [283 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9dcc1720-5650-4684-bf02-3e0b048b12fb]HandleMessage- COMPLETED. Notify -orderer.example.com | [1b1 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [263 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b3eafd64]Received message COMPLETED from shim -peer1.org1.example.com | [269 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [05ddacbf]Received message COMPLETED from shim -peer0.org1.example.com | [27c 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f3ed19c0]Init get response status: 200 -peer0.org2.example.com | [264 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b3eafd64]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [1b2 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [284 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9dcc1720-5650-4684-bf02-3e0b048b12fb -peer0.org1.example.com | [27d 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f3ed19c0]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [265 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b3eafd64-60d3-4fea-b9f1-9267ced3be55]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [26a 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [05ddacbf]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [285 12-05 07:29:44.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [27e 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f3ed19c0]Move state message COMPLETED -orderer.example.com | [1b3 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [266 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b3eafd64-60d3-4fea-b9f1-9267ced3be55 -peer1.org2.example.com | [286 12-05 07:29:44.24 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 | [26b 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [05ddacbf-375d-43ce-bf82-0d62ed0c80d0]HandleMessage- COMPLETED. Notify -orderer.example.com | [1b4 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [267 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [27f 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f3ed19c0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [268 12-05 07:29:44.05 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 | [287 12-05 07:29:44.24 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 [7a4e9305-cc39-4e4f-bead-4df2b0e26d17] -peer0.org1.example.com | [280 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f3ed19c0]send state message COMPLETED -orderer.example.com | [1b5 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel -peer1.org1.example.com | [26c 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:05ddacbf-375d-43ce-bf82-0d62ed0c80d0 -peer1.org2.example.com | [288 12-05 07:29:44.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 -peer0.org2.example.com | [269 12-05 07:29:44.05 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 [a3dd2ac0-26c9-4aab-ac5c-0d4a3f90e18b] -peer0.org1.example.com | [281 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f3ed19c0]Received message COMPLETED from shim -peer1.org2.example.com | [289 12-05 07:29:44.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 [e2f9e5b3-de17-4b6c-8f86-f1e94bf93c86] -peer1.org1.example.com | [26d 12-05 07:29:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [26a 12-05 07:29:44.05 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 | [282 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f3ed19c0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [26e 12-05 07:29:43.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 -orderer.example.com | [1b6 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org2.example.com | [26b 12-05 07:29:44.05 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 [e9afab7d-57a3-45ea-9b41-2bbbab272138] -peer0.org1.example.com | [283 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f3ed19c0-7dd4-44a5-b3bf-fb90755acff7]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [26f 12-05 07:29:43.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 [0a8b328d-076f-4b7d-8236-f4f6e47f488e] -peer1.org2.example.com | [28a 12-05 07:29:44.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.4,txid=55988479-6dcd-4f29-b931-6c1dc146df91,syscc=true,proposal=0x0,canname=vscc:1.0.4 -peer0.org1.example.com | [284 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f3ed19c0-7dd4-44a5-b3bf-fb90755acff7 -peer0.org1.example.com | [285 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | [1b7 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [270 12-05 07:29:43.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.org2.example.com | [28b 12-05 07:29:44.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.4 -peer0.org2.example.com | [26c 12-05 07:29:44.05 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.4,txid=fe9042f3-c72b-4dc4-b9b4-1f09f4aca644,syscc=true,proposal=0x0,canname=escc:1.0.4 -orderer.example.com | [1b8 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [271 12-05 07:29:43.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 [03f6e4b2-fdcb-4d36-8ae9-0c7263f5f367] -peer0.org1.example.com | [286 12-05 07:29:43.62 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 | [1b9 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [28c 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [26d 12-05 07:29:44.05 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.4 -peer1.org1.example.com | [272 12-05 07:29:43.84 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.4,txid=94a24ac4-a761-427a-a99b-a33ce8874564,syscc=true,proposal=0x0,canname=escc:1.0.4 -orderer.example.com | [1ba 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [287 12-05 07:29:43.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 [e66fafd6-1db0-40d6-a5ea-ddf912a3787d] -peer1.org2.example.com | [28d 12-05 07:29:44.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.4 -peer1.org1.example.com | [273 12-05 07:29:43.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) : escc:1.0.4 -peer0.org2.example.com | [26e 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [1bb 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -peer1.org2.example.com | [28e 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [55988479]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [288 12-05 07:29:43.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 -peer0.org2.example.com | [26f 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.4 -peer1.org1.example.com | [274 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [1bc 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -peer0.org2.example.com | [270 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [fe9042f3]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [28f 12-05 07:29:44.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.org1.example.com | [275 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.4 -orderer.example.com | [1bd 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -peer0.org1.example.com | [289 12-05 07:29:43.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 [edd9919e-0f8b-4d7e-a3f9-3c4a3366fa02] -peer0.org2.example.com | [271 12-05 07:29:44.05 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 | [290 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [55988479]sendExecuteMsg trigger event INIT -orderer.example.com | [1be 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer1.org1.example.com | [276 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [94a24ac4]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [272 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [fe9042f3]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [291 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55988479]Move state message INIT -peer0.org1.example.com | [28a 12-05 07:29:43.62 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.4,txid=a5d7d2da-65a8-42bf-acbf-8c762232a10d,syscc=true,proposal=0x0,canname=vscc:1.0.4 -orderer.example.com | [1bf 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [1c0 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [1c1 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [1c2 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [1c3 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [277 12-05 07:29:43.84 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 | [278 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [94a24ac4]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [279 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [94a24ac4]Move state message INIT -peer1.org1.example.com | [27a 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [94a24ac4]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [273 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fe9042f3]Move state message INIT -peer0.org2.example.com | [274 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fe9042f3]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [275 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [276 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fe9042f3]sending state message INIT -peer0.org2.example.com | [277 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fe9042f3]Received message INIT from shim -peer0.org2.example.com | [278 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fe9042f3]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [279 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [27a 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [fe9042f3]Received INIT, initializing chaincode -peer0.org2.example.com | [27b 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer0.org2.example.com | [27c 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fe9042f3]Init get response status: 200 -peer0.org2.example.com | [27d 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fe9042f3]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [27b 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [27c 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [94a24ac4]sending state message INIT -peer1.org1.example.com | [27d 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94a24ac4]Received message INIT from shim -peer1.org1.example.com | [27e 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [94a24ac4]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [27f 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [280 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [94a24ac4]Received INIT, initializing chaincode -peer1.org1.example.com | [281 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer1.org1.example.com | [282 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94a24ac4]Init get response status: 200 -peer1.org1.example.com | [283 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94a24ac4]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [284 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94a24ac4]Move state message COMPLETED -peer1.org1.example.com | [285 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [94a24ac4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [286 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94a24ac4]send state message COMPLETED -peer1.org1.example.com | [287 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [94a24ac4]Received message COMPLETED from shim -peer1.org1.example.com | [288 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [94a24ac4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [289 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [94a24ac4-a761-427a-a99b-a33ce8874564]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [28a 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:94a24ac4-a761-427a-a99b-a33ce8874564 -peer1.org1.example.com | [28b 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [28c 12-05 07:29:43.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 | [28d 12-05 07:29:43.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 [03f6e4b2-fdcb-4d36-8ae9-0c7263f5f367] -peer1.org2.example.com | [292 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55988479]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [27e 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fe9042f3]Move state message COMPLETED -orderer.example.com | [1c4 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -peer1.org1.example.com | [28e 12-05 07:29:43.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 | [28f 12-05 07:29:43.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 [bfa8e8e5-906b-4fcd-b196-5fbf0506b7df] -peer0.org1.example.com | [28b 12-05 07:29:43.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) : vscc:1.0.4 -orderer.example.com | [1c5 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -peer1.org2.example.com | [293 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [294 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55988479]sending state message INIT -peer0.org2.example.com | [27f 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fe9042f3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [28c 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [1c6 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -orderer.example.com | [1c7 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -orderer.example.com | [1c8 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [1c9 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [1ca 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -orderer.example.com | [1cb 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -peer1.org1.example.com | [290 12-05 07:29:43.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.4,txid=afa92ee6-10cb-48e2-9744-dd8bfc161619,syscc=true,proposal=0x0,canname=vscc:1.0.4 -peer1.org2.example.com | [295 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55988479]Received message INIT from shim -peer1.org2.example.com | [296 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55988479]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [297 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [298 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [55988479]Received INIT, initializing chaincode -peer1.org2.example.com | [299 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55988479]Init get response status: 200 -peer1.org2.example.com | [29a 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55988479]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [29b 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55988479]Move state message COMPLETED -peer1.org2.example.com | [29c 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55988479]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [29d 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55988479]send state message COMPLETED -peer1.org2.example.com | [29e 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55988479]Received message COMPLETED from shim -peer1.org2.example.com | [29f 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55988479]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [2a0 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55988479-6dcd-4f29-b931-6c1dc146df91]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [2a1 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:55988479-6dcd-4f29-b931-6c1dc146df91 -peer0.org1.example.com | [28d 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.4 -peer0.org1.example.com | [28e 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a5d7d2da]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [28f 12-05 07:29:43.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 | [290 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a5d7d2da]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [291 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a5d7d2da]Move state message INIT -peer0.org2.example.com | [280 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fe9042f3]send state message COMPLETED -peer1.org1.example.com | [291 12-05 07:29:43.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.4 -peer1.org1.example.com | [292 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [293 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.4 -peer1.org1.example.com | [294 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [afa92ee6]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [295 12-05 07:29:43.84 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 | [296 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [afa92ee6]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [297 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afa92ee6]Move state message INIT -peer1.org1.example.com | [298 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afa92ee6]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [299 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [29a 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afa92ee6]sending state message INIT -peer1.org1.example.com | [29b 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afa92ee6]Received message INIT from shim -peer1.org1.example.com | [29c 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [afa92ee6]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [29d 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [29e 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [afa92ee6]Received INIT, initializing chaincode -peer1.org1.example.com | [29f 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afa92ee6]Init get response status: 200 -peer1.org1.example.com | [2a0 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afa92ee6]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [2a1 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afa92ee6]Move state message COMPLETED -orderer.example.com | [1cc 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -peer0.org2.example.com | [281 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fe9042f3]Received message COMPLETED from shim -peer0.org2.example.com | [282 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fe9042f3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [283 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fe9042f3-c72b-4dc4-b9b4-1f09f4aca644]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [284 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:fe9042f3-c72b-4dc4-b9b4-1f09f4aca644 -peer0.org2.example.com | [285 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [286 12-05 07:29:44.05 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 | [287 12-05 07:29:44.05 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 [e9afab7d-57a3-45ea-9b41-2bbbab272138] -orderer.example.com | [1cd 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer1.org2.example.com | [2a2 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [2a3 12-05 07:29:44.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 -peer1.org2.example.com | [2a4 12-05 07:29:44.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 [e2f9e5b3-de17-4b6c-8f86-f1e94bf93c86] -peer1.org2.example.com | [2a5 12-05 07:29:44.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 | [2a6 12-05 07:29:44.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 [928e152e-7a19-4959-aa67-65cb1399368a] -peer0.org1.example.com | [292 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a5d7d2da]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [2a2 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [afa92ee6]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [2a3 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afa92ee6]send state message COMPLETED -peer1.org2.example.com | [2a7 12-05 07:29:44.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.4,txid=d84252bf-1905-4125-a457-bf020ff6a60b,syscc=true,proposal=0x0,canname=qscc:1.0.4 -peer0.org2.example.com | [288 12-05 07:29:44.05 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 | [293 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [2a8 12-05 07:29:44.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.4 -peer0.org2.example.com | [289 12-05 07:29:44.05 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 [bee1ea2c-a199-4f0b-a056-4ab5d8c720be] -orderer.example.com | [1ce 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -peer1.org1.example.com | [2a4 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afa92ee6]Received message COMPLETED from shim -peer1.org1.example.com | [2a5 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afa92ee6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [2a6 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afa92ee6-10cb-48e2-9744-dd8bfc161619]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [2a7 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:afa92ee6-10cb-48e2-9744-dd8bfc161619 -peer1.org1.example.com | [2a8 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [2a9 12-05 07:29:43.84 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 | [2aa 12-05 07:29:43.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 [bfa8e8e5-906b-4fcd-b196-5fbf0506b7df] -peer1.org2.example.com | [2a9 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [2aa 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.4 -peer1.org2.example.com | [2ab 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d84252bf]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [2ac 12-05 07:29:44.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 | [2ad 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d84252bf]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [2ae 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d84252bf]Move state message INIT -peer0.org1.example.com | [294 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a5d7d2da]sending state message INIT -orderer.example.com | [1cf 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -orderer.example.com | [1d0 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -peer0.org2.example.com | [28a 12-05 07:29:44.05 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.4,txid=983f34e4-4963-4d51-a913-b0e52aac0af3,syscc=true,proposal=0x0,canname=vscc:1.0.4 -peer1.org2.example.com | [2af 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d84252bf]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [295 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5d7d2da]Received message INIT from shim -peer1.org1.example.com | [2ab 12-05 07:29:43.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 -orderer.example.com | [1d1 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [1d2 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [1d3 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [1d4 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [28b 12-05 07:29:44.05 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.4 -peer0.org2.example.com | [28c 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [28d 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.4 -peer0.org2.example.com | [28e 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [983f34e4]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [28f 12-05 07:29:44.05 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 | [290 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [983f34e4]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [291 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [983f34e4]Move state message INIT -peer0.org2.example.com | [292 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [983f34e4]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [293 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [2b0 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [296 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a5d7d2da]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [297 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [298 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [a5d7d2da]Received INIT, initializing chaincode -peer0.org1.example.com | [299 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5d7d2da]Init get response status: 200 -peer0.org1.example.com | [29a 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5d7d2da]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [29b 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5d7d2da]Move state message COMPLETED -peer0.org1.example.com | [29c 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a5d7d2da]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [29d 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5d7d2da]send state message COMPLETED -peer1.org1.example.com | [2ac 12-05 07:29:43.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 [72070f18-6f67-4d60-af92-9e6c53e775ca] -orderer.example.com | [1d5 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [294 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [983f34e4]sending state message INIT -peer0.org2.example.com | [295 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [983f34e4]Received message INIT from shim -peer0.org2.example.com | [296 12-05 07:29:44.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [983f34e4]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [297 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [298 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [983f34e4]Received INIT, initializing chaincode -peer0.org2.example.com | [299 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [983f34e4]Init get response status: 200 -peer0.org2.example.com | [29a 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [983f34e4]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [29b 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [983f34e4]Move state message COMPLETED -peer0.org2.example.com | [29c 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [983f34e4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [29d 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [983f34e4]send state message COMPLETED -peer0.org2.example.com | [29e 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [983f34e4]Received message COMPLETED from shim -peer1.org2.example.com | [2b1 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d84252bf]sending state message INIT -peer0.org1.example.com | [29e 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a5d7d2da]Received message COMPLETED from shim -orderer.example.com | [1d6 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [2ad 12-05 07:29:43.84 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.4,txid=9a6b99a2-7e9e-4d39-b8f2-e9f3f3a71ab1,syscc=true,proposal=0x0,canname=qscc:1.0.4 -peer1.org1.example.com | [2ae 12-05 07:29:43.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) : qscc:1.0.4 -peer1.org1.example.com | [2af 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [2b0 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.4 -peer1.org1.example.com | [2b1 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9a6b99a2]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [2b2 12-05 07:29:43.84 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 | [29f 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [983f34e4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [2b2 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d84252bf]Received message INIT from shim -peer1.org2.example.com | [2b3 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d84252bf]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [2b4 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [2b5 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d84252bf]Received INIT, initializing chaincode -peer1.org2.example.com | [2b6 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org2.example.com | [2b7 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d84252bf]Init get response status: 200 -peer1.org2.example.com | [2b8 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d84252bf]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [2b9 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d84252bf]Move state message COMPLETED -peer1.org2.example.com | [2ba 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d84252bf]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [2bb 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d84252bf]send state message COMPLETED -peer1.org2.example.com | [2bc 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d84252bf]Received message COMPLETED from shim -peer1.org2.example.com | [2bd 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d84252bf]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [2be 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d84252bf-1905-4125-a457-bf020ff6a60b]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [2bf 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d84252bf-1905-4125-a457-bf020ff6a60b -peer1.org2.example.com | [2c0 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [2c1 12-05 07:29:44.25 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 | [2c2 12-05 07:29:44.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 [928e152e-7a19-4959-aa67-65cb1399368a] -peer1.org2.example.com | [2c3 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry -peer1.org2.example.com | [2c4 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] -peer1.org2.example.com | [2c5 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org2.example.com | [2c6 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [2c7 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [2c8 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [2c9 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [2ca 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a984292]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [2cb 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a984292]Move state message COMPLETED -peer1.org2.example.com | [2cc 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0a984292]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [1d7 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -peer0.org2.example.com | [2a0 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [983f34e4-4963-4d51-a913-b0e52aac0af3]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [2a1 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:983f34e4-4963-4d51-a913-b0e52aac0af3 -peer0.org2.example.com | [2a2 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [2a3 12-05 07:29:44.06 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 | [2a4 12-05 07:29:44.06 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 [bee1ea2c-a199-4f0b-a056-4ab5d8c720be] -peer0.org2.example.com | [2a5 12-05 07:29:44.06 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 | [2a6 12-05 07:29:44.06 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 [ba576b06-6ee7-4146-91d1-1251a7e27074] -peer0.org1.example.com | [29f 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a5d7d2da]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [2b3 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9a6b99a2]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [2b4 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9a6b99a2]Move state message INIT -peer1.org1.example.com | [2b5 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9a6b99a2]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [2b6 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [2b7 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9a6b99a2]sending state message INIT -peer1.org1.example.com | [2b8 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a6b99a2]Received message INIT from shim -peer1.org1.example.com | [2b9 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9a6b99a2]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [2ba 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [2bb 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [9a6b99a2]Received INIT, initializing chaincode -peer1.org1.example.com | [2bc 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org1.example.com | [2bd 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a6b99a2]Init get response status: 200 -peer1.org1.example.com | [2be 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a6b99a2]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [2cd 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a984292]send state message COMPLETED -orderer.example.com | [1d8 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -peer0.org2.example.com | [2a7 12-05 07:29:44.06 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.4,txid=ef107fdf-6b03-41e6-ba75-6a2aeda679fa,syscc=true,proposal=0x0,canname=qscc:1.0.4 -peer0.org1.example.com | [2a0 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a5d7d2da-65a8-42bf-acbf-8c762232a10d]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [2a1 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a5d7d2da-65a8-42bf-acbf-8c762232a10d -peer0.org1.example.com | [2a2 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [2a3 12-05 07:29:43.62 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 | [2a4 12-05 07:29:43.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 [edd9919e-0f8b-4d7e-a3f9-3c4a3366fa02] -peer0.org1.example.com | [2a5 12-05 07:29:43.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 -peer1.org1.example.com | [2bf 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a6b99a2]Move state message COMPLETED -peer1.org2.example.com | [2ce 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a984292]Received message COMPLETED from shim -orderer.example.com | [1d9 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -peer0.org2.example.com | [2a8 12-05 07:29:44.06 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.4 -peer0.org2.example.com | [2a9 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [2aa 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.4 -peer0.org2.example.com | [2ab 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ef107fdf]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [2ac 12-05 07:29:44.06 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 | [2ad 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ef107fdf]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [2ae 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef107fdf]Move state message INIT -peer0.org2.example.com | [2af 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ef107fdf]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [2b0 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [2b1 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef107fdf]sending state message INIT -peer0.org2.example.com | [2b2 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef107fdf]Received message INIT from shim -peer0.org2.example.com | [2b3 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ef107fdf]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [2b4 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [2b5 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [ef107fdf]Received INIT, initializing chaincode -peer0.org2.example.com | [2b6 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer0.org2.example.com | [2b7 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef107fdf]Init get response status: 200 -peer0.org2.example.com | [2b8 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef107fdf]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [2b9 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef107fdf]Move state message COMPLETED -peer0.org2.example.com | [2ba 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ef107fdf]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [2bb 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef107fdf]send state message COMPLETED -peer0.org2.example.com | [2bc 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef107fdf]Received message COMPLETED from shim -peer0.org2.example.com | [2bd 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ef107fdf]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [2be 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ef107fdf-6b03-41e6-ba75-6a2aeda679fa]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [2bf 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ef107fdf-6b03-41e6-ba75-6a2aeda679fa -peer0.org2.example.com | [2c0 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [2c1 12-05 07:29:44.06 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.org2.example.com | [2c2 12-05 07:29:44.06 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 [ba576b06-6ee7-4146-91d1-1251a7e27074] -peer0.org2.example.com | [2c3 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry -peer0.org2.example.com | [2c4 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] -peer0.org2.example.com | [2c5 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org1.example.com | [2a6 12-05 07:29:43.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 [d9c06935-ee2d-40cf-8aa0-142e7d7dadf8] -peer1.org1.example.com | [2c0 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9a6b99a2]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [2cf 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0a984292]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [1da 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [2c6 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [2a7 12-05 07:29:43.62 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.4,txid=e5f39d3f-65ed-488c-8050-20c023726e73,syscc=true,proposal=0x0,canname=qscc:1.0.4 -orderer.example.com | [1db 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [2c1 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a6b99a2]send state message COMPLETED -peer1.org2.example.com | [2d0 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0a984292e034f2e9e897f8be06e76943c6b84dadb9925b8d999261d096f4b9da]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [2c7 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully -orderer.example.com | [1dc 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [2a8 12-05 07:29:43.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) : qscc:1.0.4 -peer1.org1.example.com | [2c2 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9a6b99a2]Received message COMPLETED from shim -orderer.example.com | [1dd 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [2a9 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [2d1 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0a984292e034f2e9e897f8be06e76943c6b84dadb9925b8d999261d096f4b9da -peer0.org2.example.com | [2c8 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org1.example.com | [2c3 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9a6b99a2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [1de 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [2aa 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.4 -peer1.org2.example.com | [2d2 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [1df 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [2c4 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9a6b99a2-7e9e-4d39-b8f2-e9f3f3a71ab1]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [2d3 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [2c9 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit -orderer.example.com | [1e0 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -peer1.org1.example.com | [2c5 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9a6b99a2-7e9e-4d39-b8f2-e9f3f3a71ab1 -peer1.org2.example.com | [2d4 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [2ab 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e5f39d3f]Inside sendExecuteMessage. Message INIT -orderer.example.com | [1e1 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -peer0.org2.example.com | [2ca 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ca7684f]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [2d5 12-05 07:29:44.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | [1e2 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -peer1.org1.example.com | [2c6 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [2cb 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ca7684f]Move state message COMPLETED -orderer.example.com | [1e3 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [2ac 12-05 07:29:43.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.org2.example.com | [2cc 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8ca7684f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [1e4 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org2.example.com | [2d6 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org1.example.com | [2ad 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e5f39d3f]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [2c7 12-05 07:29:43.84 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.org2.example.com | [2cd 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ca7684f]send state message COMPLETED -orderer.example.com | [1e5 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -peer1.org2.example.com | [2d7 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4218b8a50 -peer0.org2.example.com | [2ce 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ca7684f]Received message COMPLETED from shim -peer0.org1.example.com | [2ae 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e5f39d3f]Move state message INIT -orderer.example.com | [1e6 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [2d8 12-05 07:29:46.26 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 | [2c8 12-05 07:29:43.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 [72070f18-6f67-4d60-af92-9e6c53e775ca] -peer0.org1.example.com | [2af 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e5f39d3f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL -peer0.org2.example.com | [2cf 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8ca7684f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [2c9 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry -peer1.org2.example.com | [2d9 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [2d0 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8ca7684f908468e70cf1ae5fa54728266e1d526797973b24de7bfc78729aa7fa]HandleMessage- COMPLETED. Notify -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [2b0 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [2da 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} -peer1.org1.example.com | [2ca 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] -peer0.org1.example.com | [2b1 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e5f39d3f]sending state message INIT -peer0.org2.example.com | [2d1 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8ca7684f908468e70cf1ae5fa54728266e1d526797973b24de7bfc78729aa7fa -peer1.org1.example.com | [2cb 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer1.org2.example.com | [2db 12-05 07:29:46.26 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 | [2b2 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5f39d3f]Received message INIT from shim -peer0.org2.example.com | [2d2 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [2cc 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV -peer1.org2.example.com | [2dc 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [2b3 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e5f39d3f]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [2cd 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org2.example.com | [2d3 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [2b4 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [2dd 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4218fc050, header 0xc4218b8a80 -peer0.org2.example.com | [2d4 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org2.example.com | [2d5 12-05 07:29:44.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org2.example.com | [2d6 12-05 07:29:45.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer1.org1.example.com | [2ce 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [2de 12-05 07:29:46.26 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 | [2b5 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e5f39d3f]Received INIT, initializing chaincode -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR -peer0.org2.example.com | [2d7 12-05 07:29:45.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421551980 -peer1.org1.example.com | [2cf 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [2df 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 245226a0d708ab366d37ee0a999c8817fdf011fd01ae29efc27420d37e115ea7 -orderer.example.com | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w -peer0.org2.example.com | [2d8 12-05 07:29:45.90 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 | [2d0 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b816213c]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [2b6 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer1.org2.example.com | [2e0 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 245226a0d708ab366d37ee0a999c8817fdf011fd01ae29efc27420d37e115ea7 channel id: -peer0.org2.example.com | [2d9 12-05 07:29:45.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [2b7 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5f39d3f]Init get response status: 200 -peer1.org1.example.com | [2d1 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b816213c]Move state message COMPLETED -orderer.example.com | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK -peer1.org2.example.com | [2e1 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 245226a0d708ab366d37ee0a999c8817fdf011fd01ae29efc27420d37e115ea7 channel id: version: 1.0.4 -peer0.org2.example.com | [2da 12-05 07:29:45.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} -peer0.org1.example.com | [2b8 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5f39d3f]Init succeeded. Sending COMPLETED -orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf -peer1.org1.example.com | [2d2 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b816213c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [2db 12-05 07:29:45.90 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 | [2e2 12-05 07:29:46.26 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.4,txid=245226a0d708ab366d37ee0a999c8817fdf011fd01ae29efc27420d37e115ea7,syscc=true,proposal=0xc4218fc050,canname=lscc:1.0.4 -peer1.org1.example.com | [2d3 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b816213c]send state message COMPLETED -peer0.org1.example.com | [2b9 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5f39d3f]Move state message COMPLETED -orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= -peer1.org2.example.com | [2e3 12-05 07:29:46.26 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.4 -peer0.org2.example.com | [2dc 12-05 07:29:45.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [2ba 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e5f39d3f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [2dd 12-05 07:29:45.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421552c80, header 0xc4215519b0 -peer1.org1.example.com | [2d4 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b816213c]Received message COMPLETED from shim -peer1.org2.example.com | [2e4 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [2de 12-05 07:29:45.90 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 | -----END CERTIFICATE----- -peer1.org2.example.com | [2e5 12-05 07:29:46.26 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.4 -peer0.org1.example.com | [2bb 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5f39d3f]send state message COMPLETED -peer0.org2.example.com | [2df 12-05 07:29:45.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: ddbcfae02d5ce2e33aed67408d79997714ce046c9375eec80a38a5a16194c9a5 -peer1.org1.example.com | [2d5 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b816213c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [1e7 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [2e0 12-05 07:29:45.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: ddbcfae02d5ce2e33aed67408d79997714ce046c9375eec80a38a5a16194c9a5 channel id: -peer0.org1.example.com | [2bc 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e5f39d3f]Received message COMPLETED from shim -peer1.org2.example.com | [2e6 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [245226a0]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | [2d6 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b816213cae416f4d02e9341f9b82424b94ade40c6fdaa127a10b26c7b710e753]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [2e1 12-05 07:29:45.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: ddbcfae02d5ce2e33aed67408d79997714ce046c9375eec80a38a5a16194c9a5 channel id: version: 1.0.4 -peer0.org1.example.com | [2bd 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e5f39d3f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [2e7 12-05 07:29:46.26 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 | [2e2 12-05 07:29:45.90 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.4,txid=ddbcfae02d5ce2e33aed67408d79997714ce046c9375eec80a38a5a16194c9a5,syscc=true,proposal=0xc421552c80,canname=lscc:1.0.4 -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [2d7 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b816213cae416f4d02e9341f9b82424b94ade40c6fdaa127a10b26c7b710e753 -peer1.org2.example.com | [2e8 12-05 07:29:46.26 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 | [2e3 12-05 07:29:45.90 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.4 -peer0.org1.example.com | [2be 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e5f39d3f-65ed-488c-8050-20c023726e73]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [2d8 12-05 07:29:43.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 | [2e9 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [245226a0]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [2e4 12-05 07:29:45.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org1.example.com | [2d9 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [2bf 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e5f39d3f-65ed-488c-8050-20c023726e73 -peer0.org2.example.com | [2e5 12-05 07:29:45.90 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.4 -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -peer1.org1.example.com | [2da 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [2ea 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [245226a0]Move state message TRANSACTION -peer0.org2.example.com | [2e6 12-05 07:29:45.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ddbcfae0]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [2c0 12-05 07:29:43.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [2db 12-05 07:29:43.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org2.example.com | [2e7 12-05 07:29:45.90 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 | [2c1 12-05 07:29:43.62 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 | [2eb 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [245226a0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org1.example.com | [2dc 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org2.example.com | [2ec 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [2c2 12-05 07:29:43.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 [d9c06935-ee2d-40cf-8aa0-142e7d7dadf8] -peer0.org2.example.com | [2e8 12-05 07:29:45.90 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 | [2dd 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4219d5dd0 -peer1.org2.example.com | [2ed 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [245226a0]sending state message TRANSACTION -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -peer0.org2.example.com | [2e9 12-05 07:29:45.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ddbcfae0]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [2c3 12-05 07:29:43.63 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry -peer1.org1.example.com | [2de 12-05 07:29:45.50 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 | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org2.example.com | [2ee 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [245226a0]Received message TRANSACTION from shim -peer0.org2.example.com | [2ea 12-05 07:29:45.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ddbcfae0]Move state message TRANSACTION -peer1.org1.example.com | [2df 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [2c4 12-05 07:29:43.63 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] -peer0.org2.example.com | [2eb 12-05 07:29:45.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ddbcfae0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [2e0 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -peer1.org2.example.com | [2ef 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [245226a0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [2ec 12-05 07:29:45.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [2c5 12-05 07:29:43.63 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -peer1.org1.example.com | [2e1 12-05 07:29:45.50 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 | [2f0 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [245226a0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [2f1 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [245226a0]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [2f2 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [245226a0]Move state message COMPLETED -peer1.org2.example.com | [2f3 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [245226a0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [2f4 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [245226a0]send state message COMPLETED -peer1.org2.example.com | [2f5 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [245226a0]Received message COMPLETED from shim -peer1.org2.example.com | [2f6 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [245226a0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [2f7 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [245226a0d708ab366d37ee0a999c8817fdf011fd01ae29efc27420d37e115ea7]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [2f8 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:245226a0d708ab366d37ee0a999c8817fdf011fd01ae29efc27420d37e115ea7 -peer1.org2.example.com | [2f9 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -peer0.org2.example.com | [2ed 12-05 07:29:45.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ddbcfae0]sending state message TRANSACTION -peer1.org2.example.com | [2fa 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [2fb 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [2fc 12-05 07:29:46.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer1.org2.example.com | [2fd 12-05 07:29:50.24 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 | [2fe 12-05 07:29:50.24 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -peer1.org2.example.com | [2ff 12-05 07:29:50.24 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 | [300 12-05 07:29:50.24 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -peer1.org2.example.com | [301 12-05 07:29:50.24 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 | [302 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -peer1.org2.example.com | [303 12-05 07:30:07.58 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] -peer1.org2.example.com | [304 12-05 07:30:07.58 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] -peer0.org1.example.com | [2c6 12-05 07:29:43.63 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [2e2 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [2e3 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4219a5ef0, header 0xc4219d5e00 -peer1.org1.example.com | [2e4 12-05 07:29:45.50 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 | -----END CERTIFICATE----- -orderer.example.com | [1e8 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [2c7 12-05 07:29:43.63 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [305 12-05 07:30:07.58 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org1.example.com | [2e5 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 8f2567874462a7ee2e7648aaefaff9e0179f0da77a5721b725106dee4e024fa2 -peer1.org1.example.com | [2e6 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 8f2567874462a7ee2e7648aaefaff9e0179f0da77a5721b725106dee4e024fa2 channel id: -peer1.org1.example.com | [2e7 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 8f2567874462a7ee2e7648aaefaff9e0179f0da77a5721b725106dee4e024fa2 channel id: version: 1.0.4 -peer1.org2.example.com | [306 12-05 07:30:07.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [307 12-05 07:30:07.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org1.example.com | [2c8 12-05 07:29:43.63 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org2.example.com | [2ee 12-05 07:29:45.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ddbcfae0]Received message TRANSACTION from shim -peer1.org1.example.com | [2e8 12-05 07:29:45.50 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.4,txid=8f2567874462a7ee2e7648aaefaff9e0179f0da77a5721b725106dee4e024fa2,syscc=true,proposal=0xc4219a5ef0,canname=lscc:1.0.4 -peer1.org1.example.com | [2e9 12-05 07:29:45.50 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.4 -peer1.org1.example.com | [2ea 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [2eb 12-05 07:29:45.50 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.4 -orderer.example.com | [1e9 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [1ea 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | [1eb 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | [308 12-05 07:30:07.58 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421a74f60 -peer0.org1.example.com | [2c9 12-05 07:29:43.63 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit -peer1.org1.example.com | [2ec 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8f256787]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [2ca 12-05 07:29:43.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ccd54f80]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [2cb 12-05 07:29:43.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ccd54f80]Move state message COMPLETED -peer1.org1.example.com | [2ed 12-05 07:29:45.50 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 | [2ee 12-05 07:29:45.50 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 | [1ec 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org2.example.com | [309 12-05 07:30:07.58 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\352\225\231\321\005\020\254\227\263\210\002\"\017businesschannel*@bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030\304\0254\214\263\227?\006\tC\313k.\361\207\000\215\t\024\220K\257\315Z" -peer0.org1.example.com | [2cc 12-05 07:29:43.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ccd54f80]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [2cd 12-05 07:29:43.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ccd54f80]send state message COMPLETED -peer0.org1.example.com | [2ce 12-05 07:29:43.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ccd54f80]Received message COMPLETED from shim -peer0.org1.example.com | [2cf 12-05 07:29:43.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ccd54f80]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [2d0 12-05 07:29:43.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ccd54f80eb39c559c728c92f6478c606a3e76f14c7038955d5470018f4b4ada1]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [2d1 12-05 07:29:43.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ccd54f80eb39c559c728c92f6478c606a3e76f14c7038955d5470018f4b4ada1 -peer0.org1.example.com | [2d2 12-05 07:29:43.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [2d3 12-05 07:29:43.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [2d4 12-05 07:29:43.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [2d5 12-05 07:29:43.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org2.example.com | [2ef 12-05 07:29:45.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ddbcfae0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [2ef 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8f256787]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [2f0 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8f256787]Move state message TRANSACTION -peer1.org1.example.com | [2f1 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8f256787]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [2f2 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [2f3 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8f256787]sending state message TRANSACTION -peer1.org1.example.com | [2f4 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8f256787]Received message TRANSACTION from shim -peer1.org1.example.com | [2f5 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8f256787]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [2f6 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8f256787]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [2f7 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8f256787]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [2f8 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8f256787]Move state message COMPLETED -peer1.org1.example.com | [2f9 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8f256787]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [1ed 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -peer1.org2.example.com | [30a 12-05 07:30:07.58 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [30b 12-05 07:30:07.58 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [30c 12-05 07:30:07.58 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -peer1.org2.example.com | [30d 12-05 07:30:07.58 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [30e 12-05 07:30:07.58 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [2d6 12-05 07:29:45.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | [1ee 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [30f 12-05 07:30:07.58 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421af4000, header channel_header:"\010\003\032\014\010\352\225\231\321\005\020\254\227\263\210\002\"\017businesschannel*@bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030\304\0254\214\263\227?\006\tC\313k.\361\207\000\215\t\024\220K\257\315Z" -peer1.org2.example.com | [310 12-05 07:30:07.58 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [311 12-05 07:30:07.58 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [312 12-05 07:30:07.58 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org2.example.com | [313 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [314 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb] -peer1.org2.example.com | [315 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [316 12-05 07:30:07.59 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 | [317 12-05 07:30:07.59 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 [88367ba5-bd34-4944-bfb2-cdab81b1ea90] -peer1.org1.example.com | [2fa 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8f256787]send state message COMPLETED -peer1.org1.example.com | [2fb 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8f256787]Received message COMPLETED from shim -peer1.org1.example.com | [2fc 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8f256787]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [2fd 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8f2567874462a7ee2e7648aaefaff9e0179f0da77a5721b725106dee4e024fa2]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [2fe 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8f2567874462a7ee2e7648aaefaff9e0179f0da77a5721b725106dee4e024fa2 -peer1.org1.example.com | [2ff 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [300 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org1.example.com | [301 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [2d7 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421a6bec0 -peer0.org1.example.com | [2d8 12-05 07:29:45.11 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 | [2d9 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [2da 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -peer0.org1.example.com | [2db 12-05 07:29:45.11 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 | [2dc 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 -orderer.example.com | +/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN -orderer.example.com | wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 -orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL -orderer.example.com | liPpNxLSsBU= -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [2f0 12-05 07:29:45.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ddbcfae0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [318 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.4,txid=84439f76-e163-4a9c-8211-8a243fb03431,syscc=true,proposal=0x0,canname=vscc:1.0.4 -peer1.org1.example.com | [302 12-05 07:29:45.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer1.org1.example.com | [303 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org1.example.com | [2dd 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421a77e00, header 0xc421a6bef0 -peer0.org1.example.com | [2de 12-05 07:29:45.11 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 | [2df 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: be3e0ef93481f3e7b1399bc23cead2bede20e3ef49c87241407c430178b94693 -peer0.org1.example.com | [2e0 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: be3e0ef93481f3e7b1399bc23cead2bede20e3ef49c87241407c430178b94693 channel id: -peer0.org1.example.com | [2e1 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: be3e0ef93481f3e7b1399bc23cead2bede20e3ef49c87241407c430178b94693 channel id: version: 1.0.4 -peer0.org1.example.com | [2e2 12-05 07:29:45.11 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.4,txid=be3e0ef93481f3e7b1399bc23cead2bede20e3ef49c87241407c430178b94693,syscc=true,proposal=0xc421a77e00,canname=lscc:1.0.4 -orderer.example.com | [1ef 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [304 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org2.example.com | [2f1 12-05 07:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ddbcfae0]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [2e3 12-05 07:29:45.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) : lscc:1.0.4 -peer0.org1.example.com | [2e4 12-05 07:29:45.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 | [2e5 12-05 07:29:45.11 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.4 -peer0.org1.example.com | [2e6 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [be3e0ef9]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [2e7 12-05 07:29:45.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... -peer0.org1.example.com | [2e8 12-05 07:29:45.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... -peer0.org1.example.com | [2e9 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [be3e0ef9]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [2ea 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [be3e0ef9]Move state message TRANSACTION -peer0.org1.example.com | [2eb 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [be3e0ef9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [2ec 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [2ed 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [be3e0ef9]sending state message TRANSACTION -peer0.org1.example.com | [2ee 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be3e0ef9]Received message TRANSACTION from shim -peer0.org1.example.com | [2ef 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [be3e0ef9]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [2f0 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [be3e0ef9]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [2f1 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be3e0ef9]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [2f2 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be3e0ef9]Move state message COMPLETED -peer0.org1.example.com | [2f3 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [be3e0ef9]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [2f4 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be3e0ef9]send state message COMPLETED -peer0.org1.example.com | [2f5 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [be3e0ef9]Received message COMPLETED from shim -peer0.org1.example.com | [2f6 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [be3e0ef9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [2f7 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [be3e0ef93481f3e7b1399bc23cead2bede20e3ef49c87241407c430178b94693]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [2f8 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:be3e0ef93481f3e7b1399bc23cead2bede20e3ef49c87241407c430178b94693 -peer0.org1.example.com | [2f9 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [2fa 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [2fb 12-05 07:29:45.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [2fc 12-05 07:29:45.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org1.example.com | [2fd 12-05 07:29:46.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org1.example.com | [2fe 12-05 07:29:46.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421bcae10 -peer0.org1.example.com | [2ff 12-05 07:29:46.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 | [300 12-05 07:29:46.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [301 12-05 07:29:46.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -peer0.org1.example.com | [302 12-05 07:29:46.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 | [303 12-05 07:29:46.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [319 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb chaindID businesschannel -peer0.org2.example.com | [2f2 12-05 07:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ddbcfae0]Move state message COMPLETED -peer0.org2.example.com | [2f3 12-05 07:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ddbcfae0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [2f4 12-05 07:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ddbcfae0]send state message COMPLETED -peer0.org2.example.com | [2f5 12-05 07:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ddbcfae0]Received message COMPLETED from shim -peer0.org1.example.com | [304 12-05 07:29:46.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421bb9090, header 0xc421bcae40 -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 -orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h -peer1.org2.example.com | [31a 12-05 07:30:07.59 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.4 -peer1.org2.example.com | [31b 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [2f6 12-05 07:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ddbcfae0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA -orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx -peer1.org2.example.com | [31c 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.4 -peer0.org2.example.com | [2f7 12-05 07:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ddbcfae02d5ce2e33aed67408d79997714ce046c9375eec80a38a5a16194c9a5]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [2f8 12-05 07:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ddbcfae02d5ce2e33aed67408d79997714ce046c9375eec80a38a5a16194c9a5 -peer1.org1.example.com | [305 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org1.example.com | [305 12-05 07:29:46.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 | [306 12-05 07:29:46.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb -peer0.org1.example.com | [307 12-05 07:29:46.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb] -peer0.org1.example.com | [308 12-05 07:29:46.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 -peer0.org1.example.com | [309 12-05 07:29:46.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 [8167ca4f-2917-497f-bf3d-de91e667f803] -peer0.org1.example.com | [30a 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb channel id: businesschannel -peer0.org1.example.com | [30b 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb channel id: businesschannel version: 1.0.4 -peer1.org2.example.com | [31d 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [84439f76]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | zekLSULI9G2UUYA77A== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [1f0 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [2f9 12-05 07:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [2fa 12-05 07:29:45.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [2fb 12-05 07:29:45.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [31e 12-05 07:30:07.60 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [306 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422024de0 -peer0.org1.example.com | [30c 12-05 07:29:46.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.4,txid=bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb,syscc=true,proposal=0xc421bb9090,canname=lscc:1.0.4 -peer0.org2.example.com | [2fc 12-05 07:29:45.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer1.org2.example.com | [31f 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [84439f76]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [320 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [84439f76]Move state message TRANSACTION -peer1.org2.example.com | [321 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [84439f76]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [322 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [323 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [84439f76]sending state message TRANSACTION -peer1.org2.example.com | [324 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84439f76]Received message TRANSACTION from shim -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [325 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [84439f76]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [30d 12-05 07:29:46.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.4 -peer1.org1.example.com | [307 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\352\225\231\321\005\020\254\227\263\210\002\"\017businesschannel*@bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030\304\0254\214\263\227?\006\tC\313k.\361\207\000\215\t\024\220K\257\315Z" -peer0.org2.example.com | [2fd 12-05 07:29:50.04 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 -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -peer1.org2.example.com | [326 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [84439f76]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [30e 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [308 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [2fe 12-05 07:29:50.05 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -peer1.org2.example.com | [327 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org1.example.com | [309 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [30f 12-05 07:29:46.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.4 -peer0.org2.example.com | [2ff 12-05 07:29:50.05 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 | [328 12-05 07:30:07.60 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 | [30a 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -peer1.org2.example.com | [329 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer1.org1.example.com | [30b 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [310 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bb4adfec]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [300 12-05 07:29:50.05 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 -peer1.org1.example.com | [30c 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [311 12-05 07:29:46.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.org2.example.com | [301 12-05 07:29:50.05 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 | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G -peer1.org2.example.com | [32a 12-05 07:30:07.60 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [30d 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422042a80, header channel_header:"\010\003\032\014\010\352\225\231\321\005\020\254\227\263\210\002\"\017businesschannel*@bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030\304\0254\214\263\227?\006\tC\313k.\361\207\000\215\t\024\220K\257\315Z" -peer0.org1.example.com | [312 12-05 07:29:46.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... -peer0.org2.example.com | [302 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -peer1.org2.example.com | [32b 12-05 07:30:07.60 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h -peer1.org1.example.com | [30e 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [32c 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer0.org2.example.com | [303 12-05 07:30:05.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org1.example.com | [313 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bb4adfec]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [30f 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA -peer1.org2.example.com | [32d 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [e28cf8ab-0588-40d4-a158-091695663fda] -peer1.org1.example.com | [310 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [304 12-05 07:30:05.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421a8dc50 -peer0.org1.example.com | [314 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bb4adfec]Move state message TRANSACTION -orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx -peer1.org1.example.com | [311 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [305 12-05 07:30:05.68 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 | [32e 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [315 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bb4adfec]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [312 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb] -orderer.example.com | zekLSULI9G2UUYA77A== -peer1.org2.example.com | [32f 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [e28cf8ab-0588-40d4-a158-091695663fda] -peer0.org2.example.com | [306 12-05 07:30:05.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [313 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [316 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [314 12-05 07:30:07.59 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 | [330 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer0.org2.example.com | [307 12-05 07:30:05.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} -peer0.org1.example.com | [317 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bb4adfec]sending state message TRANSACTION -peer1.org1.example.com | [315 12-05 07:30:07.59 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 [2b05a236-0563-4129-819b-371b5b6a8cef] -orderer.example.com | [1f1 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org2.example.com | [331 12-05 07:30:07.60 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)(0x954570)} -peer1.org1.example.com | [316 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.4,txid=a6918900-49d1-4e18-97cf-2775d1473238,syscc=true,proposal=0x0,canname=vscc:1.0.4 -peer0.org2.example.com | [308 12-05 07:30:05.68 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 | [318 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bb4adfec]Received message TRANSACTION from shim -peer1.org2.example.com | [332 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer1.org1.example.com | [317 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb chaindID businesschannel -peer0.org1.example.com | [319 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bb4adfec]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [1f2 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org2.example.com | [333 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84439f76]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [318 12-05 07:30:07.59 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.4 -peer0.org1.example.com | [31a 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [bb4adfec]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [334 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84439f76]Move state message COMPLETED -peer0.org2.example.com | [309 12-05 07:30:05.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [319 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [1f3 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [335 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [84439f76]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [31b 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [bb4adfec]Sending GET_STATE -peer1.org1.example.com | [31a 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.4 -peer1.org2.example.com | [336 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84439f76]send state message COMPLETED -orderer.example.com | [1f4 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org1.example.com | [31b 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a6918900]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [30a 12-05 07:30:05.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421a39770, header 0xc421a8dc80 -peer0.org1.example.com | [31c 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bb4adfec]Received message GET_STATE from shim -peer1.org2.example.com | [337 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [84439f76]Received message COMPLETED from shim -orderer.example.com | [1f5 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -peer1.org1.example.com | [31c 12-05 07:30:07.59 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 | [338 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [84439f76]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [30b 12-05 07:30:05.68 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 | [31d 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bb4adfec]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [1f6 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [339 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [84439f76-e163-4a9c-8211-8a243fb03431]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [31d 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a6918900]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [33a 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:84439f76-e163-4a9c-8211-8a243fb03431 -peer0.org2.example.com | [30c 12-05 07:30:05.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 -peer1.org2.example.com | [33b 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [31e 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [bb4adfec]Received GET_STATE, invoking get state from ledger -peer1.org1.example.com | [31e 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a6918900]Move state message TRANSACTION -peer1.org2.example.com | [33c 12-05 07:30:07.61 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 [88367ba5-bd34-4944-bfb2-cdab81b1ea90] -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [30d 12-05 07:30:05.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4] -peer1.org2.example.com | [33d 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org1.example.com | [320 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bb4adfec] getting state for chaincode lscc, key mycc, channel businesschannel -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -peer1.org2.example.com | [33e 12-05 07:30:07.61 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 | [31f 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a6918900]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [30e 12-05 07:30:05.68 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 | [321 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [33f 12-05 07:30:07.61 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)(0xc4218f5680), Data:(*common.BlockData)(0xc421a89000), Metadata:(*common.BlockMetadata)(0xc421a89040)}, doMVCCValidation=true -peer0.org2.example.com | [30f 12-05 07:30:05.68 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 [b21c8f37-ff13-487b-b888-069ed16554ee] -peer1.org1.example.com | [320 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [340 12-05 07:30:07.61 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 | [321 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a6918900]sending state message TRANSACTION -peer0.org2.example.com | [310 12-05 07:30:05.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 channel id: businesschannel -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -peer1.org2.example.com | [341 12-05 07:30:07.61 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=mycc -peer0.org1.example.com | [322 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bb4adfec]No state associated with key: mycc. Sending RESPONSE with an empty payload -peer1.org1.example.com | [322 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a6918900]Received message TRANSACTION from shim -peer0.org2.example.com | [311 12-05 07:30:05.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 channel id: businesschannel version: 1.0.4 -peer1.org2.example.com | [342 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb] marked as valid by state validator -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [323 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [bb4adfec]handleGetState serial send RESPONSE -orderer.example.com | BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W -peer1.org1.example.com | [323 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a6918900]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [312 12-05 07:30:05.68 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.4,txid=74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4,syscc=true,proposal=0xc421a39770,canname=lscc:1.0.4 -peer1.org2.example.com | [343 12-05 07:30:07.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xf4, 0x6f, 0x6e, 0xab, 0xc2, 0x16, 0xcc, 0x19, 0xce, 0x35, 0xf2, 0xd1, 0x24, 0x18, 0x27, 0xf2, 0xf2, 0x3a, 0x7f, 0x1b, 0x75, 0x2, 0x65, 0x19, 0x46, 0x4e, 0x41, 0x5f, 0xaa, 0xec, 0x69, 0xe2} txOffsets= -orderer.example.com | RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org2.example.com | [313 12-05 07:30:05.68 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.4 -peer0.org1.example.com | [324 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bb4adfec]Received message RESPONSE from shim -peer1.org1.example.com | [324 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a6918900]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | txId=bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb locPointer=offset=70, bytesLength=3389 -peer0.org2.example.com | [314 12-05 07:30:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ -peer0.org1.example.com | [325 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bb4adfec]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | ] -peer1.org1.example.com | [325 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [326 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [bb4adfec]before send -peer0.org2.example.com | [315 12-05 07:30:05.68 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.4 -orderer.example.com | kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc -peer1.org2.example.com | [344 12-05 07:30:07.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12015, bytesLength=3389] for tx ID: [bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb] to index -peer1.org1.example.com | [326 12-05 07:30:07.59 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 | [316 12-05 07:30:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [74f4437e]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [327 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [bb4adfec]after send -orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq -peer1.org2.example.com | [345 12-05 07:30:07.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12015, bytesLength=3389] for tx number:[0] ID: [bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb] to blockNumTranNum index -peer0.org1.example.com | [328 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [bb4adfec]Received RESPONSE, communicated (state:ready) -peer0.org2.example.com | [317 12-05 07:30:05.68 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 | [346 12-05 07:30:07.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[17162], isChainEmpty=[false], lastBlockNumber=[1] -peer1.org1.example.com | [327 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -orderer.example.com | VA7fF8MfGA== -peer0.org1.example.com | [329 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [bb4adfec]GetState received payload RESPONSE -peer1.org2.example.com | [347 12-05 07:30:07.62 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 | [318 12-05 07:30:05.68 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----- -peer1.org1.example.com | [328 12-05 07:30:07.59 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [32a 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [bb4adfec]Inside putstate -peer1.org2.example.com | [348 12-05 07:30:07.62 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 | [1f7 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [329 12-05 07:30:07.60 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [31f 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [319 12-05 07:30:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [74f4437e]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [349 12-05 07:30:07.62 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 | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -peer1.org2.example.com | [34a 12-05 07:30:07.62 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, 0x6d, 0x79, 0x63, 0x63}] -peer0.org2.example.com | [31a 12-05 07:30:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74f4437e]Move state message TRANSACTION -peer1.org1.example.com | [32a 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [31b 12-05 07:30:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74f4437e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [34b 12-05 07:30:07.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer0.org1.example.com | [32b 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [bb4adfec]Sending PUT_STATE -peer1.org1.example.com | [32b 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [9f297e3e-a991-4261-bca9-245a0118efc2] -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [32c 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bb4adfec]Received message PUT_STATE from shim -peer0.org2.example.com | [31c 12-05 07:30:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -peer1.org2.example.com | [34c 12-05 07:30:07.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer1.org1.example.com | [32c 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [32d 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bb4adfec]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org2.example.com | [31d 12-05 07:30:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74f4437e]sending state message TRANSACTION -peer0.org2.example.com | [31e 12-05 07:30:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74f4437e]Received message TRANSACTION from shim -peer0.org2.example.com | [31f 12-05 07:30:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74f4437e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [320 12-05 07:30:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [74f4437e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [321 12-05 07:30:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [74f4437e]Sending GET_STATE -peer0.org2.example.com | [322 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74f4437e]Received message GET_STATE from shim -peer0.org2.example.com | [323 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74f4437e]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [324 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [74f4437e]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [326 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [74f4437e] getting state for chaincode lscc, key mycc, channel businesschannel -peer1.org2.example.com | [34d 12-05 07:30:07.62 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 | [32e 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [32f 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bb4adfec]state is ready -peer0.org1.example.com | [330 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bb4adfec]Completed PUT_STATE. Sending RESPONSE -peer1.org1.example.com | [32d 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [9f297e3e-a991-4261-bca9-245a0118efc2] -peer1.org1.example.com | [32e 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer1.org1.example.com | [32f 12-05 07:30:07.60 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)(0x954570)} -peer1.org1.example.com | [330 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer1.org1.example.com | [331 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a6918900]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [332 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a6918900]Move state message COMPLETED -peer0.org2.example.com | [327 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [34e 12-05 07:30:07.62 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 | [331 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [bb4adfec]enterBusyState trigger event RESPONSE -peer0.org1.example.com | [332 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bb4adfec]Move state message RESPONSE -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer1.org1.example.com | [333 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a6918900]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [328 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [74f4437e]No state associated with key: mycc. Sending RESPONSE with an empty payload -peer0.org2.example.com | [329 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [74f4437e]handleGetState serial send RESPONSE -peer0.org2.example.com | [32a 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74f4437e]Received message RESPONSE from shim -peer0.org1.example.com | [333 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bb4adfec]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -peer1.org1.example.com | [334 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a6918900]send state message COMPLETED -peer1.org2.example.com | [34f 12-05 07:30:07.62 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 | [334 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [335 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a6918900]Received message COMPLETED from shim -peer1.org2.example.com | [350 12-05 07:30:07.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org2.example.com | [32b 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74f4437e]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -orderer.example.com | Xk1Xy2C2aVQjOcr++w== -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [336 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a6918900]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [335 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bb4adfec]sending state message RESPONSE -peer0.org1.example.com | [336 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bb4adfec]Received message RESPONSE from shim -peer0.org1.example.com | [337 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bb4adfec]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [338 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [bb4adfec]before send -peer0.org1.example.com | [339 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [bb4adfec]after send -peer0.org1.example.com | [33a 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [bb4adfec]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [33b 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [bb4adfec]Received RESPONSE. Successfully updated state -peer0.org1.example.com | [33c 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bb4adfec]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [33d 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bb4adfec]Move state message COMPLETED -peer0.org2.example.com | [32c 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [74f4437e]before send -peer1.org2.example.com | [351 12-05 07:30:07.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [1] contains transaction id: bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb -peer1.org1.example.com | [337 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a6918900-49d1-4e18-97cf-2775d1473238]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [338 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a6918900-49d1-4e18-97cf-2775d1473238 -peer1.org1.example.com | [339 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [33a 12-05 07:30:07.60 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 [2b05a236-0563-4129-819b-371b5b6a8cef] -peer1.org1.example.com | [33b 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org1.example.com | [33c 12-05 07:30:07.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 | [33e 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bb4adfec]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [32d 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [74f4437e]after send -peer1.org2.example.com | [352 12-05 07:30:07.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] -peer1.org2.example.com | [353 12-05 07:30:07.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org2.example.com | [354 12-05 07:30:07.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [33d 12-05 07:30:07.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)(0xc421f0ab80), Data:(*common.BlockData)(0xc42204ae00), Metadata:(*common.BlockMetadata)(0xc42204ae40)}, doMVCCValidation=true -peer1.org1.example.com | [33e 12-05 07:30:07.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.org1.example.com | [33f 12-05 07:30:07.60 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=mycc -peer1.org1.example.com | [340 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb] marked as valid by state validator -peer1.org1.example.com | [341 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xf4, 0x6f, 0x6e, 0xab, 0xc2, 0x16, 0xcc, 0x19, 0xce, 0x35, 0xf2, 0xd1, 0x24, 0x18, 0x27, 0xf2, 0xf2, 0x3a, 0x7f, 0x1b, 0x75, 0x2, 0x65, 0x19, 0x46, 0x4e, 0x41, 0x5f, 0xaa, 0xec, 0x69, 0xe2} txOffsets= -peer1.org1.example.com | txId=bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb locPointer=offset=70, bytesLength=3389 -peer1.org1.example.com | ] -peer1.org1.example.com | [342 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12015, bytesLength=3389] for tx ID: [bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb] to index -peer0.org1.example.com | [33f 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bb4adfec]send state message COMPLETED -peer0.org1.example.com | [340 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bb4adfec]Received message COMPLETED from shim -peer0.org1.example.com | [341 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bb4adfec]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [342 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [343 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb -peer0.org1.example.com | [344 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [345 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb,syscc=false,proposal=0xc421bb9090,canname=mycc:1.0 -peer1.org2.example.com | [355 12-05 07:30:07.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org1.example.com | [343 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12015, bytesLength=3389] for tx number:[0] ID: [bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb] to blockNumTranNum index -peer1.org1.example.com | [344 12-05 07:30:07.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=[17162], isChainEmpty=[false], lastBlockNumber=[1] -peer1.org1.example.com | [345 12-05 07:30:07.60 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 | [346 12-05 07:30:07.60 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 | [347 12-05 07:30:07.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.org1.example.com | [348 12-05 07:30:07.60 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, 0x6d, 0x79, 0x63, 0x63}] -peer0.org2.example.com | [32e 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [74f4437e]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [346 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU launchAndWaitForRegister fetched 1818 bytes from file system -peer0.org1.example.com | [347 12-05 07:29:46.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched -peer0.org1.example.com | [348 12-05 07:29:46.56 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 | [349 12-05 07:29:46.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.org1.example.com | [34a 12-05 07:29:46.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer0.org1.example.com) -peer0.org1.example.com | [34b 12-05 07:29:46.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 -peer0.org1.example.com | [34c 12-05 07:29:46.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=mycc:1.0 -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | [349 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer0.org2.example.com | [32f 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [74f4437e]GetState received payload RESPONSE -orderer.example.com | [1f8 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -orderer.example.com | Xk1Xy2C2aVQjOcr++w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [1f9 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [1fa 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [1fb 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -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.org1.example.com | [34d 12-05 07:29:46.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-mycc-1.0) lock -peer0.org1.example.com | [34e 12-05 07:29:46.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-mycc-1.0) lock -peer0.org1.example.com | [34f 12-05 07:29:46.57 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-mycc-1.0 -peer1.org2.example.com | [356 12-05 07:30:07.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -orderer.example.com | [1fc 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [34a 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer0.org2.example.com | [330 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [74f4437e]Inside putstate -peer0.org1.example.com | [350 12-05 07:29:46.57 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org1.example.com-mycc-1.0(No such container: dev-peer0.org1.example.com-mycc-1.0) -peer0.org1.example.com | [351 12-05 07:29:46.57 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org1.example.com-mycc-1.0 (No such container: dev-peer0.org1.example.com-mycc-1.0) -peer0.org1.example.com | [352 12-05 07:29:46.57 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org1.example.com-mycc-1.0 (No such container: dev-peer0.org1.example.com-mycc-1.0) -peer0.org1.example.com | [353 12-05 07:29:46.57 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org1.example.com-mycc-1.0 -peer0.org1.example.com | [354 12-05 07:29:46.57 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: 104_default -peer0.org1.example.com | [355 12-05 07:29:46.57 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 -peer1.org1.example.com | [34b 12-05 07:30:07.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 | [357 12-05 07:30:07.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org2.example.com | [331 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [74f4437e]Sending PUT_STATE -peer0.org1.example.com | [356 12-05 07:29:46.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 | [1fd 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [1fe 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [1ff 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [200 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0ABC060A1B08011A0608E69599D10522...3417B5D60666CE4356C05C9F9FCC828F -orderer.example.com | [201 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 82B1DD956B330869CE03081F2D6F6C89E561BC4A39EE9EBCBC8D1DC5A7204967 -orderer.example.com | [202 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [358 12-05 07:30:22.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org2.example.com | [325 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [332 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74f4437e]Received message PUT_STATE from shim -peer0.org2.example.com | [333 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74f4437e]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org1.example.com | [357 12-05 07:29:46.58 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -orderer.example.com | [203 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [204 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [205 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [206 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB8060A1708041A0608E69599D10522...6E61C4F3D3971204A86246FB87DA4242 -peer1.org1.example.com | [34c 12-05 07:30:07.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 [1] with [1] transactions -peer1.org1.example.com | [34d 12-05 07:30:07.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 [1] -peer1.org1.example.com | [34e 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org1.example.com | [34f 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [1] contains transaction id: bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb -peer1.org1.example.com | [350 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] -peer1.org1.example.com | [351 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org1.example.com | [352 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [353 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 -peer0.org1.example.com | ADD binpackage.tar /usr/local/bin -peer0.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ -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.4" \ -peer0.org1.example.com | org.hyperledger.fabric.base.version="0.3.2" -peer0.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.4 -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 | [358 12-05 07:29:46.58 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.4 -peer0.org1.example.com | [359 12-05 07:29:49.61 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 | [35a 12-05 07:29:49.62 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -peer0.org1.example.com | [35b 12-05 07:29:49.62 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... -peer0.org1.example.com | [35c 12-05 07:29:49.62 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -peer0.org1.example.com | [35d 12-05 07:29:49.62 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 | [334 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [335 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [74f4437e]state is ready -peer0.org2.example.com | [336 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [74f4437e]Completed PUT_STATE. Sending RESPONSE -peer0.org2.example.com | [337 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [74f4437e]enterBusyState trigger event RESPONSE -peer0.org2.example.com | [338 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74f4437e]Move state message RESPONSE -peer1.org2.example.com | [359 12-05 07:30:22.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421bdfa10 -peer1.org1.example.com | [354 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org1.example.com | [35e 12-05 07:29:49.62 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -orderer.example.com | [207 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 6D75B099A863213FA7FE150A7E4736F5744C2696DEB47B82AD9A81EAB363C944 -peer0.org2.example.com | [339 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74f4437e]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org2.example.com | [35a 12-05 07:30:22.11 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 | [35f 12-05 07:30:05.00 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 -peer0.org1.example.com | [360 12-05 07:30:05.00 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -peer0.org1.example.com | [361 12-05 07:30:05.00 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 -peer1.org1.example.com | [355 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org1.example.com | [356 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org1.example.com | [357 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [35b 12-05 07:30:22.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [362 12-05 07:30:05.09 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 -peer0.org2.example.com | [33a 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [358 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -orderer.example.com | [208 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: testchainid] Broadcast is filtering message of type ORDERER_TRANSACTION -orderer.example.com | [209 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org2.example.com | [33b 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74f4437e]sending state message RESPONSE -peer1.org2.example.com | [35c 12-05 07:30:22.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} -peer1.org2.example.com | [35d 12-05 07:30:22.11 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 | [359 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421d108a0 -peer1.org1.example.com | [35a 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\375\225\231\321\005\020\214\274\276\305\002\"\017businesschannel*@74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030\246\362\213'\253\030~\332\264n\307'_\362\231\r\225\324\245\240\032\247N\240" -peer1.org1.example.com | [35b 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [35c 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [33c 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74f4437e]Received message RESPONSE from shim -peer1.org2.example.com | [35e 12-05 07:30:22.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [363 12-05 07:30:05.48 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org1.example.com-mycc-1.0 -peer0.org1.example.com | [364 12-05 07:30:05.48 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-mycc-1.0) -peer0.org1.example.com | [365 12-05 07:30:05.52 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 | [366 12-05 07:30:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [33d 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74f4437e]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org2.example.com | [33e 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [74f4437e]before send -peer0.org2.example.com | [33f 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [74f4437e]after send -peer0.org2.example.com | [341 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [74f4437e]Received RESPONSE. Successfully updated state -peer0.org2.example.com | [342 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74f4437e]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [340 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [74f4437e]Received RESPONSE, communicated (state:ready) -peer0.org2.example.com | [343 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74f4437e]Move state message COMPLETED -peer0.org2.example.com | [344 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74f4437e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [345 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74f4437e]send state message COMPLETED -peer0.org2.example.com | [346 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74f4437e]Received message COMPLETED from shim -peer0.org2.example.com | [347 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74f4437e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [348 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [349 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 -peer0.org2.example.com | [34a 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [34b 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4,syscc=false,proposal=0xc421a39770,canname=mycc:1.0 -peer0.org2.example.com | [34c 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU launchAndWaitForRegister fetched 1818 bytes from file system -peer0.org2.example.com | [34d 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched -peer0.org2.example.com | [34e 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org2.example.com | [34f 12-05 07:30:05.69 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] -peer0.org2.example.com | [350 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer0.org2.example.com) -peer0.org2.example.com | [351 12-05 07:30:05.69 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 -peer0.org2.example.com | [352 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=mycc:1.0 -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} -peer1.org1.example.com | [35d 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} -peer1.org2.example.com | [35f 12-05 07:30:22.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421b793b0, header 0xc421bdfa40 -peer0.org1.example.com | [367 12-05 07:30:05.52 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 | [20a 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026420 gate 1512458982936110200 evaluation starts -orderer.example.com | [20b 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026420 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | [35e 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [353 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org2.example.com-mycc-1.0) lock -peer1.org2.example.com | [360 12-05 07:30:22.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -peer1.org2.example.com | [361 12-05 07:30:22.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 343109ce617bf86734db848e1c68f2a32c2d71a29ff6f98712689ba555987f07 -peer1.org2.example.com | [362 12-05 07:30:22.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [343109ce617bf86734db848e1c68f2a32c2d71a29ff6f98712689ba555987f07] -peer1.org2.example.com | [363 12-05 07:30:22.11 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 | [364 12-05 07:30:22.11 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 [f0b420ca-8857-465c-a1d9-fa925645ec15] -peer0.org1.example.com | [368 12-05 07:30:05.52 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.org2.example.com | [354 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org2.example.com-mycc-1.0) lock -peer0.org2.example.com | [355 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org2.example.com-mycc-1.0 -peer0.org2.example.com | [356 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org2.example.com-mycc-1.0(No such container: dev-peer0.org2.example.com-mycc-1.0) -peer0.org2.example.com | [357 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org2.example.com-mycc-1.0 (No such container: dev-peer0.org2.example.com-mycc-1.0) -peer0.org2.example.com | [358 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org2.example.com-mycc-1.0 (No such container: dev-peer0.org2.example.com-mycc-1.0) -peer0.org2.example.com | [359 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org2.example.com-mycc-1.0 -peer0.org2.example.com | [35a 12-05 07:30:05.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: 104_default -peer0.org2.example.com | [35b 12-05 07:30:05.70 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-mycc-1.0 -peer0.org2.example.com | [35c 12-05 07:30:05.70 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 | [35f 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [360 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421d1aa80, header channel_header:"\010\003\032\014\010\375\225\231\321\005\020\214\274\276\305\002\"\017businesschannel*@74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030\246\362\213'\253\030~\332\264n\307'_\362\231\r\225\324\245\240\032\247N\240" -peer0.org1.example.com | [369 12-05 07:30:05.52 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 mycc:1.0 -orderer.example.com | [20c 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026420 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [20d 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [964 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018ece0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | [965 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018ece0 principal evaluation fails +orderer.example.com | [966 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018ece0 gate 1513244081433381200 evaluation fails +orderer.example.com | [967 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018ecf0 gate 1513244081433914100 evaluation starts +orderer.example.com | [968 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018ecf0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [969 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018ecf0 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [96a 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [35d 12-05 07:30:05.70 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 -peer1.org1.example.com | [361 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org1.example.com | [362 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org1.example.com | [363 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org1.example.com | [364 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [365 12-05 07:30:22.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 343109ce617bf86734db848e1c68f2a32c2d71a29ff6f98712689ba555987f07 channel id: businesschannel -peer1.org2.example.com | [366 12-05 07:30:22.11 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.4,txid=343109ce617bf86734db848e1c68f2a32c2d71a29ff6f98712689ba555987f07,syscc=true,proposal=0xc421b793b0,canname=lscc:1.0.4 -peer1.org2.example.com | [367 12-05 07:30:22.11 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.4 -peer1.org2.example.com | [368 12-05 07:30:22.11 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 | [369 12-05 07:30:22.11 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.4 -peer1.org2.example.com | [36a 12-05 07:30:22.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [343109ce]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [36b 12-05 07:30:22.11 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.org2.example.com | ADD binpackage.tar /usr/local/bin -peer0.org1.example.com | [36a 12-05 07:30:05.52 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:"mycc:1.0" , sending back REGISTERED -peer0.org1.example.com | [36b 12-05 07:30:05.52 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 | [36c 12-05 07:30:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed -peer1.org1.example.com | [365 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4] -peer1.org2.example.com | [36c 12-05 07:30:22.11 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 | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -orderer.example.com | KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL -orderer.example.com | gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA -peer0.org1.example.com | [36d 12-05 07:30:05.52 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 | [36e 12-05 07:30:05.52 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.org1.example.com | [36f 12-05 07:30:05.52 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 | [370 12-05 07:30:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bb4adfec]Move state message READY -peer0.org1.example.com | [371 12-05 07:30:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bb4adfec]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [372 12-05 07:30:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [bb4adfec]Entered state ready -peer0.org1.example.com | [373 12-05 07:30:05.52 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:bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb -peer0.org1.example.com | [374 12-05 07:30:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bb4adfec]sending state message READY -peer0.org1.example.com | [375 12-05 07:30:05.52 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 | [36d 12-05 07:30:22.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [343109ce]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [36e 12-05 07:30:22.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [343109ce]Move state message TRANSACTION -peer1.org2.example.com | [36f 12-05 07:30:22.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [343109ce]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [370 12-05 07:30:22.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -peer0.org1.example.com | [376 12-05 07:30:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org1.example.com | [366 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [371 12-05 07:30:22.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [343109ce]sending state message TRANSACTION -peer0.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -peer0.org2.example.com | org.hyperledger.fabric.version="1.0.4" \ -peer0.org2.example.com | org.hyperledger.fabric.base.version="0.3.2" -peer0.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.4 -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 | [35e 12-05 07:30:05.71 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.4 -peer0.org2.example.com | [35f 12-05 07:30:07.56 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] -peer0.org2.example.com | [360 12-05 07:30:07.56 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] -peer0.org2.example.com | [361 12-05 07:30:07.56 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org2.example.com | [362 12-05 07:30:07.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org2.example.com | [363 12-05 07:30:07.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org2.example.com | [364 12-05 07:30:07.56 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421bb7050 -peer0.org1.example.com | [377 12-05 07:30:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [367 12-05 07:30:23.92 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 | [372 12-05 07:30:22.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [343109ce]Received message TRANSACTION from shim -orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX -peer0.org1.example.com | [378 12-05 07:30:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer0.org2.example.com | [365 12-05 07:30:07.56 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\352\225\231\321\005\020\254\227\263\210\002\"\017businesschannel*@bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030\304\0254\214\263\227?\006\tC\313k.\361\207\000\215\t\024\220K\257\315Z" -peer1.org1.example.com | [368 12-05 07:30:23.92 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 [133125e6-e991-4bc0-be11-9bf2df8b2ae8] -peer0.org1.example.com | [379 12-05 07:30:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bb4adfec]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [366 12-05 07:30:07.56 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [373 12-05 07:30:22.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [343109ce]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [37a 12-05 07:30:05.52 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 | [367 12-05 07:30:07.56 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U -peer1.org1.example.com | [369 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.4,txid=024b2f71-e221-4a4e-b060-ddf8ba0c60f0,syscc=true,proposal=0x0,canname=vscc:1.0.4 -peer0.org1.example.com | [37b 12-05 07:30:05.52 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.org2.example.com | [374 12-05 07:30:22.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [343109ce]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [368 12-05 07:30:07.56 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -orderer.example.com | iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv -peer1.org1.example.com | [36a 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 chaindID businesschannel -peer0.org1.example.com | [37c 12-05 07:30:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bb4adfec]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [369 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [37d 12-05 07:30:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bb4adfec]Move state message INIT -peer1.org1.example.com | [36b 12-05 07:30:23.92 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.4 -peer1.org2.example.com | [375 12-05 07:30:22.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [343109ce]Sending GET_STATE -peer0.org1.example.com | [37e 12-05 07:30:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bb4adfec]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | Tg== -peer0.org1.example.com | [37f 12-05 07:30:05.52 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 | [36a 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [36c 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [376 12-05 07:30:22.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [343109ce]Received message GET_STATE from shim -peer0.org1.example.com | [380 12-05 07:30:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bb4adfec]sending state message INIT -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [36b 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4202a2a80, header channel_header:"\010\003\032\014\010\352\225\231\321\005\020\254\227\263\210\002\"\017businesschannel*@bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030\304\0254\214\263\227?\006\tC\313k.\361\207\000\215\t\024\220K\257\315Z" -peer1.org1.example.com | [36d 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.4 -peer0.org1.example.com | [381 12-05 07:30:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bb4adfec]Received message PUT_STATE from shim -peer1.org2.example.com | [377 12-05 07:30:22.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [343109ce]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [36c 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org1.example.com | [36e 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [024b2f71]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [20e 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -peer0.org1.example.com | [382 12-05 07:30:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bb4adfec]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org2.example.com | [378 12-05 07:30:22.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [343109ce]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [36d 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [379 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [36e 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [383 12-05 07:30:05.52 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 | [36f 12-05 07:30:23.93 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 | [20f 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -peer1.org2.example.com | [37a 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [343109ce] getting state for chaincode lscc, key mycc, channel businesschannel -orderer.example.com | [210 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026420 principal matched by identity 0 -peer0.org1.example.com | [384 12-05 07:30:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bb4adfec]state is ready -peer0.org1.example.com | [385 12-05 07:30:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bb4adfec]Completed PUT_STATE. Sending RESPONSE -peer1.org2.example.com | [37b 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | [36f 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [370 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [024b2f71]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [211 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 6d 75 b0 99 a8 63 21 3f a7 fe 15 0a 7e 47 36 f5 |mu...c!?....~G6.| -peer0.org1.example.com | [386 12-05 07:30:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [bb4adfec]enterBusyState trigger event RESPONSE -peer0.org2.example.com | [370 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb] -peer1.org1.example.com | [371 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [024b2f71]Move state message TRANSACTION -peer1.org2.example.com | [37c 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [343109ce]Got state. Sending RESPONSE -peer0.org1.example.com | [387 12-05 07:30:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bb4adfec]Move state message RESPONSE -orderer.example.com | 00000010 74 4c 26 96 de b4 7b 82 ad 9a 81 ea b3 63 c9 44 |tL&...{......c.D| -peer0.org2.example.com | [371 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [388 12-05 07:30:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bb4adfec]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer0.org1.example.com | [389 12-05 07:30:05.52 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 | [372 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [024b2f71]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [372 12-05 07:30:07.57 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 | [37d 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [343109ce]handleGetState serial send RESPONSE -peer0.org1.example.com | [38a 12-05 07:30:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bb4adfec]sending state message RESPONSE -orderer.example.com | [212 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 10 a5 d6 86 81 97 78 8b 88 a8 7d 2d |0D. ......x...}-| -peer1.org2.example.com | [37e 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [343109ce]Received message RESPONSE from shim -peer1.org1.example.com | [373 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [38b 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bb4adfec]Received message PUT_STATE from shim -peer0.org2.example.com | [373 12-05 07:30:07.57 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 [b3daeae7-7891-4c5c-a848-f74a5752b14a] -orderer.example.com | 00000010 6c 9f 6c 4c 0b c2 15 bb 8c ca f2 a1 cd 6e a8 5e |l.lL.........n.^| -peer0.org1.example.com | [38c 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bb4adfec]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org2.example.com | [37f 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [343109ce]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | 00000020 78 93 e0 f5 02 20 53 c5 d3 0c 38 c4 0f 41 23 e4 |x.... S...8..A#.| -peer1.org1.example.com | [374 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [024b2f71]sending state message TRANSACTION -peer0.org2.example.com | [374 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.4,txid=5b8e0f84-8c51-4bf1-87c4-ba009ef56d98,syscc=true,proposal=0x0,canname=vscc:1.0.4 -peer1.org2.example.com | [380 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [343109ce]before send -peer0.org1.example.com | [38d 12-05 07:30:05.53 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 | 00000030 a9 94 6a 0d db 0f e3 2b c9 53 a9 a9 44 94 d4 a3 |..j....+.S..D...| -peer0.org2.example.com | [375 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb chaindID businesschannel -peer1.org2.example.com | [381 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [343109ce]after send -peer1.org1.example.com | [375 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [024b2f71]Received message TRANSACTION from shim -peer0.org1.example.com | [38e 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bb4adfec]state is ready -orderer.example.com | 00000040 4c cb d3 11 45 f1 |L...E.| -peer1.org2.example.com | [382 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [343109ce]Received RESPONSE, communicated (state:ready) -peer1.org1.example.com | [376 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [024b2f71]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [376 12-05 07:30:07.57 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.4 -peer0.org1.example.com | [38f 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bb4adfec]Completed PUT_STATE. Sending RESPONSE -orderer.example.com | [213 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026420 principal evaluation succeeds for identity 0 -peer0.org2.example.com | [377 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [383 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [343109ce]GetState received payload RESPONSE -orderer.example.com | [214 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026420 gate 1512458982936110200 evaluation succeeds -peer1.org1.example.com | [377 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [024b2f71]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [378 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.4 -peer1.org2.example.com | [384 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [343109ce]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [390 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [bb4adfec]enterBusyState trigger event RESPONSE -orderer.example.com | [215 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [Writers %!s(*policies.implicitMetaPolicy=&{0xc42039a2a0 1 [0xc420114708]})]} -peer0.org2.example.com | [379 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5b8e0f84]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [385 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [343109ce]Move state message COMPLETED -peer1.org1.example.com | [378 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | [216 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [386 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [343109ce]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [217 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [391 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bb4adfec]Move state message RESPONSE -peer0.org2.example.com | [37a 12-05 07:30:07.57 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 | [379 12-05 07:30:23.93 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 | [387 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [343109ce]send state message COMPLETED -peer0.org1.example.com | [392 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bb4adfec]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -orderer.example.com | [218 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [37b 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5b8e0f84]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [219 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [37a 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer0.org1.example.com | [393 12-05 07:30:05.53 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 | [388 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [343109ce]Received message COMPLETED from shim -orderer.example.com | [21a 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0ABC060A1B08011A0608E69599D10522...07577269746572731A0641646D696E73 -peer1.org1.example.com | [37b 12-05 07:30:23.93 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [37c 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b8e0f84]Move state message TRANSACTION -peer0.org1.example.com | [394 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bb4adfec]sending state message RESPONSE -orderer.example.com | [21b 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: E4064934CAEA7521FEE5A6A6425A075A2CADB8C8145D00094ED58E6E1DD01749 -peer1.org2.example.com | [389 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [343109ce]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [21c 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org2.example.com | [37d 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b8e0f84]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [395 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bb4adfec]Received message COMPLETED from shim -orderer.example.com | [21d 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [37c 12-05 07:30:23.93 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [38a 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [343109ce617bf86734db848e1c68f2a32c2d71a29ff6f98712689ba555987f07]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [37e 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [21e 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [37d 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org2.example.com | [38b 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:343109ce617bf86734db848e1c68f2a32c2d71a29ff6f98712689ba555987f07 -peer0.org1.example.com | [396 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bb4adfec]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [21f 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [37e 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [f2c1d907-6536-4855-aad4-5f2f47f2703f] -peer0.org2.example.com | [37f 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b8e0f84]sending state message TRANSACTION -orderer.example.com | [220 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [38c 12-05 07:30:22.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 | [37f 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | [221 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org1.example.com | [380 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [f2c1d907-6536-4855-aad4-5f2f47f2703f] -peer0.org1.example.com | [397 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [381 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer0.org2.example.com | [380 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b8e0f84]Received message TRANSACTION from shim -orderer.example.com | [222 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [38d 12-05 07:30:22.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 -peer1.org1.example.com | [382 12-05 07:30:23.93 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)(0x954570)} -peer0.org2.example.com | [381 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5b8e0f84]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [398 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb -orderer.example.com | [223 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org1.example.com | [383 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated -peer0.org2.example.com | [382 12-05 07:30:07.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5b8e0f84]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [38e 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 343109ce617bf86734db848e1c68f2a32c2d71a29ff6f98712689ba555987f07 channel id: businesschannel version: 1.0 -peer0.org1.example.com | [399 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [384 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [024b2f71]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [383 12-05 07:30:07.58 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org1.example.com | [385 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [024b2f71]Move state message COMPLETED -orderer.example.com | [224 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [39a 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org1.example.com | [386 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [024b2f71]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [38f 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=343109ce617bf86734db848e1c68f2a32c2d71a29ff6f98712689ba555987f07,syscc=false,proposal=0xc421b793b0,canname=mycc:1.0 -peer0.org2.example.com | [384 12-05 07:30:07.58 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 | [225 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [387 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [024b2f71]send state message COMPLETED -peer0.org1.example.com | [39b 12-05 07:30:05.53 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 | [390 12-05 07:30:22.12 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.4,txid=343109ce617bf86734db848e1c68f2a32c2d71a29ff6f98712689ba555987f07,syscc=true,proposal=0xc421b793b0,canname=lscc:1.0.4 -peer1.org1.example.com | [388 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [024b2f71]Received message COMPLETED from shim -peer0.org2.example.com | [385 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer1.org1.example.com | [389 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [024b2f71]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [39c 12-05 07:30:05.53 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 [8167ca4f-2917-497f-bf3d-de91e667f803] -peer1.org2.example.com | [391 12-05 07:30:22.12 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.4 -orderer.example.com | [226 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [386 12-05 07:30:07.59 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [38a 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [024b2f71-e221-4a4e-b060-ddf8ba0c60f0]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [38b 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:024b2f71-e221-4a4e-b060-ddf8ba0c60f0 -peer1.org1.example.com | [38c 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [38d 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4, error Chaincode mycc is already instantiated -peer1.org1.example.com | [38e 12-05 07:30:23.93 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 [133125e6-e991-4bc0-be11-9bf2df8b2ae8] -peer1.org1.example.com | [38f 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = 74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 returned error Chaincode mycc is already instantiated -peer1.org1.example.com | [390 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org1.example.com | [391 12-05 07:30:23.93 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 | [392 12-05 07:30:23.93 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)(0xc421f0a700), Data:(*common.BlockData)(0xc421d137c0), Metadata:(*common.BlockMetadata)(0xc421d13800)}, doMVCCValidation=true -peer1.org1.example.com | [393 12-05 07:30:23.93 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 | [394 12-05 07:30:23.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [2] Transaction index [0] marked as invalid by committer. Reason code [10] -peer1.org1.example.com | [395 12-05 07:30:23.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xb3, 0xd6, 0xd5, 0x31, 0x73, 0xa, 0x8b, 0x30, 0x6e, 0x34, 0x46, 0xd2, 0xa6, 0x50, 0xbb, 0xb1, 0xd8, 0xc9, 0x3a, 0xbe, 0x77, 0xd6, 0x28, 0x7c, 0xed, 0x47, 0x66, 0x4, 0x54, 0xbc, 0xa4, 0x1b} txOffsets= -peer1.org1.example.com | txId=74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 locPointer=offset=70, bytesLength=3387 -peer1.org1.example.com | ] -peer1.org1.example.com | [396 12-05 07:30:23.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=17232, bytesLength=3387] for tx ID: [74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4] to index -peer1.org1.example.com | [397 12-05 07:30:23.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=17232, bytesLength=3387] for tx number:[0] ID: [74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4] to blockNumTranNum index -peer1.org1.example.com | [398 12-05 07:30:23.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[22375], isChainEmpty=[false], lastBlockNumber=[2] -peer1.org1.example.com | [399 12-05 07:30:23.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) -peer1.org1.example.com | [39a 12-05 07:30:23.94 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 | [392 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [39d 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org2.example.com | [387 12-05 07:30:07.60 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [388 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer0.org2.example.com | [389 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [a7c2a2bf-8e1b-47b1-ab50-4e1225776866] -peer0.org2.example.com | [38a 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | [38b 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [a7c2a2bf-8e1b-47b1-ab50-4e1225776866] -peer1.org1.example.com | [39b 12-05 07:30:23.94 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 | [39c 12-05 07:30:23.94 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 | [39d 12-05 07:30:23.94 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 | [393 12-05 07:30:22.12 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.4 -peer0.org2.example.com | [38c 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer0.org1.example.com | [39e 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb channel id: businesschannel chaincode id: name:"lscc" -orderer.example.com | [227 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [39e 12-05 07:30:23.94 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 | [39f 12-05 07:30:23.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 [2] -peer1.org1.example.com | [3a0 12-05 07:30:23.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org1.example.com | [3a1 12-05 07:30:23.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [2] contains transaction id: 74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 -peer1.org1.example.com | [3a2 12-05 07:30:23.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] -peer1.org1.example.com | [3a3 12-05 07:30:23.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org1.example.com | [3a4 12-05 07:30:23.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [394 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [343109ce]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [395 12-05 07:30:22.12 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 | [396 12-05 07:30:22.12 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.org2.example.com | [397 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [343109ce]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [38d 12-05 07:30:07.60 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)(0x954570)} -peer1.org1.example.com | [3a5 12-05 07:30:23.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org1.example.com | [39f 12-05 07:30:05.53 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 | [228 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [398 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [343109ce]Move state message TRANSACTION -peer0.org2.example.com | [38e 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer1.org1.example.com | [3a6 12-05 07:30:23.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [399 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [343109ce]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [39a 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [3a0 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb channel id: businesschannel version: 1.0.4 -peer0.org1.example.com | [3a1 12-05 07:30:05.53 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.4,txid=bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb,syscc=true,proposal=0xc421bb9090,canname=escc:1.0.4 -peer1.org1.example.com | [3a7 12-05 07:30:23.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org2.example.com | [38f 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b8e0f84]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [39b 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [343109ce]sending state message TRANSACTION -peer1.org2.example.com | [39c 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [343109ce]Received message TRANSACTION from shim -peer0.org1.example.com | [3a2 12-05 07:30:05.53 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.4 -peer0.org2.example.com | [390 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b8e0f84]Move state message COMPLETED -orderer.example.com | [229 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [3a8 12-05 07:30:42.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org1.example.com | [3a9 12-05 07:30:42.93 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421ace870 -peer1.org1.example.com | [3aa 12-05 07:30:42.93 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 | [3ab 12-05 07:30:42.93 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [3ac 12-05 07:30:42.93 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -peer1.org1.example.com | [3ad 12-05 07:30:42.93 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 | [391 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5b8e0f84]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [3a3 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [3ae 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [3af 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421816d70, header 0xc421ace8a0 -peer1.org1.example.com | [3b0 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -peer1.org1.example.com | [3b1 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 32d8b862f5cae1495687006e80e044a8a17164a3c9015029b066987777221c4a -peer1.org1.example.com | [3b2 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [32d8b862f5cae1495687006e80e044a8a17164a3c9015029b066987777221c4a] -peer1.org1.example.com | [3b3 12-05 07:30:42.94 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 | [3b4 12-05 07:30:42.94 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 [5b68b482-10d9-46bc-8637-f6dcc9e624b3] -peer0.org1.example.com | [3a4 12-05 07:30:05.53 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.4 -peer1.org2.example.com | [39d 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [343109ce]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [392 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b8e0f84]send state message COMPLETED -orderer.example.com | [22a 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [3b5 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 32d8b862f5cae1495687006e80e044a8a17164a3c9015029b066987777221c4a channel id: businesschannel -peer1.org1.example.com | [3b6 12-05 07:30:42.94 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.4,txid=32d8b862f5cae1495687006e80e044a8a17164a3c9015029b066987777221c4a,syscc=true,proposal=0xc421816d70,canname=lscc:1.0.4 -peer1.org1.example.com | [3b7 12-05 07:30:42.94 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.4 -peer1.org1.example.com | [3b8 12-05 07:30:42.94 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 | [3b9 12-05 07:30:42.94 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.4 -peer1.org1.example.com | [3ba 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [32d8b862]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [3a5 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bb4adfec]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [3a6 12-05 07:30:05.53 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 | [3a7 12-05 07:30:05.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... -peer0.org1.example.com | [3a8 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bb4adfec]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [3a9 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bb4adfec]Move state message TRANSACTION -peer1.org2.example.com | [39e 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [343109ce]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [393 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b8e0f84]Received message COMPLETED from shim -peer1.org1.example.com | [3bb 12-05 07:30:42.94 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 | [22b 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [3aa 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bb4adfec]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [3ab 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [3ac 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bb4adfec]sending state message TRANSACTION -peer1.org2.example.com | [39f 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [343109ce]Sending GET_STATE -peer1.org2.example.com | [3a0 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [343109ce]Received message GET_STATE from shim -peer1.org2.example.com | [3a1 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [343109ce]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [3bc 12-05 07:30:42.94 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 | [3bd 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [32d8b862]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [3be 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32d8b862]Move state message TRANSACTION -peer1.org1.example.com | [3bf 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [32d8b862]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [3c0 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [3c1 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32d8b862]sending state message TRANSACTION -peer1.org1.example.com | [3c2 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32d8b862]Received message TRANSACTION from shim -peer1.org1.example.com | [3c3 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [32d8b862]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [3c4 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [32d8b862]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [3c5 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [32d8b862]Sending GET_STATE -peer0.org2.example.com | [394 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b8e0f84]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [395 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b8e0f84-8c51-4bf1-87c4-ba009ef56d98]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [396 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5b8e0f84-8c51-4bf1-87c4-ba009ef56d98 -peer0.org2.example.com | [397 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [398 12-05 07:30:07.60 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 [b3daeae7-7891-4c5c-a848-f74a5752b14a] -peer0.org2.example.com | [399 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org2.example.com | [39a 12-05 07:30:07.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.org2.example.com | [39b 12-05 07:30:07.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)(0xc421b74480), Data:(*common.BlockData)(0xc421bedac0), Metadata:(*common.BlockMetadata)(0xc421bedb00)}, doMVCCValidation=true -peer0.org1.example.com | [3ad 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bb4adfec]Received message TRANSACTION from shim -peer0.org1.example.com | [3ae 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bb4adfec]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [3af 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [bb4adfec]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [3b0 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [3b1 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [3b2 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bb4adfec]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [3a2 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [343109ce]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [3a3 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [3a4 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [343109ce] getting state for chaincode lscc, key mycc, channel businesschannel -peer1.org2.example.com | [3a5 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [3a6 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [343109ce]Got state. Sending RESPONSE -peer1.org2.example.com | [3a7 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [343109ce]handleGetState serial send RESPONSE -peer1.org2.example.com | [3a8 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [343109ce]Received message RESPONSE from shim -peer1.org2.example.com | [3a9 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [343109ce]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [3aa 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [343109ce]before send -peer1.org2.example.com | [3ab 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [343109ce]after send -peer1.org2.example.com | [3ac 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [343109ce]Received RESPONSE, communicated (state:ready) -peer0.org2.example.com | [39c 12-05 07:30:07.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 -peer0.org2.example.com | [39d 12-05 07:30:07.60 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=mycc -peer1.org1.example.com | [3c6 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32d8b862]Received message GET_STATE from shim -orderer.example.com | [22c 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [22d 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -orderer.example.com | [22e 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer1.org2.example.com | [3ad 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [343109ce]GetState received payload RESPONSE -peer1.org1.example.com | [3c7 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [32d8b862]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [3c8 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [32d8b862]Received GET_STATE, invoking get state from ledger -peer1.org1.example.com | [3ca 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [32d8b862] getting state for chaincode lscc, key mycc, channel businesschannel -peer1.org1.example.com | [3cb 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org1.example.com | [3cc 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [32d8b862]Got state. Sending RESPONSE -peer1.org1.example.com | [3cd 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [32d8b862]handleGetState serial send RESPONSE -peer1.org1.example.com | [3ce 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32d8b862]Received message RESPONSE from shim -peer1.org1.example.com | [3cf 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [32d8b862]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org1.example.com | [3c9 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [3d0 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [32d8b862]before send -peer0.org1.example.com | [3b3 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bb4adfec]Move state message COMPLETED -peer0.org1.example.com | [3b4 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bb4adfec]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [3b5 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bb4adfec]send state message COMPLETED -peer0.org2.example.com | [39e 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb] marked as valid by state validator -peer0.org2.example.com | [39f 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xf4, 0x6f, 0x6e, 0xab, 0xc2, 0x16, 0xcc, 0x19, 0xce, 0x35, 0xf2, 0xd1, 0x24, 0x18, 0x27, 0xf2, 0xf2, 0x3a, 0x7f, 0x1b, 0x75, 0x2, 0x65, 0x19, 0x46, 0x4e, 0x41, 0x5f, 0xaa, 0xec, 0x69, 0xe2} txOffsets= -peer0.org2.example.com | txId=bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb locPointer=offset=70, bytesLength=3389 -peer0.org2.example.com | ] -peer0.org2.example.com | [3a0 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12015, bytesLength=3389] for tx ID: [bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb] to index -peer1.org1.example.com | [3d1 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [32d8b862]after send -peer1.org1.example.com | [3d3 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [32d8b862]Received RESPONSE, communicated (state:ready) -peer1.org1.example.com | [3d2 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [32d8b862]GetState received payload RESPONSE -peer1.org1.example.com | [3d4 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32d8b862]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [3d5 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32d8b862]Move state message COMPLETED -peer1.org1.example.com | [3d6 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [32d8b862]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [3d7 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32d8b862]send state message COMPLETED -peer1.org1.example.com | [3d8 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32d8b862]Received message COMPLETED from shim -peer1.org2.example.com | [3ae 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [343109ce]Transaction completed. Sending COMPLETED -orderer.example.com | [22f 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [3b6 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bb4adfec]Received message COMPLETED from shim -peer0.org2.example.com | [3a1 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12015, bytesLength=3389] for tx number:[0] ID: [bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb] to blockNumTranNum index -peer0.org2.example.com | [3a2 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[17162], isChainEmpty=[false], lastBlockNumber=[1] -peer0.org2.example.com | [3a3 12-05 07:30:07.61 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 | [3a4 12-05 07:30:07.61 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 | [3a5 12-05 07:30:21.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org2.example.com-mycc-1.0-15b571b3ce849066b7ec74497da3b27e54e0df1345daff3951b94245ce09c42b -peer0.org2.example.com | [3a6 12-05 07:30:21.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -peer0.org2.example.com | [3a7 12-05 07:30:21.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-mycc-1.0 -peer0.org2.example.com | [3a8 12-05 07:30:21.42 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org2.example.com-mycc-1.0-15b571b3ce849066b7ec74497da3b27e54e0df1345daff3951b94245ce09c42b -peer0.org2.example.com | [3a9 12-05 07:30:21.80 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org2.example.com-mycc-1.0 -peer0.org2.example.com | [3aa 12-05 07:30:21.80 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org2.example.com-mycc-1.0) -peer1.org1.example.com | [3d9 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [32d8b862]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [3da 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [32d8b862f5cae1495687006e80e044a8a17164a3c9015029b066987777221c4a]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [3db 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:32d8b862f5cae1495687006e80e044a8a17164a3c9015029b066987777221c4a -peer1.org2.example.com | [3af 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [343109ce]Move state message COMPLETED -orderer.example.com | [230 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [231 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [232 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [233 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [234 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [3ab 12-05 07:30:21.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 -peer0.org2.example.com | [3ac 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [3ad 12-05 07:30:21.83 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.org2.example.com | [3ae 12-05 07:30:21.83 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.org2.example.com | [3af 12-05 07:30:21.83 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 mycc:1.0 -peer0.org2.example.com | [3b0 12-05 07:30:21.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:"mycc:1.0" , sending back REGISTERED -peer0.org2.example.com | [3b1 12-05 07:30:21.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 -peer0.org2.example.com | [3b2 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed -peer0.org2.example.com | [3b3 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org2.example.com | [3b4 12-05 07:30:21.83 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 | [3b5 12-05 07:30:21.83 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 | [3b6 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74f4437e]Move state message READY -peer0.org2.example.com | [3b7 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74f4437e]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [3b8 12-05 07:30:21.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 [74f4437e]Entered state ready -peer0.org2.example.com | [3b9 12-05 07:30:21.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:74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 -peer0.org2.example.com | [3ba 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74f4437e]sending state message READY -peer0.org2.example.com | [3bb 12-05 07:30:21.83 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 | [3bc 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [3bd 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [3be 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer0.org2.example.com | [3bf 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [74f4437e]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [3c0 12-05 07:30:21.83 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 | [3c1 12-05 07:30:21.83 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... -peer0.org2.example.com | [3c2 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [74f4437e]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [3c3 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74f4437e]Move state message INIT -peer0.org2.example.com | [3c4 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74f4437e]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [3b7 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bb4adfec]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [3b8 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [3b9 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb -peer0.org1.example.com | [3ba 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [3bb 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer1.org1.example.com | [3dc 12-05 07:30:42.94 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 | [3b0 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [343109ce]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [3b1 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [343109ce]send state message COMPLETED -peer1.org2.example.com | [3b2 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [343109ce]Received message COMPLETED from shim -peer1.org2.example.com | [3b3 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [343109ce]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [3b4 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [343109ce617bf86734db848e1c68f2a32c2d71a29ff6f98712689ba555987f07]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [3b5 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:343109ce617bf86734db848e1c68f2a32c2d71a29ff6f98712689ba555987f07 -peer0.org2.example.com | [3c5 12-05 07:30:21.83 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 | [3c6 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74f4437e]sending state message INIT -peer0.org2.example.com | [3c7 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74f4437e]Received message PUT_STATE from shim -peer0.org2.example.com | [3c8 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74f4437e]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org2.example.com | [3c9 12-05 07:30:21.83 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 | [3ca 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [74f4437e]state is ready -peer1.org1.example.com | [3dd 12-05 07:30:42.94 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 | [3b6 12-05 07:30:22.12 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 | [3b7 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched -peer1.org2.example.com | [3b8 12-05 07:30:22.12 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 | [3b9 12-05 07:30:22.12 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] -peer1.org2.example.com | [3ba 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer1.org2.example.com) -peer1.org2.example.com | [3bb 12-05 07:30:22.12 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 | [3bc 12-05 07:30:22.12 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=mycc: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 | [3bd 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org2.example.com-mycc-1.0) lock -peer1.org2.example.com | [3be 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org2.example.com-mycc-1.0) lock -peer1.org2.example.com | [3bf 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer1.org2.example.com-mycc-1.0 -peer1.org2.example.com | [3c0 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer1.org2.example.com-mycc-1.0(No such container: dev-peer1.org2.example.com-mycc-1.0) -peer1.org2.example.com | [3c1 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer1.org2.example.com-mycc-1.0 (No such container: dev-peer1.org2.example.com-mycc-1.0) -peer1.org2.example.com | [3c2 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org2.example.com-mycc-1.0 (No such container: dev-peer1.org2.example.com-mycc-1.0) -peer1.org2.example.com | [3c3 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org2.example.com-mycc-1.0 -peer1.org2.example.com | [3c4 12-05 07:30:22.12 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: 104_default -peer1.org2.example.com | [3c5 12-05 07:30:22.13 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-mycc-1.0 -peer1.org2.example.com | [3c6 12-05 07:30:22.14 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 | [3c7 12-05 07:30:22.14 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 -peer0.org1.example.com | [3bc 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [3bd 12-05 07:30:05.53 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 [8167ca4f-2917-497f-bf3d-de91e667f803] -peer0.org1.example.com | [3be 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer1.org1.example.com | [3de 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 32d8b862f5cae1495687006e80e044a8a17164a3c9015029b066987777221c4a channel id: businesschannel version: 1.0 -orderer.example.com | [235 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ -peer0.org2.example.com | [3cb 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [74f4437e]Completed PUT_STATE. Sending RESPONSE -peer0.org1.example.com | [3bf 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] -peer1.org1.example.com | [3df 12-05 07:30:42.94 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=32d8b862f5cae1495687006e80e044a8a17164a3c9015029b066987777221c4a,syscc=false,proposal=0xc421816d70,canname=mycc:1.0 -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.4" \ -peer1.org2.example.com | org.hyperledger.fabric.base.version="0.3.2" -peer1.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.4 -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 | [3c8 12-05 07:30:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.4 -peer1.org2.example.com | [3c9 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] -peer1.org2.example.com | [3ca 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] -peer1.org2.example.com | [3cb 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org2.example.com | [3cc 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [3cd 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org2.example.com | [3ce 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421e84210 -peer1.org2.example.com | [3cf 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\375\225\231\321\005\020\214\274\276\305\002\"\017businesschannel*@74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030\246\362\213'\253\030~\332\264n\307'_\362\231\r\225\324\245\240\032\247N\240" -peer1.org2.example.com | [3d0 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [3cc 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [74f4437e]enterBusyState trigger event RESPONSE -peer0.org2.example.com | [3cd 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74f4437e]Move state message RESPONSE -peer0.org1.example.com | [3c0 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] -peer0.org1.example.com | [3c1 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org1.example.com | [3c2 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org1.example.com | [3c3 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org1.example.com | [3c4 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421623710 -peer1.org2.example.com | [3d1 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [3e0 12-05 07:30:42.94 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.4,txid=32d8b862f5cae1495687006e80e044a8a17164a3c9015029b066987777221c4a,syscc=true,proposal=0xc421816d70,canname=lscc:1.0.4 -peer0.org2.example.com | [3ce 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74f4437e]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer0.org2.example.com | [3cf 12-05 07:30:21.83 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 | [3d0 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74f4437e]sending state message RESPONSE -peer0.org2.example.com | [3d1 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74f4437e]Received message PUT_STATE from shim -peer0.org2.example.com | [3d2 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74f4437e]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org1.example.com | [3c5 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\352\225\231\321\005\020\254\227\263\210\002\"\017businesschannel*@bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030\304\0254\214\263\227?\006\tC\313k.\361\207\000\215\t\024\220K\257\315Z" -peer1.org1.example.com | [3e1 12-05 07:30:42.94 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.4 -peer1.org2.example.com | [3d2 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} -orderer.example.com | [236 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [3d3 12-05 07:30:21.83 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 | [3c6 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [3e2 12-05 07:30:42.94 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 | [3d3 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [3c7 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [3d4 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [74f4437e]state is ready -peer1.org1.example.com | [3e3 12-05 07:30:42.95 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.4 -peer0.org1.example.com | [3c8 12-05 07:30:07.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -peer1.org2.example.com | [3d4 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [3d5 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [74f4437e]Completed PUT_STATE. Sending RESPONSE -orderer.example.com | [237 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer1.org2.example.com | [3d5 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421e82a80, header channel_header:"\010\003\032\014\010\375\225\231\321\005\020\214\274\276\305\002\"\017businesschannel*@74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030\246\362\213'\253\030~\332\264n\307'_\362\231\r\225\324\245\240\032\247N\240" -peer0.org1.example.com | [3c9 12-05 07:30:07.58 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [3e4 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [32d8b862]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [238 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [3ca 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [3d6 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [74f4437e]enterBusyState trigger event RESPONSE -peer1.org1.example.com | [3e5 12-05 07:30:42.95 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 | [3d6 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [3d7 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [3d7 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74f4437e]Move state message RESPONSE -peer1.org1.example.com | [3e6 12-05 07:30:42.95 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 | [3cb 12-05 07:30:07.59 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42165ea80, header channel_header:"\010\003\032\014\010\352\225\231\321\005\020\254\227\263\210\002\"\017businesschannel*@bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030\304\0254\214\263\227?\006\tC\313k.\361\207\000\215\t\024\220K\257\315Z" -orderer.example.com | [239 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [3d8 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [3cc 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | [23a 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org2.example.com | [3d8 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74f4437e]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org1.example.com | [3e7 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [32d8b862]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [3d9 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [3cd 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [3d9 12-05 07:30:21.83 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 | [23b 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [3ce 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [3da 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74f4437e]sending state message RESPONSE -peer0.org2.example.com | [3db 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74f4437e]Received message COMPLETED from shim -peer0.org2.example.com | [3dc 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74f4437e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [3da 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4] -peer1.org1.example.com | [3e8 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32d8b862]Move state message TRANSACTION -orderer.example.com | [23c 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer0.org2.example.com | [3dd 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [3cf 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [3db 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | [3e9 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [32d8b862]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [23d 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [3de 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 -orderer.example.com | [23e 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org1.example.com | [3d0 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb] -peer1.org2.example.com | [3dc 12-05 07:30:23.87 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 | [3ea 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [3df 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [3dd 12-05 07:30:23.87 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 [f9dbbe5c-a1b8-4eb2-a257-84642cd8c66a] -orderer.example.com | [23f 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org1.example.com | [3d1 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | [3eb 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32d8b862]sending state message TRANSACTION -peer1.org2.example.com | [3de 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.4,txid=1224fb24-396d-4c3d-9836-719cfa45777e,syscc=true,proposal=0x0,canname=vscc:1.0.4 -peer0.org2.example.com | [3e0 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [3d2 12-05 07:30:07.60 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 | [240 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [3ec 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32d8b862]Received message TRANSACTION from shim -peer0.org1.example.com | [3d3 12-05 07:30:07.60 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 [a8072a34-1069-4f19-80ad-4721ff18c010] -peer1.org1.example.com | [3ed 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [32d8b862]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [3e1 12-05 07:30:21.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 | [241 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [3d4 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.4,txid=a833999c-9788-44be-aa79-6d58d2e0d3c2,syscc=true,proposal=0x0,canname=vscc:1.0.4 -peer0.org2.example.com | [3e2 12-05 07:30:21.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 [b21c8f37-ff13-487b-b888-069ed16554ee] -peer1.org2.example.com | [3df 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 chaindID businesschannel -peer1.org1.example.com | [3ee 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [32d8b862]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [242 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [3d5 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb chaindID businesschannel -peer1.org2.example.com | [3e0 12-05 07:30:23.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.4 -peer1.org1.example.com | [3ef 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [32d8b862]Sending GET_STATE -peer0.org2.example.com | [3e3 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [243 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -peer1.org2.example.com | [3e1 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [3f0 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32d8b862]Received message GET_STATE from shim -peer0.org1.example.com | [3d6 12-05 07:30:07.60 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.4 -orderer.example.com | [244 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [245 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [3d7 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [3e4 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 channel id: businesschannel chaincode id: name:"lscc" -peer1.org1.example.com | [3f1 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [32d8b862]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [3e2 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.4 -peer0.org2.example.com | [3e5 12-05 07:30:21.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 | [3d8 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.4 -peer1.org2.example.com | [3e3 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1224fb24]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [246 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [3f2 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [32d8b862]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [3e7 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 channel id: businesschannel version: 1.0.4 -peer0.org1.example.com | [3d9 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a833999c]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [247 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [3e4 12-05 07:30:23.87 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 | [3f3 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [3da 12-05 07:30:07.60 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 | [248 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [3e8 12-05 07:30:21.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.4,txid=74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4,syscc=true,proposal=0xc421a39770,canname=escc:1.0.4 -peer1.org2.example.com | [3e5 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1224fb24]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [3f4 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [32d8b862] getting state for chaincode lscc, key mycc, channel businesschannel -peer0.org2.example.com | [3e9 12-05 07:30:21.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.4 -peer0.org1.example.com | [3db 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a833999c]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [3e6 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1224fb24]Move state message TRANSACTION -orderer.example.com | [249 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -peer0.org2.example.com | [3ea 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [3e7 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1224fb24]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [3f5 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [3dc 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a833999c]Move state message TRANSACTION -orderer.example.com | [24a 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -peer1.org2.example.com | [3e8 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [3e6 12-05 07:30:21.83 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 | [3dd 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a833999c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [24b 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -peer1.org2.example.com | [3e9 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1224fb24]sending state message TRANSACTION -peer1.org1.example.com | [3f6 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [32d8b862]Got state. Sending RESPONSE -peer0.org2.example.com | [3ec 12-05 07:30:21.83 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, 0x6d, 0x79, 0x63, 0x63}] -peer0.org1.example.com | [3de 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [24c 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer1.org2.example.com | [3ea 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1224fb24]Received message TRANSACTION from shim -peer1.org1.example.com | [3f7 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [32d8b862]handleGetState serial send RESPONSE -orderer.example.com | [24d 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org2.example.com | [3ed 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer0.org1.example.com | [3df 12-05 07:30:07.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a833999c]sending state message TRANSACTION -peer1.org2.example.com | [3eb 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1224fb24]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [3f8 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32d8b862]Received message RESPONSE from shim -orderer.example.com | [24e 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [3ee 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer0.org1.example.com | [3e0 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a833999c]Received message TRANSACTION from shim -peer0.org1.example.com | [3e1 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a833999c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [24f 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [3f9 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [32d8b862]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [3ec 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1224fb24]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [3e2 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a833999c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [3eb 12-05 07:30:21.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.4 -orderer.example.com | [250 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [3ef 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [74f4437e]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [3f0 12-05 07:30:21.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.org2.example.com | [3f1 12-05 07:30:21.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.org2.example.com | [3f2 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [74f4437e]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [3f3 12-05 07:30:21.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74f4437e]Move state message TRANSACTION -peer0.org2.example.com | [3f4 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74f4437e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [3f5 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [3e3 12-05 07:30:07.61 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [3e4 12-05 07:30:07.62 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 | [3e5 12-05 07:30:07.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer1.org1.example.com | [3fa 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [32d8b862]before send -peer1.org1.example.com | [3fb 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [32d8b862]after send -peer1.org1.example.com | [3fc 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [32d8b862]Received RESPONSE, communicated (state:ready) -peer1.org1.example.com | [3fd 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [32d8b862]GetState received payload RESPONSE -peer1.org1.example.com | [3fe 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32d8b862]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [3e6 12-05 07:30:07.62 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [3e7 12-05 07:30:07.62 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [3e8 12-05 07:30:07.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer0.org1.example.com | [3e9 12-05 07:30:07.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [b8ec976a-233a-48a5-b071-9a1f82b95726] -peer0.org1.example.com | [3ea 12-05 07:30:07.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [3eb 12-05 07:30:07.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [b8ec976a-233a-48a5-b071-9a1f82b95726] -peer0.org1.example.com | [3ec 12-05 07:30:07.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer0.org1.example.com | [3ed 12-05 07:30:07.62 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)(0x954570)} -peer0.org1.example.com | [3ee 12-05 07:30:07.63 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org1.example.com | [3ef 12-05 07:30:07.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a833999c]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [3f0 12-05 07:30:07.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a833999c]Move state message COMPLETED -peer0.org1.example.com | [3f1 12-05 07:30:07.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a833999c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [3f2 12-05 07:30:07.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a833999c]send state message COMPLETED -peer0.org1.example.com | [3f3 12-05 07:30:07.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a833999c]Received message COMPLETED from shim -peer0.org1.example.com | [3f4 12-05 07:30:07.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a833999c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [3f5 12-05 07:30:07.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a833999c-9788-44be-aa79-6d58d2e0d3c2]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [3f6 12-05 07:30:07.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a833999c-9788-44be-aa79-6d58d2e0d3c2 -peer0.org1.example.com | [3f7 12-05 07:30:07.64 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [3f8 12-05 07:30:07.64 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 [a8072a34-1069-4f19-80ad-4721ff18c010] -peer0.org1.example.com | [3f9 12-05 07:30:07.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org1.example.com | [3fa 12-05 07:30:07.64 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 | [3f6 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74f4437e]sending state message TRANSACTION -peer1.org1.example.com | [3ff 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32d8b862]Move state message COMPLETED -peer1.org1.example.com | [400 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [32d8b862]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [401 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32d8b862]send state message COMPLETED -peer1.org1.example.com | [402 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32d8b862]Received message COMPLETED from shim -peer1.org1.example.com | [403 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [32d8b862]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [3ed 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org2.example.com | [3ee 12-05 07:30:23.88 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 | [3ef 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer0.org1.example.com | [3fb 12-05 07:30:07.64 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)(0xc421586280), Data:(*common.BlockData)(0xc421a96a40), Metadata:(*common.BlockMetadata)(0xc421a96a80)}, doMVCCValidation=true -peer0.org1.example.com | [3fc 12-05 07:30:07.64 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 | [3fd 12-05 07:30:07.64 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=mycc -peer0.org1.example.com | [3fe 12-05 07:30:07.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb] marked as valid by state validator -peer0.org1.example.com | [3ff 12-05 07:30:07.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xf4, 0x6f, 0x6e, 0xab, 0xc2, 0x16, 0xcc, 0x19, 0xce, 0x35, 0xf2, 0xd1, 0x24, 0x18, 0x27, 0xf2, 0xf2, 0x3a, 0x7f, 0x1b, 0x75, 0x2, 0x65, 0x19, 0x46, 0x4e, 0x41, 0x5f, 0xaa, 0xec, 0x69, 0xe2} txOffsets= -peer0.org1.example.com | txId=bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb locPointer=offset=70, bytesLength=3389 -peer0.org1.example.com | ] -peer0.org1.example.com | [400 12-05 07:30:07.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12015, bytesLength=3389] for tx ID: [bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb] to index -peer0.org1.example.com | [401 12-05 07:30:07.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12015, bytesLength=3389] for tx number:[0] ID: [bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb] to blockNumTranNum index -peer1.org1.example.com | [404 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [32d8b862f5cae1495687006e80e044a8a17164a3c9015029b066987777221c4a]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [405 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:32d8b862f5cae1495687006e80e044a8a17164a3c9015029b066987777221c4a -peer1.org1.example.com | [406 12-05 07:30:42.95 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 | [407 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched -peer1.org1.example.com | [408 12-05 07:30:42.95 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 | [409 12-05 07:30:42.95 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 | [40a 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer1.org1.example.com) -peer1.org1.example.com | [40b 12-05 07:30:42.95 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 -peer1.org1.example.com | [40c 12-05 07:30:42.95 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.org1.example.com | CORE_CHAINCODE_ID_NAME=mycc: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 | [40d 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org1.example.com-mycc-1.0) lock -peer1.org1.example.com | [40e 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org1.example.com-mycc-1.0) lock -peer1.org1.example.com | [40f 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer1.org1.example.com-mycc-1.0 -peer1.org1.example.com | [410 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer1.org1.example.com-mycc-1.0(No such container: dev-peer1.org1.example.com-mycc-1.0) -peer1.org1.example.com | [411 12-05 07:30:42.95 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer1.org1.example.com-mycc-1.0 (No such container: dev-peer1.org1.example.com-mycc-1.0) -peer1.org1.example.com | [412 12-05 07:30:42.96 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org1.example.com-mycc-1.0 (No such container: dev-peer1.org1.example.com-mycc-1.0) -peer1.org1.example.com | [413 12-05 07:30:42.96 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org1.example.com-mycc-1.0 -peer1.org1.example.com | [414 12-05 07:30:42.96 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: 104_default -peer1.org1.example.com | [415 12-05 07:30:42.96 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-mycc-1.0 -peer1.org1.example.com | [416 12-05 07:30:42.96 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 | [417 12-05 07:30:42.96 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -peer0.org2.example.com | [3f7 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74f4437e]Received message TRANSACTION from shim -peer1.org2.example.com | [3f0 12-05 07:30:23.88 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [402 12-05 07:30:07.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[17162], isChainEmpty=[false], lastBlockNumber=[1] -orderer.example.com | [251 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 -peer0.org1.example.com | [403 12-05 07:30:07.65 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 | [3f8 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74f4437e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [3f1 12-05 07:30:23.88 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [252 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -peer1.org1.example.com | ADD binpackage.tar /usr/local/bin -peer0.org1.example.com | [404 12-05 07:30:07.65 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 | [3f2 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -orderer.example.com | [253 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -peer0.org2.example.com | [3f9 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [74f4437e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ -peer0.org1.example.com | [405 12-05 07:30:07.65 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 | [3f3 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [b85b7517-6de4-4361-b44b-f1ca6c081152] -orderer.example.com | [254 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -peer0.org2.example.com | [3fa 12-05 07:30:21.84 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 | org.hyperledger.fabric.chaincode.id.version="1.0" \ -peer0.org1.example.com | [406 12-05 07:30:07.65 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, 0x6d, 0x79, 0x63, 0x63}] -peer1.org2.example.com | [3f4 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -peer1.org1.example.com | org.hyperledger.fabric.version="1.0.4" \ -peer1.org1.example.com | org.hyperledger.fabric.base.version="0.3.2" -peer1.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.4 -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 | [418 12-05 07:30:42.97 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.4 -peer1.org1.example.com | [419 12-05 07:30:44.88 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org1.example.com | [41a 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org1.example.com | [41b 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org1.example.com | [41c 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421b8ab10 -peer0.org1.example.com | [407 12-05 07:30:07.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer0.org1.example.com | [408 12-05 07:30:07.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer0.org1.example.com | [409 12-05 07:30:07.65 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 | [40a 12-05 07:30:07.65 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 | [3fb 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org2.example.com | [3fc 12-05 07:30:21.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 [1] with [1] transactions -peer0.org2.example.com | [3fd 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org2.example.com | [3fe 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74f4437e]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [3ff 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74f4437e]Move state message COMPLETED -peer0.org2.example.com | [400 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74f4437e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [401 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74f4437e]send state message COMPLETED -peer1.org2.example.com | [3f5 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [b85b7517-6de4-4361-b44b-f1ca6c081152] -peer1.org2.example.com | [3f6 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer1.org1.example.com | [41d 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\242\226\231\321\005\020\310\266\206\375\002\"\017businesschannel*@b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030C\177D:@\244\305z\336\2571%\320\223\3406H\2049\345\253\367\251\311" -peer1.org1.example.com | [41e 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [41f 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [420 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -peer1.org1.example.com | [421 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [402 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74f4437e]Received message COMPLETED from shim -peer0.org2.example.com | [403 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74f4437e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [404 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [405 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 -peer0.org2.example.com | [406 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [407 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [408 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org2.example.com | [409 12-05 07:30:21.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 [b21c8f37-ff13-487b-b888-069ed16554ee] -peer0.org2.example.com | [40a 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org1.example.com | [40b 12-05 07:30:07.65 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 | [3f7 12-05 07:30:23.88 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)(0x954570)} -peer1.org1.example.com | [422 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [255 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -peer0.org2.example.com | [40b 12-05 07:30:21.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 [1] -peer0.org2.example.com | [40c 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org2.example.com | [40d 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [1] contains transaction id: bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb -peer0.org2.example.com | [40e 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] -peer0.org1.example.com | [40c 12-05 07:30:07.65 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org1.example.com | [40d 12-05 07:30:07.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [1] contains transaction id: bb4adfec32a71b150069f83029ec5df3ef2450de3972f7618f18a38e0c2f42cb -peer0.org1.example.com | [40e 12-05 07:30:07.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] -peer0.org1.example.com | [40f 12-05 07:30:07.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org1.example.com | [410 12-05 07:30:07.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [411 12-05 07:30:07.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org1.example.com | [412 12-05 07:30:07.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org1.example.com | [413 12-05 07:30:07.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -orderer.example.com | [256 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [257 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [423 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421ccd000, header channel_header:"\010\003\032\014\010\242\226\231\321\005\020\310\266\206\375\002\"\017businesschannel*@b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030C\177D:@\244\305z\336\2571%\320\223\3406H\2049\345\253\367\251\311" -peer0.org2.example.com | [40f 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org1.example.com | [414 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] -peer1.org2.example.com | [3f8 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated -peer1.org2.example.com | [3f9 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1224fb24]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [3fa 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1224fb24]Move state message COMPLETED -peer1.org2.example.com | [3fb 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1224fb24]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [3fc 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1224fb24]send state message COMPLETED -peer1.org2.example.com | [3fd 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1224fb24]Received message COMPLETED from shim -peer1.org2.example.com | [3fe 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1224fb24]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [3ff 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1224fb24-396d-4c3d-9836-719cfa45777e]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [400 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1224fb24-396d-4c3d-9836-719cfa45777e -peer1.org2.example.com | [401 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [258 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -peer0.org2.example.com | [410 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [424 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [402 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4, error Chaincode mycc is already instantiated -peer0.org1.example.com | [416 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org1.example.com | [415 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] -orderer.example.com | [259 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -peer0.org2.example.com | [411 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org2.example.com | [412 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org2.example.com | [413 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org2.example.com | [414 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] -peer0.org2.example.com | [415 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] -peer0.org2.example.com | [416 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org2.example.com | [417 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org2.example.com | [418 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org2.example.com | [419 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc420293d40 -peer1.org1.example.com | [425 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org1.example.com | [426 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org1.example.com | [427 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [428 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361] -peer1.org1.example.com | [429 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | [42a 12-05 07:30:44.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 [9681e877-2b1b-49b1-811c-c0709a35b8de] -peer1.org1.example.com | [42b 12-05 07:30:44.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=mycc -peer1.org2.example.com | [403 12-05 07:30:23.88 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 [f9dbbe5c-a1b8-4eb2-a257-84642cd8c66a] -peer1.org2.example.com | [404 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = 74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 returned error Chaincode mycc is already instantiated -peer1.org2.example.com | [405 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org2.example.com | [406 12-05 07:30:23.88 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 | [407 12-05 07:30:23.88 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)(0xc421b8da00), Data:(*common.BlockData)(0xc421e8c1a0), Metadata:(*common.BlockMetadata)(0xc421e8c1e0)}, doMVCCValidation=true -peer0.org1.example.com | [417 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org1.example.com | [418 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -orderer.example.com | [25a 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -peer1.org1.example.com | [42c 12-05 07:30:44.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 [9681e877-2b1b-49b1-811c-c0709a35b8de] -peer1.org2.example.com | [408 12-05 07:30:23.88 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 | [41a 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\375\225\231\321\005\020\214\274\276\305\002\"\017businesschannel*@74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030\246\362\213'\253\030~\332\264n\307'_\362\231\r\225\324\245\240\032\247N\240" -orderer.example.com | [25b 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer0.org1.example.com | [419 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4224e6000 -peer1.org1.example.com | [42d 12-05 07:30:44.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 -peer1.org2.example.com | [409 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [2] Transaction index [0] marked as invalid by committer. Reason code [10] -peer1.org2.example.com | [40a 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xb3, 0xd6, 0xd5, 0x31, 0x73, 0xa, 0x8b, 0x30, 0x6e, 0x34, 0x46, 0xd2, 0xa6, 0x50, 0xbb, 0xb1, 0xd8, 0xc9, 0x3a, 0xbe, 0x77, 0xd6, 0x28, 0x7c, 0xed, 0x47, 0x66, 0x4, 0x54, 0xbc, 0xa4, 0x1b} txOffsets= -peer0.org2.example.com | [41b 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [41c 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [41d 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} -peer0.org2.example.com | [41e 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [41a 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\375\225\231\321\005\020\214\274\276\305\002\"\017businesschannel*@74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030\246\362\213'\253\030~\332\264n\307'_\362\231\r\225\324\245\240\032\247N\240" -peer0.org1.example.com | [41b 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [42e 12-05 07:30:44.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 [0a7ab16d-4c7e-4142-a316-81e3bc9492a1] -peer1.org1.example.com | [42f 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.4,txid=dc4253a1-779d-41d8-a5d5-4bbbb16b745c,syscc=true,proposal=0x0,canname=vscc:1.0.4 -peer1.org1.example.com | [430 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361 chaindID businesschannel -peer1.org1.example.com | [431 12-05 07:30:44.90 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.4 -peer1.org2.example.com | txId=74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 locPointer=offset=70, bytesLength=3387 -orderer.example.com | [25c 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy ChannelCreationPolicy for Application -peer0.org2.example.com | [41f 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [41c 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [41d 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} -peer0.org1.example.com | [41e 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [41f 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [432 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [433 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.4 -peer0.org1.example.com | [420 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42024aa80, header channel_header:"\010\003\032\014\010\375\225\231\321\005\020\214\274\276\305\002\"\017businesschannel*@74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030\246\362\213'\253\030~\332\264n\307'_\362\231\r\225\324\245\240\032\247N\240" -peer0.org1.example.com | [421 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [422 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [423 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [424 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [425 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4] -peer0.org1.example.com | [426 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [427 12-05 07:30:23.87 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 | [428 12-05 07:30:23.87 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 [9e5f2d6c-0530-444e-bc7b-e1dd5089ecbb] -peer0.org2.example.com | [420 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421824a80, header channel_header:"\010\003\032\014\010\375\225\231\321\005\020\214\274\276\305\002\"\017businesschannel*@74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030\246\362\213'\253\030~\332\264n\307'_\362\231\r\225\324\245\240\032\247N\240" -orderer.example.com | [25d 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [25e 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [25f 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org2.example.com | ] -peer1.org2.example.com | [40b 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=17232, bytesLength=3387] for tx ID: [74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4] to index -peer1.org2.example.com | [40c 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=17232, bytesLength=3387] for tx number:[0] ID: [74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4] to blockNumTranNum index -peer1.org2.example.com | [40d 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[22375], isChainEmpty=[false], lastBlockNumber=[2] -peer1.org2.example.com | [40e 12-05 07:30:23.88 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 | [40f 12-05 07:30:23.88 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 | [410 12-05 07:30:39.15 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer1.org2.example.com-mycc-1.0-26c2ef32838554aac4f7ad6f100aca865e87959c9a126e86d764c8d01f8346ab -peer0.org1.example.com | [429 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.4,txid=124797f0-c7b3-4575-b011-470e185a7de7,syscc=true,proposal=0x0,canname=vscc:1.0.4 -peer1.org2.example.com | [411 12-05 07:30:39.15 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -peer0.org2.example.com | [421 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [412 12-05 07:30:39.15 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-mycc-1.0 -peer1.org1.example.com | [434 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dc4253a1]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [260 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [422 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [42a 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 chaindID businesschannel -peer0.org1.example.com | [42b 12-05 07:30:23.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.4 -peer0.org1.example.com | [42c 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [42d 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.4 -peer0.org1.example.com | [42e 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [124797f0]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [42f 12-05 07:30:23.87 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 | [430 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [124797f0]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [413 12-05 07:30:39.24 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org2.example.com-mycc-1.0-26c2ef32838554aac4f7ad6f100aca865e87959c9a126e86d764c8d01f8346ab -peer1.org2.example.com | [414 12-05 07:30:39.61 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org2.example.com-mycc-1.0 -peer1.org2.example.com | [415 12-05 07:30:39.61 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org2.example.com-mycc-1.0) -peer1.org2.example.com | [416 12-05 07:30:39.65 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 | [417 12-05 07:30:39.65 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 | [418 12-05 07:30:39.65 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 | [419 12-05 07:30:39.65 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 | [435 12-05 07:30:44.90 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 | [261 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [423 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [431 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [124797f0]Move state message TRANSACTION -peer1.org2.example.com | [41a 12-05 07:30:39.65 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 mycc:1.0 -peer1.org1.example.com | [436 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dc4253a1]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [424 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [432 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [124797f0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [262 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [41b 12-05 07:30:39.65 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:"mycc:1.0" , sending back REGISTERED -peer1.org2.example.com | [41c 12-05 07:30:39.65 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 | [41d 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed -peer1.org2.example.com | [41e 12-05 07:30:39.65 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 | [425 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4] -orderer.example.com | [263 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -orderer.example.com | [264 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -peer0.org1.example.com | [433 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [426 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [41f 12-05 07:30:39.65 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.org1.example.com | [437 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dc4253a1]Move state message TRANSACTION -orderer.example.com | [265 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -peer0.org1.example.com | [434 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [124797f0]sending state message TRANSACTION -peer0.org2.example.com | [427 12-05 07:30:23.86 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 | [420 12-05 07:30:39.65 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.org1.example.com | [438 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dc4253a1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [266 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [428 12-05 07:30:23.86 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 [5963de4f-2e6f-4db1-8d92-4ef69d1d4506] -peer0.org1.example.com | [435 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [124797f0]Received message TRANSACTION from shim -peer1.org2.example.com | [421 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [343109ce]Move state message READY -peer1.org1.example.com | [439 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [429 12-05 07:30:23.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.4,txid=89fae0cf-1a82-4fff-af01-1697a608923e,syscc=true,proposal=0x0,canname=vscc:1.0.4 -peer1.org2.example.com | [422 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [343109ce]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | [267 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [43a 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dc4253a1]sending state message TRANSACTION -peer0.org2.example.com | [42a 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 chaindID businesschannel -peer0.org1.example.com | [436 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [124797f0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [42b 12-05 07:30:23.86 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.4 -peer1.org1.example.com | [43b 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dc4253a1]Received message TRANSACTION from shim -peer0.org1.example.com | [437 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [124797f0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [42c 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [423 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [343109ce]Entered state ready -peer1.org1.example.com | [43c 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dc4253a1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [42d 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.4 -orderer.example.com | [268 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [438 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org2.example.com | [42e 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [89fae0cf]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [269 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [43d 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [dc4253a1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [424 12-05 07:30:39.65 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:343109ce617bf86734db848e1c68f2a32c2d71a29ff6f98712689ba555987f07 -peer0.org2.example.com | [42f 12-05 07:30:23.86 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 | [439 12-05 07:30:23.87 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 | [26a 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [430 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [89fae0cf]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [425 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [343109ce]sending state message READY -orderer.example.com | [26b 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [431 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89fae0cf]Move state message TRANSACTION -orderer.example.com | [26c 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -peer0.org1.example.com | [43a 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer1.org1.example.com | [43e 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org2.example.com | [432 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [89fae0cf]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [26d 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -peer1.org2.example.com | [426 12-05 07:30:39.65 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 | [43b 12-05 07:30:23.87 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [43f 12-05 07:30:44.90 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 | [433 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [26e 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -peer1.org2.example.com | [427 12-05 07:30:39.65 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 | [43c 12-05 07:30:23.88 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [434 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89fae0cf]sending state message TRANSACTION -peer1.org1.example.com | [440 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | [26f 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org2.example.com | [428 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [435 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89fae0cf]Received message TRANSACTION from shim -orderer.example.com | [270 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [43d 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org1.example.com | [441 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dc4253a1]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [429 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer0.org2.example.com | [436 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [89fae0cf]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [271 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -peer0.org2.example.com | [437 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [89fae0cf]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [272 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [442 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dc4253a1]Move state message COMPLETED -peer0.org2.example.com | [438 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [43e 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [fb53e3af-c795-4e0b-8061-32461d647b31] -peer1.org2.example.com | [42a 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [343109ce]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [439 12-05 07:30:23.87 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [42b 12-05 07:30:39.65 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 | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer1.org1.example.com | [443 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dc4253a1]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV -peer0.org1.example.com | [43f 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [42c 12-05 07:30:39.65 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 | [43a 12-05 07:30:23.87 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer1.org1.example.com | [444 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dc4253a1]send state message COMPLETED -peer1.org2.example.com | [42d 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [343109ce]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer1.org1.example.com | [445 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dc4253a1]Received message COMPLETED from shim -peer0.org1.example.com | [440 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [fb53e3af-c795-4e0b-8061-32461d647b31] -peer0.org2.example.com | [43b 12-05 07:30:23.87 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [42e 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [343109ce]Move state message TRANSACTION -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR -peer1.org1.example.com | [446 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dc4253a1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [42f 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [343109ce]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w -peer0.org2.example.com | [43c 12-05 07:30:23.88 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, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 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 | [441 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer1.org2.example.com | [430 12-05 07:30:39.65 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 | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer1.org2.example.com | [431 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [343109ce]sending state message TRANSACTION -peer1.org1.example.com | [447 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dc4253a1-779d-41d8-a5d5-4bbbb16b745c]HandleMessage- COMPLETED. Notify -orderer.example.com | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK -peer1.org2.example.com | [432 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [343109ce]Received message GET_STATE from shim -peer0.org2.example.com | [43d 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer0.org1.example.com | [442 12-05 07:30:23.88 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)(0x954570)} -orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf -peer1.org2.example.com | [433 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [343109ce]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [448 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:dc4253a1-779d-41d8-a5d5-4bbbb16b745c -peer0.org2.example.com | [43e 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [53fe9dc8-219e-4a0a-8c76-f459ca5f4d93] -orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= -peer1.org2.example.com | [434 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [343109ce]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [443 12-05 07:30:23.89 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [449 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [435 12-05 07:30:39.65 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 | [273 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [43f 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [436 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [343109ce] getting state for chaincode mycc, key a, channel businesschannel -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [444 12-05 07:30:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [124797f0]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [440 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [53fe9dc8-219e-4a0a-8c76-f459ca5f4d93] -peer1.org2.example.com | [437 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [44a 12-05 07:30:44.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 [0a7ab16d-4c7e-4142-a316-81e3bc9492a1] -peer1.org2.example.com | [438 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [343109ce]Got state. Sending RESPONSE -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org2.example.com | [441 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer0.org1.example.com | [445 12-05 07:30:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [124797f0]Move state message COMPLETED -peer1.org1.example.com | [44b 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org2.example.com | [439 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [343109ce]handleGetState serial send RESPONSE -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -peer0.org2.example.com | [442 12-05 07:30:23.88 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)(0x954570)} -peer1.org2.example.com | [43a 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [343109ce]Received message COMPLETED from shim -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [446 12-05 07:30:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [124797f0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [43b 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [343109ce]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [443 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org2.example.com | [43c 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [343109ce617bf86734db848e1c68f2a32c2d71a29ff6f98712689ba555987f07]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [444 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89fae0cf]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [44c 12-05 07:30:44.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 | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -peer0.org2.example.com | [445 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89fae0cf]Move state message COMPLETED -peer1.org2.example.com | [43d 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:343109ce617bf86734db848e1c68f2a32c2d71a29ff6f98712689ba555987f07 -orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org2.example.com | [446 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [89fae0cf]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [447 12-05 07:30:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [124797f0]send state message COMPLETED -peer1.org1.example.com | [44d 12-05 07:30:44.90 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)(0xc4216ab700), Data:(*common.BlockData)(0xc421ee87e0), Metadata:(*common.BlockMetadata)(0xc421ee8820)}, doMVCCValidation=true -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -peer0.org2.example.com | [447 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89fae0cf]send state message COMPLETED -peer1.org2.example.com | [43e 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [44e 12-05 07:30:44.90 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 | [448 12-05 07:30:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [124797f0]Received message COMPLETED from shim -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -peer0.org2.example.com | [448 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89fae0cf]Received message COMPLETED from shim -peer1.org2.example.com | [43f 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -peer1.org1.example.com | [44f 12-05 07:30:44.90 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=mycc -peer0.org2.example.com | [449 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [89fae0cf]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [440 12-05 07:30:39.65 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 | [449 12-05 07:30:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [124797f0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [450 12-05 07:30:44.90 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=mycc, key=a -peer0.org2.example.com | [44a 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [89fae0cf-1a82-4fff-af01-1697a608923e]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [441 12-05 07:30:39.65 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 [f0b420ca-8857-465c-a1d9-fa925645ec15] -orderer.example.com | [274 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [44a 12-05 07:30:23.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [124797f0-c7b3-4575-b011-470e185a7de7]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [451 12-05 07:30:44.90 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=mycc, key=b -peer0.org2.example.com | [44b 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:89fae0cf-1a82-4fff-af01-1697a608923e -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -peer1.org2.example.com | [442 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [443 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 343109ce617bf86734db848e1c68f2a32c2d71a29ff6f98712689ba555987f07 channel id: businesschannel chaincode id: name:"mycc" -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org1.example.com | [452 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361] marked as valid by state validator -peer0.org1.example.com | [44b 12-05 07:30:23.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:124797f0-c7b3-4575-b011-470e185a7de7 -peer0.org2.example.com | [44c 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -peer1.org2.example.com | [444 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -peer0.org1.example.com | [44c 12-05 07:30:23.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [44d 12-05 07:30:23.88 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4, error Chaincode mycc is already instantiated -peer1.org1.example.com | [453 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xae, 0xfc, 0x62, 0xed, 0x8f, 0x6e, 0x9d, 0x4c, 0x39, 0xc9, 0x3b, 0xa2, 0x34, 0x61, 0x77, 0x99, 0x41, 0x4e, 0x6c, 0xcc, 0xa1, 0xe5, 0xff, 0x96, 0x8a, 0x7c, 0x97, 0xdf, 0x86, 0x47, 0x62, 0x27} txOffsets= -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [44d 12-05 07:30:23.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4, error Chaincode mycc is already instantiated -peer1.org2.example.com | [445 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 343109ce617bf86734db848e1c68f2a32c2d71a29ff6f98712689ba555987f07 channel id: businesschannel version: 1.0.4 -peer0.org2.example.com | [44e 12-05 07:30:23.88 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 [5963de4f-2e6f-4db1-8d92-4ef69d1d4506] -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org2.example.com | [446 12-05 07:30:39.65 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.4,txid=343109ce617bf86734db848e1c68f2a32c2d71a29ff6f98712689ba555987f07,syscc=true,proposal=0xc421b793b0,canname=escc:1.0.4 -peer1.org1.example.com | txId=b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361 locPointer=offset=70, bytesLength=2849 -peer1.org1.example.com | ] -peer1.org1.example.com | [454 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=22445, bytesLength=2849] for tx ID: [b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361] to index -peer1.org1.example.com | [455 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=22445, bytesLength=2849] for tx number:[0] ID: [b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361] to blockNumTranNum index -peer1.org1.example.com | [456 12-05 07:30:44.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[27051], isChainEmpty=[false], lastBlockNumber=[3] -peer0.org1.example.com | [44e 12-05 07:30:23.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 [9e5f2d6c-0530-444e-bc7b-e1dd5089ecbb] -peer0.org2.example.com | [44f 12-05 07:30:23.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = 74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 returned error Chaincode mycc is already instantiated -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -peer1.org2.example.com | [447 12-05 07:30:39.65 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.4 -peer1.org2.example.com | [448 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [449 12-05 07:30:39.65 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.4 -peer1.org2.example.com | [44a 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [343109ce]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [457 12-05 07:30:44.91 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 | [458 12-05 07:30:44.91 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 | [459 12-05 07:30:58.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer1.org1.example.com-mycc-1.0-cd123150154e6bf2df7ce682e0b1bcbea40499416f37a6da3aae14c4eb51b08d -peer1.org1.example.com | [45a 12-05 07:30:58.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -peer1.org1.example.com | [45b 12-05 07:30:58.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-mycc-1.0 -peer1.org1.example.com | [45c 12-05 07:30:58.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org1.example.com-mycc-1.0-cd123150154e6bf2df7ce682e0b1bcbea40499416f37a6da3aae14c4eb51b08d -peer1.org1.example.com | [45d 12-05 07:30:58.84 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org1.example.com-mycc-1.0 -peer1.org1.example.com | [45e 12-05 07:30:58.84 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org1.example.com-mycc-1.0) -peer0.org2.example.com | [450 12-05 07:30:23.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org2.example.com | [451 12-05 07:30:23.89 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 | [452 12-05 07:30:23.89 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)(0xc42187fe80), Data:(*common.BlockData)(0xc4202cca60), Metadata:(*common.BlockMetadata)(0xc4202ccaa0)}, doMVCCValidation=true -peer0.org1.example.com | [44f 12-05 07:30:23.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = 74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 returned error Chaincode mycc is already instantiated -peer0.org1.example.com | [450 12-05 07:30:23.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org1.example.com | [451 12-05 07:30:23.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] -peer0.org1.example.com | [452 12-05 07:30:23.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)(0xc42237ae00), Data:(*common.BlockData)(0xc4224e2000), Metadata:(*common.BlockMetadata)(0xc4224e2040)}, doMVCCValidation=true -peer0.org1.example.com | [453 12-05 07:30:23.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 -peer0.org1.example.com | [454 12-05 07:30:23.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [2] Transaction index [0] marked as invalid by committer. Reason code [10] -peer0.org1.example.com | [455 12-05 07:30:23.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xb3, 0xd6, 0xd5, 0x31, 0x73, 0xa, 0x8b, 0x30, 0x6e, 0x34, 0x46, 0xd2, 0xa6, 0x50, 0xbb, 0xb1, 0xd8, 0xc9, 0x3a, 0xbe, 0x77, 0xd6, 0x28, 0x7c, 0xed, 0x47, 0x66, 0x4, 0x54, 0xbc, 0xa4, 0x1b} txOffsets= -peer0.org1.example.com | txId=74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 locPointer=offset=70, bytesLength=3387 -peer1.org1.example.com | [45f 12-05 07:30:58.90 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 | [460 12-05 07:30:58.90 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 | [461 12-05 07:30:58.90 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 | [462 12-05 07:30:58.90 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 | [463 12-05 07:30:58.90 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 mycc:1.0 -peer1.org1.example.com | [464 12-05 07:30:58.90 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:"mycc:1.0" , sending back REGISTERED -peer1.org1.example.com | [465 12-05 07:30:58.90 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 | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [275 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [276 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | [277 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [278 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org2.example.com | [44b 12-05 07:30:39.65 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 | [44c 12-05 07:30:39.65 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 | [44d 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [343109ce]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [44e 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [343109ce]Move state message TRANSACTION -peer1.org2.example.com | [44f 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [343109ce]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [450 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [451 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [343109ce]sending state message TRANSACTION -peer1.org2.example.com | [452 12-05 07:30:39.65 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 | [453 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [343109ce]Received message TRANSACTION from shim -peer0.org2.example.com | [453 12-05 07:30:23.89 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 | ] -peer0.org1.example.com | [456 12-05 07:30:23.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=17232, bytesLength=3387] for tx ID: [74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4] to index -peer0.org1.example.com | [457 12-05 07:30:23.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=17232, bytesLength=3387] for tx number:[0] ID: [74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4] to blockNumTranNum index -peer0.org1.example.com | [458 12-05 07:30:23.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[22375], isChainEmpty=[false], lastBlockNumber=[2] -peer0.org1.example.com | [459 12-05 07:30:23.91 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 | [45a 12-05 07:30:23.91 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 | [45b 12-05 07:30:23.91 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 | [45c 12-05 07:30:23.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 | [45d 12-05 07:30:23.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 [2] with [1] transactions -peer0.org1.example.com | [45e 12-05 07:30:23.92 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 | [45f 12-05 07:30:23.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 [2] -peer0.org1.example.com | [460 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org1.example.com | [461 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [2] contains transaction id: 74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 -peer0.org1.example.com | [462 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] -peer0.org1.example.com | [463 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org1.example.com | [464 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [465 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org1.example.com | [466 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org1.example.com | [467 12-05 07:30:23.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org1.example.com | [468 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org1.example.com | [469 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc424a77e30 -peer0.org1.example.com | [46a 12-05 07:30:42.80 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 | [46b 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [46c 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -peer0.org1.example.com | [46d 12-05 07:30:42.80 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 | [46e 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [46f 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc424a7d5e0, header 0xc424a77e60 -peer0.org1.example.com | [470 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -peer0.org1.example.com | [471 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361 -peer0.org1.example.com | [472 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361] -peer0.org1.example.com | [473 12-05 07:30:42.80 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 | [474 12-05 07:30:42.80 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 [711daa80-1389-4030-8ece-df6ae5d1c629] -orderer.example.com | [279 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -peer1.org1.example.com | [466 12-05 07:30:58.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed -peer1.org2.example.com | [454 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [343109ce]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [455 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [343109ce]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [456 12-05 07:30:39.65 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org2.example.com | [457 12-05 07:30:39.66 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer1.org2.example.com | [458 12-05 07:30:39.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [343109ce]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [459 12-05 07:30:39.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [343109ce]Move state message COMPLETED -peer1.org2.example.com | [45a 12-05 07:30:39.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [343109ce]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [45b 12-05 07:30:39.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [343109ce]send state message COMPLETED -peer1.org2.example.com | [45c 12-05 07:30:39.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [343109ce]Received message COMPLETED from shim -peer1.org2.example.com | [45d 12-05 07:30:39.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [343109ce]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [45e 12-05 07:30:39.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [343109ce617bf86734db848e1c68f2a32c2d71a29ff6f98712689ba555987f07]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [454 12-05 07:30:23.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [2] Transaction index [0] marked as invalid by committer. Reason code [10] -peer0.org2.example.com | [455 12-05 07:30:23.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xb3, 0xd6, 0xd5, 0x31, 0x73, 0xa, 0x8b, 0x30, 0x6e, 0x34, 0x46, 0xd2, 0xa6, 0x50, 0xbb, 0xb1, 0xd8, 0xc9, 0x3a, 0xbe, 0x77, 0xd6, 0x28, 0x7c, 0xed, 0x47, 0x66, 0x4, 0x54, 0xbc, 0xa4, 0x1b} txOffsets= -peer0.org2.example.com | txId=74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 locPointer=offset=70, bytesLength=3387 -peer0.org2.example.com | ] -peer0.org2.example.com | [456 12-05 07:30:23.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=17232, bytesLength=3387] for tx ID: [74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4] to index -peer0.org2.example.com | [457 12-05 07:30:23.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=17232, bytesLength=3387] for tx number:[0] ID: [74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4] to blockNumTranNum index -peer0.org2.example.com | [458 12-05 07:30:23.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[22375], isChainEmpty=[false], lastBlockNumber=[2] -peer0.org2.example.com | [459 12-05 07:30:23.89 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 | [475 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361 channel id: businesschannel -orderer.example.com | [27a 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [467 12-05 07:30:58.90 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 | [45a 12-05 07:30:23.89 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 | [476 12-05 07:30:42.80 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.4,txid=b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361,syscc=true,proposal=0xc424a7d5e0,canname=lscc:1.0.4 -orderer.example.com | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [45f 12-05 07:30:39.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:343109ce617bf86734db848e1c68f2a32c2d71a29ff6f98712689ba555987f07 -peer1.org2.example.com | [460 12-05 07:30:39.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [461 12-05 07:30:39.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [462 12-05 07:30:39.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer1.org2.example.com | [463 12-05 07:30:39.66 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 [f0b420ca-8857-465c-a1d9-fa925645ec15] -peer1.org2.example.com | [464 12-05 07:30:39.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer1.org2.example.com | [465 12-05 07:30:39.66 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 | [466 12-05 07:30:39.66 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 | [467 12-05 07:30:39.66 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 | [468 12-05 07:30:58.90 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.org1.example.com | [469 12-05 07:30:58.90 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.org1.example.com | [46a 12-05 07:30:58.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32d8b862]Move state message READY -peer1.org1.example.com | [46b 12-05 07:30:58.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [32d8b862]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [45b 12-05 07:30:23.89 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 | [45c 12-05 07:30:23.90 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 | [45d 12-05 07:30:23.90 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 | [45e 12-05 07:30:23.90 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 | [45f 12-05 07:30:23.90 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 | [460 12-05 07:30:23.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org2.example.com | [461 12-05 07:30:23.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [2] contains transaction id: 74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [468 12-05 07:30:39.66 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 | [477 12-05 07:30:42.80 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.4 -peer0.org1.example.com | [478 12-05 07:30:42.80 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 | [479 12-05 07:30:42.80 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.4 -peer0.org1.example.com | [47a 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b108583e]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [47b 12-05 07:30:42.80 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 | [46c 12-05 07:30:58.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [32d8b862]Entered state ready -peer0.org2.example.com | [462 12-05 07:30:23.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] -peer0.org2.example.com | [463 12-05 07:30:23.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org2.example.com | [464 12-05 07:30:23.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [465 12-05 07:30:23.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org2.example.com | [466 12-05 07:30:23.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org2.example.com | [467 12-05 07:30:23.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org2.example.com | [468 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [0] -peer0.org2.example.com | [469 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [0] -peer0.org2.example.com | [46a 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org2.example.com | [46b 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org2.example.com | [46c 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org2.example.com | [46d 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4215e9bc0 -peer0.org1.example.com | [47c 12-05 07:30:42.80 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 | [47d 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b108583e]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [47e 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b108583e]Move state message TRANSACTION -peer0.org1.example.com | [47f 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b108583e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [480 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [481 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b108583e]sending state message TRANSACTION -peer0.org1.example.com | [482 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b108583e]Received message TRANSACTION from shim -peer0.org1.example.com | [483 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b108583e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [484 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b108583e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [485 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [b108583e]Sending GET_STATE -peer1.org1.example.com | [46d 12-05 07:30:58.91 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:32d8b862f5cae1495687006e80e044a8a17164a3c9015029b066987777221c4a -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [46e 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\242\226\231\321\005\020\310\266\206\375\002\"\017businesschannel*@b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030C\177D:@\244\305z\336\2571%\320\223\3406H\2049\345\253\367\251\311" -peer1.org2.example.com | [469 12-05 07:30:39.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org1.example.com | [486 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b108583e]Received message GET_STATE from shim -peer1.org1.example.com | [46e 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32d8b862]sending state message READY -peer1.org1.example.com | [46f 12-05 07:30:58.91 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 | [470 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org1.example.com | [471 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 -orderer.example.com | +/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN -orderer.example.com | wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 -orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL -orderer.example.com | liPpNxLSsBU= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [27b 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [46f 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [470 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [471 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -peer0.org2.example.com | [472 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [473 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [46a 12-05 07:30:39.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [2] contains transaction id: 74f4437e9b5f5871abbf5bb6b6c86cecefac5d8c37d017673f521092e68f7ad4 -peer1.org2.example.com | [46b 12-05 07:30:39.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] -peer1.org2.example.com | [46c 12-05 07:30:39.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org2.example.com | [46d 12-05 07:30:39.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [46e 12-05 07:30:39.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [46f 12-05 07:30:39.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [470 12-05 07:30:39.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [471 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [0] -peer1.org2.example.com | [472 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [0] -peer1.org2.example.com | [473 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org1.example.com | [487 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b108583e]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [488 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [b108583e]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [489 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [48a 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b108583e] getting state for chaincode lscc, key mycc, channel businesschannel -peer1.org1.example.com | [472 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer1.org1.example.com | [473 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [32d8b862]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [474 12-05 07:30:58.91 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 | [475 12-05 07:30:58.91 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 | [476 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [32d8b862]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [477 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32d8b862]Move state message TRANSACTION -peer1.org1.example.com | [478 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [32d8b862]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [479 12-05 07:30:58.91 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 | [47a 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32d8b862]sending state message TRANSACTION -peer1.org1.example.com | [47b 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32d8b862]Received message GET_STATE from shim -peer1.org1.example.com | [47c 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [32d8b862]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [47d 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [32d8b862]Received GET_STATE, invoking get state from ledger -peer1.org1.example.com | [47e 12-05 07:30:58.91 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 | [47f 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [32d8b862] getting state for chaincode mycc, key a, channel businesschannel -peer1.org1.example.com | [480 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -peer1.org1.example.com | [481 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [32d8b862]Got state. Sending RESPONSE -peer1.org1.example.com | [482 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [32d8b862]handleGetState serial send RESPONSE -peer1.org1.example.com | [483 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32d8b862]Received message COMPLETED from shim -peer1.org1.example.com | [484 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [32d8b862]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [485 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [32d8b862f5cae1495687006e80e044a8a17164a3c9015029b066987777221c4a]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [486 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:32d8b862f5cae1495687006e80e044a8a17164a3c9015029b066987777221c4a -peer1.org1.example.com | [487 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [488 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org1.example.com | [489 12-05 07:30:58.91 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 | [48a 12-05 07:30:58.91 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 [5b68b482-10d9-46bc-8637-f6dcc9e624b3] -peer1.org1.example.com | [48b 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org1.example.com | [48c 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 32d8b862f5cae1495687006e80e044a8a17164a3c9015029b066987777221c4a channel id: businesschannel chaincode id: name:"mycc" -peer1.org2.example.com | [474 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [475 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org2.example.com | [474 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421457000, header channel_header:"\010\003\032\014\010\242\226\231\321\005\020\310\266\206\375\002\"\017businesschannel*@b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030C\177D:@\244\305z\336\2571%\320\223\3406H\2049\345\253\367\251\311" -peer0.org1.example.com | [48b 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [48c 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b108583e]Got state. Sending RESPONSE -peer0.org1.example.com | [48d 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b108583e]handleGetState serial send RESPONSE -peer0.org1.example.com | [48e 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b108583e]Received message RESPONSE from shim -peer0.org1.example.com | [48f 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b108583e]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [490 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [b108583e]before send -peer1.org1.example.com | [48d 12-05 07:30:58.91 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 | [48e 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -peer1.org1.example.com | [48f 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer1.org1.example.com | [491 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer1.org2.example.com | [476 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42032c420 -peer1.org2.example.com | [477 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\242\226\231\321\005\020\310\266\206\375\002\"\017businesschannel*@b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030C\177D:@\244\305z\336\2571%\320\223\3406H\2049\345\253\367\251\311" -peer1.org2.example.com | [478 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 -orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h -orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA -orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx -orderer.example.com | zekLSULI9G2UUYA77A== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [27c 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [490 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 32d8b862f5cae1495687006e80e044a8a17164a3c9015029b066987777221c4a channel id: businesschannel version: 1.0.4 -peer0.org1.example.com | [491 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [b108583e]after send -peer1.org2.example.com | [479 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [492 12-05 07:30:58.91 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.4,txid=32d8b862f5cae1495687006e80e044a8a17164a3c9015029b066987777221c4a,syscc=true,proposal=0xc421816d70,canname=escc:1.0.4 -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 -orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h -orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA -peer0.org1.example.com | [492 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [b108583e]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [493 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [b108583e]GetState received payload RESPONSE -peer0.org1.example.com | [494 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b108583e]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [495 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b108583e]Move state message COMPLETED -peer0.org1.example.com | [496 12-05 07:30:42.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b108583e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [497 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b108583e]send state message COMPLETED -peer0.org1.example.com | [498 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b108583e]Received message COMPLETED from shim -peer0.org1.example.com | [499 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b108583e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [49a 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [49b 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361 -peer0.org2.example.com | [475 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org1.example.com | [493 12-05 07:30:58.91 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.4 -peer1.org2.example.com | [47a 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -peer1.org2.example.com | [47b 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [47c 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx -peer0.org2.example.com | [476 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [477 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [478 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [494 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [495 12-05 07:30:58.91 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.4 -peer1.org1.example.com | [496 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [32d8b862]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [497 12-05 07:30:58.91 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 | [47d 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421cee000, header channel_header:"\010\003\032\014\010\242\226\231\321\005\020\310\266\206\375\002\"\017businesschannel*@b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030C\177D:@\244\305z\336\2571%\320\223\3406H\2049\345\253\367\251\311" -peer0.org2.example.com | [479 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361] -orderer.example.com | zekLSULI9G2UUYA77A== -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [49c 12-05 07:30:42.81 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 | [498 12-05 07:30:58.91 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 | [499 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [32d8b862]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [49a 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32d8b862]Move state message TRANSACTION -peer1.org1.example.com | [49b 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [32d8b862]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [49c 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [49e 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32d8b862]sending state message TRANSACTION -peer1.org1.example.com | [49d 12-05 07:30:58.91 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 | [49f 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32d8b862]Received message TRANSACTION from shim -peer1.org1.example.com | [4a0 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [32d8b862]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [4a2 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [32d8b862]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [47a 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [47e 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | [27d 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [27e 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [27f 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [280 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [281 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [282 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [49d 12-05 07:30:42.81 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 | [47f 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [480 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org2.example.com | [481 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [482 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361] -peer1.org2.example.com | [483 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [484 12-05 07:30:44.85 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 [0200d1dc-224b-49b0-8afc-c7ea0c591b44] -peer1.org2.example.com | [485 12-05 07:30:44.85 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=mycc -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [486 12-05 07:30:44.85 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 [0200d1dc-224b-49b0-8afc-c7ea0c591b44] -peer1.org2.example.com | [487 12-05 07:30:44.85 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 | [488 12-05 07:30:44.85 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 [10adc6ba-1ac8-49f1-b1d6-6fbe7727535e] -peer0.org1.example.com | [49e 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361 channel id: businesschannel version: 1.0 -peer0.org1.example.com | [49f 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361,syscc=false,proposal=0xc424a7d5e0,canname=mycc:1.0 -peer0.org1.example.com | [4a0 12-05 07:30:42.81 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) : mycc:1.0 -peer0.org1.example.com | [4a1 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [47b 12-05 07:30:44.85 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 [a16003be-0a14-4e8b-81f0-d58ebda2c463] -peer1.org2.example.com | [489 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.4,txid=5fa1a661-c639-4ec6-af48-b586b4df1af0,syscc=true,proposal=0x0,canname=vscc:1.0.4 -peer1.org2.example.com | [48a 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361 chaindID businesschannel -peer1.org2.example.com | [48b 12-05 07:30:44.85 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.4 -peer1.org2.example.com | [48c 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [48d 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.4 -peer1.org2.example.com | [48e 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5fa1a661]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [48f 12-05 07:30:44.85 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 | [490 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5fa1a661]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [4a1 12-05 07:30:58.91 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 | [4a3 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org1.example.com | [4a4 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer1.org1.example.com | [4a5 12-05 07:30:58.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32d8b862]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [4a6 12-05 07:30:58.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32d8b862]Move state message COMPLETED -peer1.org1.example.com | [4a7 12-05 07:30:58.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [32d8b862]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [4a8 12-05 07:30:58.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32d8b862]send state message COMPLETED -peer1.org1.example.com | [4a9 12-05 07:30:58.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32d8b862]Received message COMPLETED from shim -peer1.org1.example.com | [4aa 12-05 07:30:58.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [32d8b862]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [4ab 12-05 07:30:58.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [32d8b862f5cae1495687006e80e044a8a17164a3c9015029b066987777221c4a]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [4ac 12-05 07:30:58.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:32d8b862f5cae1495687006e80e044a8a17164a3c9015029b066987777221c4a -peer0.org1.example.com | [4a2 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer1.org2.example.com | [491 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5fa1a661]Move state message TRANSACTION -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W -orderer.example.com | RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ -orderer.example.com | kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc -orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq -orderer.example.com | VA7fF8MfGA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [283 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -peer1.org1.example.com | [4ad 12-05 07:30:58.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [47c 12-05 07:30:44.85 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=mycc -peer0.org1.example.com | [4a3 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b108583e]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [492 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5fa1a661]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | Xk1Xy2C2aVQjOcr++w== -peer0.org2.example.com | [47d 12-05 07:30:44.85 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 [a16003be-0a14-4e8b-81f0-d58ebda2c463] -peer0.org2.example.com | [47e 12-05 07:30:44.85 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 | [47f 12-05 07:30:44.85 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 [1b0d28ba-5965-42d6-ab4e-8ba10f0cea53] -peer0.org2.example.com | [480 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.4,txid=96c3e37a-b945-4c10-8e15-88d8153059f4,syscc=true,proposal=0x0,canname=vscc:1.0.4 -peer1.org1.example.com | [4ae 12-05 07:30:58.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [4a4 12-05 07:30:42.81 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 | [493 12-05 07:30:44.85 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 | [4af 12-05 07:30:58.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [4a5 12-05 07:30:42.81 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 | [494 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5fa1a661]sending state message TRANSACTION -peer1.org1.example.com | [4b0 12-05 07:30:58.92 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 [5b68b482-10d9-46bc-8637-f6dcc9e624b3] -orderer.example.com | [284 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [4a6 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b108583e]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [481 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361 chaindID businesschannel -peer1.org2.example.com | [495 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5fa1a661]Received message TRANSACTION from shim -peer0.org2.example.com | [482 12-05 07:30:44.85 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.4 -peer0.org1.example.com | [4a7 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b108583e]Move state message TRANSACTION -peer1.org1.example.com | [4b1 12-05 07:30:58.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -peer1.org2.example.com | [496 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5fa1a661]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [4b2 12-05 07:30:58.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 [3] -peer0.org2.example.com | [483 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [4a8 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b108583e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [497 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5fa1a661]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [4b3 12-05 07:30:58.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org1.example.com | [4a9 12-05 07:30:42.81 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 | [484 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.4 -peer1.org2.example.com | [498 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [4aa 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b108583e]sending state message TRANSACTION -peer1.org1.example.com | [4b4 12-05 07:30:58.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361 -peer0.org2.example.com | [485 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [96c3e37a]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -peer0.org1.example.com | [4ab 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b108583e]Received message GET_STATE from shim -peer1.org2.example.com | [499 12-05 07:30:44.85 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 | [4b5 12-05 07:30:58.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] -peer0.org2.example.com | [486 12-05 07:30:44.85 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 | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org2.example.com | [487 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [96c3e37a]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [4ac 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b108583e]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [49a 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org2.example.com | [488 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [96c3e37a]Move state message TRANSACTION -peer1.org1.example.com | [4b6 12-05 07:30:58.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org2.example.com | [49b 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5fa1a661]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [4ad 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [b108583e]Received GET_STATE, invoking get state from ledger -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer0.org2.example.com | [489 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [96c3e37a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [49c 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5fa1a661]Move state message COMPLETED -peer1.org1.example.com | [4b7 12-05 07:30:58.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -peer0.org1.example.com | [4af 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b108583e] getting state for chaincode mycc, key a, channel businesschannel -peer0.org2.example.com | [48a 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -peer1.org1.example.com | [4b8 12-05 07:30:58.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [49d 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5fa1a661]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [4b0 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -peer0.org2.example.com | [48b 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [96c3e37a]sending state message TRANSACTION -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -peer1.org1.example.com | [4b9 12-05 07:30:58.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [49e 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5fa1a661]send state message COMPLETED -peer0.org1.example.com | [4b1 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b108583e]Got state. Sending RESPONSE -peer0.org2.example.com | [48c 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [96c3e37a]Received message TRANSACTION from shim -peer1.org2.example.com | [49f 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5fa1a661]Received message COMPLETED from shim -orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -peer0.org2.example.com | [48d 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [96c3e37a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [4ba 12-05 07:30:58.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [4a0 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5fa1a661]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [4b2 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b108583e]handleGetState serial send RESPONSE -orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -peer0.org2.example.com | [48e 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [96c3e37a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [4ae 12-05 07:30:42.81 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 | [4bb 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org2.example.com | [4a1 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5fa1a661-c639-4ec6-af48-b586b4df1af0]HandleMessage- COMPLETED. Notify -orderer.example.com | Xk1Xy2C2aVQjOcr++w== -peer0.org2.example.com | [48f 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [4b3 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b108583e]Received message GET_STATE from shim -peer1.org2.example.com | [4a2 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5fa1a661-c639-4ec6-af48-b586b4df1af0 -peer0.org2.example.com | [490 12-05 07:30:44.85 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 | [4bc 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422024660 -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [4a3 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [4b4 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b108583e]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [285 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer1.org2.example.com | [4a4 12-05 07:30:44.86 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 [10adc6ba-1ac8-49f1-b1d6-6fbe7727535e] -peer0.org2.example.com | [491 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer1.org1.example.com | [4bd 12-05 07:31:02.03 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 | [492 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [96c3e37a]Transaction completed. Sending COMPLETED -orderer.example.com | [286 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -peer1.org2.example.com | [4a5 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org1.example.com | [4b5 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [b108583e]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [493 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [96c3e37a]Move state message COMPLETED -peer0.org1.example.com | [4b6 12-05 07:30:42.81 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 | [287 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [288 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org1.example.com | [4be 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [4b7 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b108583e] getting state for chaincode mycc, key b, channel businesschannel -peer1.org2.example.com | [4a6 12-05 07:30:44.86 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 | [289 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -peer0.org2.example.com | [494 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [96c3e37a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [4a7 12-05 07:30:44.86 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)(0xc42014f180), Data:(*common.BlockData)(0xc420158e20), Metadata:(*common.BlockMetadata)(0xc420158e60)}, doMVCCValidation=true -peer1.org1.example.com | [4bf 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -peer1.org2.example.com | [4a8 12-05 07:30:44.86 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 | [495 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [96c3e37a]send state message COMPLETED -orderer.example.com | [28a 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [4b8 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=b -peer1.org2.example.com | [4a9 12-05 07:30:44.86 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=mycc -orderer.example.com | [28b 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -peer0.org2.example.com | [496 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [96c3e37a]Received message COMPLETED from shim -peer1.org2.example.com | [4aa 12-05 07:30:44.86 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=mycc, key=a -peer1.org1.example.com | [4c0 12-05 07:31:02.03 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 | [28c 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [4b9 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b108583e]Got state. Sending RESPONSE -peer1.org2.example.com | [4ab 12-05 07:30:44.86 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=mycc, key=b -peer0.org2.example.com | [497 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [96c3e37a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [28d 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -peer1.org2.example.com | [4ac 12-05 07:30:44.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361] marked as valid by state validator -peer0.org2.example.com | [498 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [96c3e37a-b945-4c10-8e15-88d8153059f4]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [4ba 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b108583e]handleGetState serial send RESPONSE -peer1.org1.example.com | [4c1 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [4ad 12-05 07:30:44.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xae, 0xfc, 0x62, 0xed, 0x8f, 0x6e, 0x9d, 0x4c, 0x39, 0xc9, 0x3b, 0xa2, 0x34, 0x61, 0x77, 0x99, 0x41, 0x4e, 0x6c, 0xcc, 0xa1, 0xe5, 0xff, 0x96, 0x8a, 0x7c, 0x97, 0xdf, 0x86, 0x47, 0x62, 0x27} txOffsets= -peer0.org2.example.com | [499 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:96c3e37a-b945-4c10-8e15-88d8153059f4 -orderer.example.com | [28e 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [4bb 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b108583e]Received message PUT_STATE from shim -peer1.org1.example.com | [4c2 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421cf1950, header 0xc422024690 -peer1.org2.example.com | txId=b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361 locPointer=offset=70, bytesLength=2849 -peer1.org1.example.com | [4c3 12-05 07:31:02.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:"mycc" -peer1.org2.example.com | ] -orderer.example.com | [28f 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org2.example.com | [49a 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [4ae 12-05 07:30:44.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=22445, bytesLength=2849] for tx ID: [b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361] to index -peer0.org1.example.com | [4bc 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b108583e]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org2.example.com | [49b 12-05 07:30:44.86 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 [1b0d28ba-5965-42d6-ab4e-8ba10f0cea53] -peer1.org1.example.com | [4c4 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 9dc092510e36fc5fa560344726ce7a54bf16d36b1f0c35713ffe5d0cbeeb06e4 -orderer.example.com | [290 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer1.org2.example.com | [4af 12-05 07:30:44.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=22445, bytesLength=2849] for tx number:[0] ID: [b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361] to blockNumTranNum index -peer0.org2.example.com | [49c 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org1.example.com | [4bd 12-05 07:30:42.81 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 | [4b0 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[27051], isChainEmpty=[false], lastBlockNumber=[3] -peer1.org1.example.com | [4c5 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [9dc092510e36fc5fa560344726ce7a54bf16d36b1f0c35713ffe5d0cbeeb06e4] -orderer.example.com | [291 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer1.org2.example.com | [4b1 12-05 07:30:44.90 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 | [49d 12-05 07:30:44.86 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 | [4be 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b108583e]state is ready -peer1.org2.example.com | [4b2 12-05 07:30:44.90 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 | [4c6 12-05 07:31:02.03 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 | [292 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org2.example.com | [4b3 12-05 07:30:44.90 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 | [4bf 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b108583e]Completed PUT_STATE. Sending RESPONSE -orderer.example.com | [293 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -peer1.org1.example.com | [4c7 12-05 07:31:02.03 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 [f499a316-a97b-4c15-b9e6-cf347513cbdc] -peer1.org2.example.com | [4b4 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer0.org2.example.com | [49e 12-05 07:30:44.86 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)(0xc420167e80), Data:(*common.BlockData)(0xc421856460), Metadata:(*common.BlockMetadata)(0xc4218564a0)}, doMVCCValidation=true -peer0.org1.example.com | [4c0 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b108583e]enterBusyState trigger event RESPONSE -orderer.example.com | [294 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer1.org2.example.com | [4b5 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer1.org1.example.com | [4c8 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 9dc092510e36fc5fa560344726ce7a54bf16d36b1f0c35713ffe5d0cbeeb06e4 channel id: businesschannel -peer0.org1.example.com | [4c1 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b108583e]Move state message RESPONSE -orderer.example.com | [295 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -peer0.org2.example.com | [49f 12-05 07:30:44.86 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 | [4b6 12-05 07:30:44.90 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 | [4c2 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b108583e]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org2.example.com | [4b7 12-05 07:30:44.90 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 | [4a0 12-05 07:30:44.86 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=mycc -peer1.org1.example.com | [4c9 12-05 07:31:02.03 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.4,txid=9dc092510e36fc5fa560344726ce7a54bf16d36b1f0c35713ffe5d0cbeeb06e4,syscc=true,proposal=0xc421cf1950,canname=lscc:1.0.4 -peer0.org2.example.com | [4a1 12-05 07:30:44.86 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=mycc, key=a -peer0.org1.example.com | [4c3 12-05 07:30:42.81 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 | [296 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer1.org2.example.com | [4b8 12-05 07:30:44.90 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.org1.example.com | [4ca 12-05 07:31:02.03 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.4 -peer0.org2.example.com | [4a2 12-05 07:30:44.86 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=mycc, key=b -peer1.org2.example.com | [4b9 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org2.example.com | [4ba 12-05 07:30:44.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361 -peer1.org2.example.com | [4bb 12-05 07:30:44.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] -peer1.org2.example.com | [4bc 12-05 07:30:44.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org2.example.com | [4bd 12-05 07:30:44.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [4be 12-05 07:30:44.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [4bf 12-05 07:30:44.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [4c0 12-05 07:30:44.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [4c1 12-05 07:31:05.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org2.example.com | [4c2 12-05 07:31:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4217b9650 -peer1.org2.example.com | [4c3 12-05 07:31:05.17 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 | [4c4 12-05 07:31:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [4c4 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b108583e]sending state message RESPONSE -peer0.org1.example.com | [4c5 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b108583e]Received message PUT_STATE from shim -peer0.org2.example.com | [4a3 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361] marked as valid by state validator -peer0.org2.example.com | [4a4 12-05 07:30:44.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xae, 0xfc, 0x62, 0xed, 0x8f, 0x6e, 0x9d, 0x4c, 0x39, 0xc9, 0x3b, 0xa2, 0x34, 0x61, 0x77, 0x99, 0x41, 0x4e, 0x6c, 0xcc, 0xa1, 0xe5, 0xff, 0x96, 0x8a, 0x7c, 0x97, 0xdf, 0x86, 0x47, 0x62, 0x27} txOffsets= -peer0.org2.example.com | txId=b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361 locPointer=offset=70, bytesLength=2849 -peer0.org2.example.com | ] -peer0.org2.example.com | [4a5 12-05 07:30:44.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=22445, bytesLength=2849] for tx ID: [b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361] to index -peer0.org2.example.com | [4a6 12-05 07:30:44.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=22445, bytesLength=2849] for tx number:[0] ID: [b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361] to blockNumTranNum index -peer0.org2.example.com | [4a7 12-05 07:30:44.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[27051], isChainEmpty=[false], lastBlockNumber=[3] -peer0.org2.example.com | [4a8 12-05 07:30:44.88 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 | [4a9 12-05 07:30:44.88 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 | [4aa 12-05 07:30:44.88 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 | [4ab 12-05 07:30:44.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer0.org2.example.com | [4ac 12-05 07:30:44.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer0.org2.example.com | [4ad 12-05 07:30:44.88 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 | [4ae 12-05 07:30:44.88 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 | [4af 12-05 07:30:44.89 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 | [297 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -peer1.org1.example.com | [4cb 12-05 07:31:02.03 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 | [4c5 12-05 07:31:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} -peer0.org1.example.com | [4c6 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b108583e]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org2.example.com | [4b0 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org2.example.com | [4c6 12-05 07:31:05.17 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 | [298 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer1.org1.example.com | [4cc 12-05 07:31:02.03 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.4 -peer0.org1.example.com | [4c7 12-05 07:30:42.81 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 | [4c8 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b108583e]state is ready -peer0.org2.example.com | [4b1 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361 -orderer.example.com | [299 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -peer1.org1.example.com | [4cd 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9dc09251]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [4c7 12-05 07:31:05.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 | [4c9 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b108583e]Completed PUT_STATE. Sending RESPONSE -peer0.org2.example.com | [4b2 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] -peer1.org1.example.com | [4ce 12-05 07:31:02.03 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 | [29a 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer1.org2.example.com | [4c8 12-05 07:31:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42158d540, header 0xc4217b9680 -peer0.org1.example.com | [4ca 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b108583e]enterBusyState trigger event RESPONSE -peer0.org2.example.com | [4b3 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org1.example.com | [4cf 12-05 07:31:02.03 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 | [29b 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -peer1.org2.example.com | [4c9 12-05 07:31:05.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:"mycc" -peer0.org1.example.com | [4cb 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b108583e]Move state message RESPONSE -peer0.org2.example.com | [4b4 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [4d0 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9dc09251]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [29c 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org2.example.com | [4ca 12-05 07:31:05.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 0a78b864945a0c7cc449f48e464241772451595d30248a37372a2e1f575a6721 -peer0.org1.example.com | [4cc 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b108583e]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer0.org2.example.com | [4b5 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org1.example.com | [4d1 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9dc09251]Move state message TRANSACTION -orderer.example.com | [29d 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -peer0.org1.example.com | [4cd 12-05 07:30:42.81 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 | [4cb 12-05 07:31:05.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0a78b864945a0c7cc449f48e464241772451595d30248a37372a2e1f575a6721] -peer0.org2.example.com | [4b6 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org1.example.com | [4d2 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9dc09251]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [29e 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org2.example.com | [4cc 12-05 07:31:05.18 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 | [4b7 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org2.example.com | [4b8 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [0] -peer1.org1.example.com | [4d3 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [4ce 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b108583e]sending state message RESPONSE -peer1.org2.example.com | [4cd 12-05 07:31:05.18 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 [fced0395-d911-4375-ac5d-710051d7b148] -orderer.example.com | [29f 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org2.example.com | [4b9 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [0] -peer1.org1.example.com | [4d4 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9dc09251]sending state message TRANSACTION -peer0.org1.example.com | [4cf 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b108583e]Received message COMPLETED from shim -orderer.example.com | [2a0 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org2.example.com | [4ba 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org2.example.com | [4ce 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 0a78b864945a0c7cc449f48e464241772451595d30248a37372a2e1f575a6721 channel id: businesschannel -peer1.org1.example.com | [4d5 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9dc09251]Received message TRANSACTION from shim -peer0.org1.example.com | [4d0 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b108583e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [4bb 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -orderer.example.com | [2a1 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -peer1.org2.example.com | [4cf 12-05 07:31:05.18 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.4,txid=0a78b864945a0c7cc449f48e464241772451595d30248a37372a2e1f575a6721,syscc=true,proposal=0xc42158d540,canname=lscc:1.0.4 -peer1.org1.example.com | [4d6 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9dc09251]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [4d1 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [4bc 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -orderer.example.com | [2a2 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org2.example.com | [4d0 12-05 07:31:05.18 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.4 -peer1.org1.example.com | [4d7 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9dc09251]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [4bd 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421ad8ea0 -orderer.example.com | [2a3 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -peer1.org2.example.com | [4d1 12-05 07:31:05.18 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 | [4d2 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361 -peer1.org1.example.com | [4d8 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [9dc09251]Sending GET_STATE -peer0.org2.example.com | [4be 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\274\226\231\321\005\020\324\327\221\227\001\"\017businesschannel*@4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030\tP\036\260gY7\367\205\207P\360\016\324u\222\213\372]\036\035\005\261\313" -peer1.org2.example.com | [4d2 12-05 07:31:05.18 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.4 -orderer.example.com | [2a4 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -peer0.org1.example.com | [4d3 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [4d9 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9dc09251]Received message GET_STATE from shim -peer1.org2.example.com | [4d3 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0a78b864]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [2a5 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -peer0.org2.example.com | [4bf 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [4da 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9dc09251]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [4d4 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [4d4 12-05 07:31:05.18 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 | [2a6 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org2.example.com | [4c0 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [4db 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [9dc09251]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [4d5 12-05 07:30:42.81 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 | [4d5 12-05 07:31:05.18 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 | [4c1 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} -peer1.org1.example.com | [4dc 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [4d6 12-05 07:30:42.81 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 [711daa80-1389-4030-8ece-df6ae5d1c629] -orderer.example.com | [2a7 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | [2a8 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -peer1.org2.example.com | [4d6 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0a78b864]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [4d7 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org1.example.com | [4dd 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9dc09251] getting state for chaincode lscc, key mycc, channel businesschannel -orderer.example.com | [2a9 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | [2aa 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | [2ab 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | [2ac 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -peer0.org2.example.com | [4c2 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [4c3 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [4de 12-05 07:31:02.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org1.example.com | [4df 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9dc09251]Got state. Sending RESPONSE -peer1.org1.example.com | [4e0 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [9dc09251]handleGetState serial send RESPONSE -peer0.org1.example.com | [4d8 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361 channel id: businesschannel chaincode id: name:"mycc" -peer1.org2.example.com | [4d7 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a78b864]Move state message TRANSACTION -peer0.org2.example.com | [4c4 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421930000, header channel_header:"\010\003\032\014\010\274\226\231\321\005\020\324\327\221\227\001\"\017businesschannel*@4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030\tP\036\260gY7\367\205\207P\360\016\324u\222\213\372]\036\035\005\261\313" -orderer.example.com | [2ad 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -peer0.org1.example.com | [4d9 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -peer1.org2.example.com | [4d8 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0a78b864]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [2ae 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -orderer.example.com | [2af 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | [2b0 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -peer0.org2.example.com | [4c5 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org2.example.com | [4c6 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [4c7 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [4c8 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [4c9 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302] -peer0.org2.example.com | [4ca 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer0.org2.example.com | [4cb 12-05 07:31:10.38 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 [9f0ea794-c7b1-4424-bd6d-619751ee732b] -peer0.org2.example.com | [4cc 12-05 07:31:10.38 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=mycc -peer0.org1.example.com | [4da 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361 channel id: businesschannel version: 1.0.4 -peer0.org1.example.com | [4db 12-05 07:30:42.81 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.4,txid=b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361,syscc=true,proposal=0xc424a7d5e0,canname=escc:1.0.4 -peer0.org1.example.com | [4dc 12-05 07:30:42.81 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.4 -peer0.org1.example.com | [4dd 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [4de 12-05 07:30:42.81 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.4 -peer0.org1.example.com | [4df 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b108583e]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [4e0 12-05 07:30:42.81 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 | [4e1 12-05 07:30:42.81 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 | [4e2 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b108583e]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [4e3 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b108583e]Move state message TRANSACTION -peer0.org1.example.com | [4e4 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b108583e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [4e5 12-05 07:30:42.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [4e6 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b108583e]sending state message TRANSACTION -peer0.org1.example.com | [4e7 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b108583e]Received message TRANSACTION from shim -peer0.org1.example.com | [4e8 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b108583e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [4e9 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b108583e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [4e1 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9dc09251]Received message RESPONSE from shim -peer1.org2.example.com | [4d9 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [4da 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a78b864]sending state message TRANSACTION -peer0.org2.example.com | [4cd 12-05 07:31:10.38 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 [9f0ea794-c7b1-4424-bd6d-619751ee732b] -peer0.org1.example.com | [4ea 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [4eb 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [4ec 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b108583e]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [4ed 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b108583e]Move state message COMPLETED -peer0.org1.example.com | [4ee 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b108583e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [4ef 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b108583e]send state message COMPLETED -peer0.org1.example.com | [4f0 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b108583e]Received message COMPLETED from shim -peer0.org1.example.com | [4f1 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b108583e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [4f2 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [4f3 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361 -peer0.org1.example.com | [4f4 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [4f5 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [4f6 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [4f7 12-05 07:30:42.82 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 [711daa80-1389-4030-8ece-df6ae5d1c629] -orderer.example.com | [2b1 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel -peer1.org1.example.com | [4e2 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9dc09251]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org1.example.com | [4e3 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [9dc09251]before send -peer1.org2.example.com | [4db 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a78b864]Received message TRANSACTION from shim -peer1.org2.example.com | [4dc 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0a78b864]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [4dd 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0a78b864]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [4de 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [0a78b864]Sending GET_STATE -peer1.org2.example.com | [4df 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a78b864]Received message GET_STATE from shim -peer1.org2.example.com | [4e0 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0a78b864]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [4e1 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [0a78b864]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [4e2 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [4e3 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0a78b864] getting state for chaincode lscc, key mycc, channel businesschannel -peer1.org2.example.com | [4e4 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [4f8 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org1.example.com | [4f9 12-05 07:30:44.85 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [1] -peer0.org1.example.com | [4fa 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [1] -peer0.org1.example.com | [4fb 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org1.example.com | [4fc 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org1.example.com | [4fd 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org1.example.com | [4fe 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc424d5ced0 -orderer.example.com | [2b2 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -peer0.org2.example.com | [4ce 12-05 07:31:10.38 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 | [4cf 12-05 07:31:10.38 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 [7b7827e9-55df-4826-bb2e-110dc8646be9] -peer0.org2.example.com | [4d0 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.4,txid=fc9e072a-d905-4173-afa8-b5b6960938c1,syscc=true,proposal=0x0,canname=vscc:1.0.4 -peer0.org2.example.com | [4d1 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302 chaindID businesschannel -peer0.org2.example.com | [4d2 12-05 07:31:10.38 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.4 -peer0.org2.example.com | [4d3 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [4d4 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.4 -peer1.org1.example.com | [4e4 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [9dc09251]after send -peer1.org1.example.com | [4e5 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [9dc09251]Received RESPONSE, communicated (state:ready) -peer1.org1.example.com | [4e6 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [9dc09251]GetState received payload RESPONSE -peer1.org1.example.com | [4e7 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9dc09251]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [4e8 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9dc09251]Move state message COMPLETED -peer1.org1.example.com | [4e9 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9dc09251]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [4ea 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9dc09251]send state message COMPLETED -peer1.org1.example.com | [4eb 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9dc09251]Received message COMPLETED from shim -peer1.org1.example.com | [4ec 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9dc09251]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [4e5 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0a78b864]Got state. Sending RESPONSE -peer1.org2.example.com | [4e6 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [0a78b864]handleGetState serial send RESPONSE -peer1.org2.example.com | [4e7 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a78b864]Received message RESPONSE from shim -peer1.org2.example.com | [4e8 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0a78b864]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [4e9 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [0a78b864]before send -peer1.org2.example.com | [4ea 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [0a78b864]after send -peer1.org2.example.com | [4eb 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [0a78b864]Received RESPONSE, communicated (state:ready) -peer1.org2.example.com | [4ec 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [0a78b864]GetState received payload RESPONSE -peer1.org2.example.com | [4ed 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a78b864]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [4ee 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a78b864]Move state message COMPLETED -peer1.org2.example.com | [4ef 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0a78b864]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [4f0 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a78b864]send state message COMPLETED -peer0.org1.example.com | [4ff 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\242\226\231\321\005\020\310\266\206\375\002\"\017businesschannel*@b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030C\177D:@\244\305z\336\2571%\320\223\3406H\2049\345\253\367\251\311" -peer0.org1.example.com | [500 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [501 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [502 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -peer0.org1.example.com | [503 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [504 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [2b3 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -peer0.org2.example.com | [4d5 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fc9e072a]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [4ed 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9dc092510e36fc5fa560344726ce7a54bf16d36b1f0c35713ffe5d0cbeeb06e4]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [4f1 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a78b864]Received message COMPLETED from shim -peer1.org2.example.com | [4f2 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0a78b864]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [4f3 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0a78b864945a0c7cc449f48e464241772451595d30248a37372a2e1f575a6721]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [4f4 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0a78b864945a0c7cc449f48e464241772451595d30248a37372a2e1f575a6721 -peer1.org2.example.com | [4f5 12-05 07:31:05.18 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 | [4f6 12-05 07:31:05.18 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 | [4f7 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 0a78b864945a0c7cc449f48e464241772451595d30248a37372a2e1f575a6721 channel id: businesschannel version: 1.0 -peer0.org1.example.com | [505 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc424b6d000, header channel_header:"\010\003\032\014\010\242\226\231\321\005\020\310\266\206\375\002\"\017businesschannel*@b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5\nTnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h\nd8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA\nfiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx\nzekLSULI9G2UUYA77A==\n-----END -----\n\022\030C\177D:@\244\305z\336\2571%\320\223\3406H\2049\345\253\367\251\311" -orderer.example.com | [2b4 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -peer0.org2.example.com | [4d6 12-05 07:31:10.38 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 | [4d7 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fc9e072a]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [4d8 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fc9e072a]Move state message TRANSACTION -peer0.org2.example.com | [4d9 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fc9e072a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [4da 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [4db 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fc9e072a]sending state message TRANSACTION -peer0.org2.example.com | [4dc 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc9e072a]Received message TRANSACTION from shim -peer0.org2.example.com | [4dd 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fc9e072a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [4ee 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9dc092510e36fc5fa560344726ce7a54bf16d36b1f0c35713ffe5d0cbeeb06e4 -peer1.org1.example.com | [4ef 12-05 07:31:02.04 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 | [4f0 12-05 07:31:02.04 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 | [4f1 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 9dc092510e36fc5fa560344726ce7a54bf16d36b1f0c35713ffe5d0cbeeb06e4 channel id: businesschannel version: 1.0 -peer1.org1.example.com | [4f2 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=9dc092510e36fc5fa560344726ce7a54bf16d36b1f0c35713ffe5d0cbeeb06e4,syscc=false,proposal=0xc421cf1950,canname=mycc:1.0 -peer1.org1.example.com | [4f3 12-05 07:31:02.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) : mycc:1.0 -peer1.org2.example.com | [4f8 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=0a78b864945a0c7cc449f48e464241772451595d30248a37372a2e1f575a6721,syscc=false,proposal=0xc42158d540,canname=mycc:1.0 -peer1.org2.example.com | [4f9 12-05 07:31:05.18 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) : mycc:1.0 -peer0.org1.example.com | [506 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [507 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [508 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [509 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [50a 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361] -peer0.org2.example.com | [4de 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [fc9e072a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [4f4 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [4f5 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer1.org1.example.com | [4f6 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9dc09251]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [4f7 12-05 07:31:02.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... -peer1.org1.example.com | [4f8 12-05 07:31:02.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... -peer1.org1.example.com | [4f9 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9dc09251]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [4fa 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9dc09251]Move state message TRANSACTION -peer1.org1.example.com | [4fb 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9dc09251]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [4fc 12-05 07:31:02.04 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 | [4fd 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9dc09251]sending state message TRANSACTION -orderer.example.com | [2b5 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | [2b6 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -peer1.org2.example.com | [4fa 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [4df 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org2.example.com | [4e0 12-05 07:31:10.38 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 | [4e1 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org2.example.com | [4e2 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc9e072a]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [4e3 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc9e072a]Move state message COMPLETED -peer0.org2.example.com | [4e4 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fc9e072a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [4e5 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc9e072a]send state message COMPLETED -peer0.org2.example.com | [4e6 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fc9e072a]Received message COMPLETED from shim -peer0.org2.example.com | [4e7 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fc9e072a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [4e8 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fc9e072a-d905-4173-afa8-b5b6960938c1]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [4e9 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:fc9e072a-d905-4173-afa8-b5b6960938c1 -peer1.org1.example.com | [4fe 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9dc09251]Received message GET_STATE from shim -peer1.org1.example.com | [4ff 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9dc09251]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [500 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [9dc09251]Received GET_STATE, invoking get state from ledger -peer1.org1.example.com | [501 12-05 07:31:02.04 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 | [502 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9dc09251] getting state for chaincode mycc, key a, channel businesschannel -peer1.org1.example.com | [503 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -peer1.org1.example.com | [504 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9dc09251]Got state. Sending RESPONSE -peer1.org1.example.com | [505 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [9dc09251]handleGetState serial send RESPONSE -peer1.org1.example.com | [506 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9dc09251]Received message COMPLETED from shim -peer1.org1.example.com | [507 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9dc09251]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [508 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9dc092510e36fc5fa560344726ce7a54bf16d36b1f0c35713ffe5d0cbeeb06e4]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [509 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9dc092510e36fc5fa560344726ce7a54bf16d36b1f0c35713ffe5d0cbeeb06e4 -peer1.org1.example.com | [50a 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [50b 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [50b 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [50c 12-05 07:30:44.86 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 [c9f2e5d0-6685-48d6-9f24-1026b15224bc] -peer0.org1.example.com | [50d 12-05 07:30:44.86 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=mycc -peer1.org2.example.com | [4fb 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer1.org1.example.com | [50c 12-05 07:31:02.04 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 | [50d 12-05 07:31:02.04 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 [f499a316-a97b-4c15-b9e6-cf347513cbdc] -peer1.org1.example.com | [50e 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org1.example.com | [50f 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 9dc092510e36fc5fa560344726ce7a54bf16d36b1f0c35713ffe5d0cbeeb06e4 channel id: businesschannel chaincode id: name:"mycc" -peer1.org1.example.com | [510 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -orderer.example.com | [2b7 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | [2b8 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -orderer.example.com | [2b9 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | [2ba 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -orderer.example.com | [2bb 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | [2bc 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [2bd 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Application/Writers -peer0.org2.example.com | [4ea 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [50e 12-05 07:30:44.86 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 [c9f2e5d0-6685-48d6-9f24-1026b15224bc] -peer1.org2.example.com | [4fc 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0a78b864]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [511 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 9dc092510e36fc5fa560344726ce7a54bf16d36b1f0c35713ffe5d0cbeeb06e4 channel id: businesschannel version: 1.0.4 -orderer.example.com | [2be 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org2.example.com | [4eb 12-05 07:31:10.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 [7b7827e9-55df-4826-bb2e-110dc8646be9] -peer0.org1.example.com | [50f 12-05 07:30:44.86 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 | [512 12-05 07:31:02.04 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.4,txid=9dc092510e36fc5fa560344726ce7a54bf16d36b1f0c35713ffe5d0cbeeb06e4,syscc=true,proposal=0xc421cf1950,canname=escc:1.0.4 -peer1.org2.example.com | [4fd 12-05 07:31:05.18 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 | [2bf 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in /Application/Admins -peer0.org2.example.com | [4ec 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org1.example.com | [510 12-05 07:30:44.86 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 [6eea44f0-ea6c-419b-952d-29a92c96e276] -peer1.org1.example.com | [513 12-05 07:31:02.04 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.4 -peer1.org2.example.com | [4fe 12-05 07:31:05.18 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 | [4ed 12-05 07:31:10.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 | [2c0 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer1.org1.example.com | [514 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [511 12-05 07:30:44.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.4,txid=bfb08cca-0245-4a76-ae44-c81abcb03f45,syscc=true,proposal=0x0,canname=vscc:1.0.4 -peer1.org2.example.com | [4ff 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0a78b864]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [4ee 12-05 07:31:10.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)(0xc421600780), Data:(*common.BlockData)(0xc42197b3a0), Metadata:(*common.BlockMetadata)(0xc42197b3e0)}, doMVCCValidation=true -peer0.org1.example.com | [512 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361 chaindID businesschannel -orderer.example.com | [2c1 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Application/Readers -peer0.org2.example.com | [4ef 12-05 07:31:10.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 -peer0.org1.example.com | [513 12-05 07:30:44.86 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.4 -peer1.org1.example.com | [515 12-05 07:31:02.04 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.4 -peer1.org2.example.com | [500 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a78b864]Move state message TRANSACTION -orderer.example.com | [2c2 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org2.example.com | [4f0 12-05 07:31:10.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=mycc -peer0.org1.example.com | [514 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [516 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9dc09251]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [4f1 12-05 07:31:10.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=mycc, key=a -orderer.example.com | [2c3 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [515 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.4 -peer1.org2.example.com | [501 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0a78b864]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [517 12-05 07:31:02.04 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 | [502 12-05 07:31:05.18 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 | [4f2 12-05 07:31:10.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=mycc, key=b -peer1.org2.example.com | [503 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a78b864]sending state message TRANSACTION -peer1.org1.example.com | [518 12-05 07:31:02.04 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 | [2c4 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org2.example.com | [4f3 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [4] Transaction index [0] TxId [4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302] marked as valid by state validator -peer1.org2.example.com | [504 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a78b864]Received message GET_STATE from shim -peer1.org1.example.com | [519 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9dc09251]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [2c5 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org2.example.com | [4f4 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x64, 0xa3, 0xcc, 0x55, 0x10, 0x3d, 0x9b, 0x60, 0x6f, 0x36, 0xb2, 0xd5, 0x1b, 0xdd, 0x2e, 0xff, 0x58, 0x0, 0xf2, 0x4, 0x7d, 0x6f, 0xe4, 0x7, 0x53, 0x24, 0x4f, 0x76, 0x2, 0xf1, 0x2b, 0x64} txOffsets= -peer0.org1.example.com | [516 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bfb08cca]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [51a 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9dc09251]Move state message TRANSACTION -orderer.example.com | [2c6 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer0.org2.example.com | txId=4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302 locPointer=offset=70, bytesLength=2849 -peer0.org1.example.com | [517 12-05 07:30:44.86 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 | [505 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0a78b864]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [51b 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9dc09251]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | ] -orderer.example.com | [2c7 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | [518 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bfb08cca]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [506 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [0a78b864]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [4f5 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=27121, bytesLength=2849] for tx ID: [4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302] to index -peer1.org1.example.com | [51c 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [2c8 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [519 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bfb08cca]Move state message TRANSACTION -peer0.org2.example.com | [4f6 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=27121, bytesLength=2849] for tx number:[0] ID: [4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302] to blockNumTranNum index -peer1.org2.example.com | [507 12-05 07:31:05.18 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 | [51d 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9dc09251]sending state message TRANSACTION -orderer.example.com | [2c9 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [51a 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bfb08cca]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [4f7 12-05 07:31:10.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=[31728], isChainEmpty=[false], lastBlockNumber=[4] -peer1.org1.example.com | [51e 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9dc09251]Received message TRANSACTION from shim -orderer.example.com | [2ca 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [508 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0a78b864] getting state for chaincode mycc, key a, channel businesschannel -peer0.org1.example.com | [51b 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [2cb 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [4f8 12-05 07:31:10.39 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 | [51c 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bfb08cca]sending state message TRANSACTION -peer1.org2.example.com | [509 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -peer1.org1.example.com | [51f 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9dc09251]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [4f9 12-05 07:31:10.39 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 | [2cc 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [50a 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0a78b864]Got state. Sending RESPONSE -peer0.org2.example.com | [4fa 12-05 07:31:10.39 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 | [520 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9dc09251]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [51d 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bfb08cca]Received message TRANSACTION from shim -peer1.org2.example.com | [50b 12-05 07:31:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [0a78b864]handleGetState serial send RESPONSE -orderer.example.com | [2cd 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [4fb 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer1.org1.example.com | [521 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [51e 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bfb08cca]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [4fc 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer1.org1.example.com | [522 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | [2ce 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org2.example.com | [50c 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a78b864]Received message COMPLETED from shim -peer0.org1.example.com | [51f 12-05 07:30:44.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [bfb08cca]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [523 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9dc09251]Transaction completed. Sending COMPLETED -orderer.example.com | [2cf 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -peer1.org2.example.com | [50d 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0a78b864]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [4fd 12-05 07:31:10.40 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 | [520 12-05 07:30:44.87 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org1.example.com | [524 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9dc09251]Move state message COMPLETED -peer1.org2.example.com | [50e 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0a78b864945a0c7cc449f48e464241772451595d30248a37372a2e1f575a6721]HandleMessage- COMPLETED. Notify -orderer.example.com | [2d0 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026730 gate 1512458982968918000 evaluation starts -peer0.org1.example.com | [521 12-05 07:30:44.87 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 | [4fe 12-05 07:31:10.40 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 | [525 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9dc09251]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [522 12-05 07:30:44.87 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer1.org2.example.com | [50f 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0a78b864945a0c7cc449f48e464241772451595d30248a37372a2e1f575a6721 -peer0.org2.example.com | [4ff 12-05 07:31:10.40 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 | [2d1 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026730 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | [526 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9dc09251]send state message COMPLETED -peer0.org1.example.com | [523 12-05 07:30:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bfb08cca]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [500 12-05 07:31:10.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org2.example.com | [510 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [524 12-05 07:30:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bfb08cca]Move state message COMPLETED -orderer.example.com | [2d2 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026730 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -peer1.org2.example.com | [511 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [501 12-05 07:31:10.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302 -peer1.org1.example.com | [527 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9dc09251]Received message COMPLETED from shim -orderer.example.com | [2d3 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [502 12-05 07:31:10.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] -peer1.org2.example.com | [512 12-05 07:31:05.19 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 | [528 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9dc09251]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [525 12-05 07:30:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bfb08cca]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [513 12-05 07:31:05.19 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 [fced0395-d911-4375-ac5d-710051d7b148] -peer0.org2.example.com | [503 12-05 07:31:10.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [529 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9dc092510e36fc5fa560344726ce7a54bf16d36b1f0c35713ffe5d0cbeeb06e4]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [526 12-05 07:30:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bfb08cca]send state message COMPLETED -peer1.org2.example.com | [514 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [504 12-05 07:31:10.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [52a 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9dc092510e36fc5fa560344726ce7a54bf16d36b1f0c35713ffe5d0cbeeb06e4 -peer0.org1.example.com | [527 12-05 07:30:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bfb08cca]Received message COMPLETED from shim -peer0.org2.example.com | [505 12-05 07:31:10.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [52b 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [515 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 0a78b864945a0c7cc449f48e464241772451595d30248a37372a2e1f575a6721 channel id: businesschannel chaincode id: name:"mycc" -peer0.org2.example.com | [506 12-05 07:31:10.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org1.example.com | [528 12-05 07:30:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bfb08cca]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -peer1.org2.example.com | [516 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -peer1.org1.example.com | [52c 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [529 12-05 07:30:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bfb08cca-0245-4a76-ae44-c81abcb03f45]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [52d 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer1.org2.example.com | [517 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 0a78b864945a0c7cc449f48e464241772451595d30248a37372a2e1f575a6721 channel id: businesschannel version: 1.0.4 -peer0.org2.example.com | [507 12-05 07:31:10.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org1.example.com | [52a 12-05 07:30:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:bfb08cca-0245-4a76-ae44-c81abcb03f45 -peer1.org2.example.com | [518 12-05 07:31:05.19 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.4,txid=0a78b864945a0c7cc449f48e464241772451595d30248a37372a2e1f575a6721,syscc=true,proposal=0xc42158d540,canname=escc:1.0.4 -peer1.org1.example.com | [52e 12-05 07:31:02.04 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 [f499a316-a97b-4c15-b9e6-cf347513cbdc] -peer0.org1.example.com | [52b 12-05 07:30:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [508 12-05 07:31:14.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org1.example.com | [52c 12-05 07:30:44.87 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 [6eea44f0-ea6c-419b-952d-29a92c96e276] -peer1.org1.example.com | [52f 12-05 07:31:02.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer1.org2.example.com | [519 12-05 07:31:05.19 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.4 -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 -peer0.org1.example.com | [52d 12-05 07:30:44.87 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org2.example.com | [509 12-05 07:31:14.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421b4a5d0 -peer1.org2.example.com | [51a 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G -peer1.org1.example.com | [530 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org1.example.com | [52e 12-05 07:30:44.87 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 | [50a 12-05 07:31:14.74 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 | [50b 12-05 07:31:14.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [51b 12-05 07:31:05.19 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.4 -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h -orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA -orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx -orderer.example.com | zekLSULI9G2UUYA77A== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [2d4 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -peer0.org1.example.com | [52f 12-05 07:30:44.87 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)(0xc424d62280), Data:(*common.BlockData)(0xc424d82020), Metadata:(*common.BlockMetadata)(0xc424d82060)}, doMVCCValidation=true -peer0.org2.example.com | [50c 12-05 07:31:14.75 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} -peer1.org2.example.com | [51c 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0a78b864]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [531 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -orderer.example.com | [2d5 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026730 principal matched by identity 0 -peer0.org1.example.com | [530 12-05 07:30:44.87 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 | [50d 12-05 07:31:14.75 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 | [51d 12-05 07:31:05.19 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 | [2d6 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ae 28 16 e2 b4 c0 28 fc ec b8 21 99 cc 79 d5 ca |.(....(...!..y..| -peer1.org1.example.com | [532 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org2.example.com | [50e 12-05 07:31:14.75 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [50f 12-05 07:31:14.75 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421867e00, header 0xc421b4a600 -peer0.org1.example.com | [531 12-05 07:30:44.87 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=mycc -peer1.org1.example.com | [533 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421ca6d20 -peer1.org2.example.com | [51e 12-05 07:31:05.19 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 | 00000010 0c c3 c5 7d 6c 4c a4 5e 5b f0 d9 e1 fc 81 42 d3 |...}lL.^[.....B.| -orderer.example.com | [2d7 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c6 67 e4 46 8f 27 7d 42 29 de cc |0E.!..g.F.'}B)..| -orderer.example.com | 00000010 9c a3 e4 5f 14 cf b8 f7 91 1a 74 6d 1d 16 70 7e |..._......tm..p~| -orderer.example.com | 00000020 a8 2b 59 3a cd 02 20 32 eb 46 8a 5f b4 2a 47 89 |.+Y:.. 2.F._.*G.| -orderer.example.com | 00000030 ba 35 49 5c 46 f0 9d 2c 46 88 c2 00 b1 2c a2 cb |.5I\F..,F....,..| -orderer.example.com | 00000040 6f 17 55 34 96 5e b9 |o.U4.^.| -orderer.example.com | [2d8 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026730 principal evaluation succeeds for identity 0 -orderer.example.com | [2d9 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026730 gate 1512458982968918000 evaluation succeeds -peer0.org2.example.com | [510 12-05 07:31:14.75 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -peer0.org2.example.com | [511 12-05 07:31:14.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 8efb8928ec53a6cd988c9ce76f9319a59090f30aceb6293237508aeb92d9886f -peer0.org1.example.com | [532 12-05 07:30:44.87 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=mycc, key=a -orderer.example.com | [2da 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [51f 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0a78b864]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [534 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\274\226\231\321\005\020\324\327\221\227\001\"\017businesschannel*@4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030\tP\036\260gY7\367\205\207P\360\016\324u\222\213\372]\036\035\005\261\313" -peer1.org1.example.com | [535 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [536 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [537 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} -peer1.org1.example.com | [538 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [539 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [512 12-05 07:31:14.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [8efb8928ec53a6cd988c9ce76f9319a59090f30aceb6293237508aeb92d9886f] -peer0.org2.example.com | [513 12-05 07:31:14.75 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 | [514 12-05 07:31:14.75 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 [f9552e87-114e-4295-abce-b04457ce0384] -peer0.org2.example.com | [515 12-05 07:31:14.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 8efb8928ec53a6cd988c9ce76f9319a59090f30aceb6293237508aeb92d9886f channel id: businesschannel -peer0.org2.example.com | [516 12-05 07:31:14.75 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.4,txid=8efb8928ec53a6cd988c9ce76f9319a59090f30aceb6293237508aeb92d9886f,syscc=true,proposal=0xc421867e00,canname=lscc:1.0.4 -peer0.org1.example.com | [533 12-05 07:30:44.87 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=mycc, key=b -orderer.example.com | [2db 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [520 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a78b864]Move state message TRANSACTION -peer1.org1.example.com | [53a 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421e24000, header channel_header:"\010\003\032\014\010\274\226\231\321\005\020\324\327\221\227\001\"\017businesschannel*@4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030\tP\036\260gY7\367\205\207P\360\016\324u\222\213\372]\036\035\005\261\313" -peer0.org2.example.com | [517 12-05 07:31:14.75 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.4 -peer0.org1.example.com | [534 12-05 07:30:44.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361] marked as valid by state validator -orderer.example.com | [2dc 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [2dd 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [2de 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org2.example.com | [521 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0a78b864]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [522 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [523 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a78b864]sending state message TRANSACTION -peer1.org2.example.com | [524 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a78b864]Received message TRANSACTION from shim -peer1.org2.example.com | [525 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0a78b864]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [518 12-05 07:31:14.75 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 | [535 12-05 07:30:44.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xae, 0xfc, 0x62, 0xed, 0x8f, 0x6e, 0x9d, 0x4c, 0x39, 0xc9, 0x3b, 0xa2, 0x34, 0x61, 0x77, 0x99, 0x41, 0x4e, 0x6c, 0xcc, 0xa1, 0xe5, 0xff, 0x96, 0x8a, 0x7c, 0x97, 0xdf, 0x86, 0x47, 0x62, 0x27} txOffsets= -peer0.org1.example.com | txId=b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361 locPointer=offset=70, bytesLength=2849 -peer1.org1.example.com | [53b 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org1.example.com | [53c 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org1.example.com | [53d 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org1.example.com | [53e 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [53f 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302] -peer1.org1.example.com | [540 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | [541 12-05 07:31:10.39 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 [d74f618a-3cd7-4b36-b2bd-00b3a2fabaf8] -peer1.org1.example.com | [542 12-05 07:31:10.39 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=mycc -orderer.example.com | [2df 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [2e0 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [2e1 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [2e2 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [2e3 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [526 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0a78b864]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [519 12-05 07:31:14.75 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.4 -peer0.org2.example.com | [51a 12-05 07:31:14.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8efb8928]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [51b 12-05 07:31:14.75 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.org2.example.com | [51c 12-05 07:31:14.75 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 | [51d 12-05 07:31:14.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8efb8928]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [51e 12-05 07:31:14.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8efb8928]Move state message TRANSACTION -peer0.org2.example.com | [51f 12-05 07:31:14.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8efb8928]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [520 12-05 07:31:14.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [521 12-05 07:31:14.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8efb8928]sending state message TRANSACTION -peer0.org2.example.com | [522 12-05 07:31:14.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8efb8928]Received message TRANSACTION from shim -peer0.org2.example.com | [523 12-05 07:31:14.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8efb8928]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [524 12-05 07:31:14.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8efb8928]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | ] -peer1.org1.example.com | [543 12-05 07:31:10.39 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 [d74f618a-3cd7-4b36-b2bd-00b3a2fabaf8] -orderer.example.com | [2e4 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [2e5 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [2e6 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [2e7 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [2e8 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [527 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org2.example.com | [528 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer1.org2.example.com | [529 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a78b864]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [52a 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a78b864]Move state message COMPLETED -peer1.org2.example.com | [52b 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0a78b864]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [52c 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a78b864]send state message COMPLETED -peer1.org2.example.com | [52d 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a78b864]Received message COMPLETED from shim -peer1.org2.example.com | [52e 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0a78b864]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [52f 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0a78b864945a0c7cc449f48e464241772451595d30248a37372a2e1f575a6721]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [530 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0a78b864945a0c7cc449f48e464241772451595d30248a37372a2e1f575a6721 -peer1.org2.example.com | [531 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [532 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [533 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer1.org2.example.com | [534 12-05 07:31:05.19 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 [fced0395-d911-4375-ac5d-710051d7b148] -peer1.org2.example.com | [535 12-05 07:31:05.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer1.org2.example.com | [536 12-05 07:31:08.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org2.example.com | [537 12-05 07:31:08.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4218b9140 -peer1.org2.example.com | [538 12-05 07:31:08.31 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 | [539 12-05 07:31:08.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [53a 12-05 07:31:08.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} -peer1.org2.example.com | [53b 12-05 07:31:08.31 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 | [53c 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [53d 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42180bb80, header 0xc4218b9170 -peer1.org2.example.com | [53e 12-05 07:31:08.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:"mycc" -peer1.org2.example.com | [53f 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302 -peer1.org2.example.com | [540 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302] -peer1.org2.example.com | [541 12-05 07:31:08.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 -peer0.org2.example.com | [525 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [8efb8928]Sending GET_STATE -peer0.org2.example.com | [526 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8efb8928]Received message GET_STATE from shim -peer0.org2.example.com | [527 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8efb8928]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [528 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [8efb8928]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [52a 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8efb8928] getting state for chaincode lscc, key mycc, channel businesschannel -peer0.org2.example.com | [52b 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | [52c 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8efb8928]Got state. Sending RESPONSE -peer0.org2.example.com | [52d 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [8efb8928]handleGetState serial send RESPONSE -peer0.org2.example.com | [52e 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8efb8928]Received message RESPONSE from shim -peer0.org2.example.com | [52f 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8efb8928]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org2.example.com | [530 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [8efb8928]before send -peer0.org2.example.com | [531 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [8efb8928]after send -peer1.org1.example.com | [544 12-05 07:31:10.39 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 | [545 12-05 07:31:10.39 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 [2e3e0687-87ee-4dd4-9e7e-6a33cbfe5e13] -peer1.org1.example.com | [546 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.4,txid=9353cb23-96f7-4b35-9022-ab8442f59a15,syscc=true,proposal=0x0,canname=vscc:1.0.4 -peer1.org1.example.com | [547 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302 chaindID businesschannel -peer1.org1.example.com | [548 12-05 07:31:10.39 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.4 -peer1.org1.example.com | [549 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [54a 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.4 -orderer.example.com | [2e9 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [536 12-05 07:30:44.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=22445, bytesLength=2849] for tx ID: [b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361] to index -peer1.org2.example.com | [542 12-05 07:31:08.32 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 [01d60115-7e93-4716-a510-1cb2b7b4578e] -peer0.org2.example.com | [532 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [8efb8928]Received RESPONSE, communicated (state:ready) -peer1.org1.example.com | [54b 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9353cb23]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [54c 12-05 07:31:10.39 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 | [54d 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9353cb23]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [54e 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9353cb23]Move state message TRANSACTION -peer1.org1.example.com | [54f 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9353cb23]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [550 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [551 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9353cb23]sending state message TRANSACTION -peer1.org1.example.com | [552 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9353cb23]Received message TRANSACTION from shim -peer1.org1.example.com | [553 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9353cb23]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [537 12-05 07:30:44.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=22445, bytesLength=2849] for tx number:[0] ID: [b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361] to blockNumTranNum index -orderer.example.com | [2ea 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [2eb 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [2ec 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [2ed 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | [2ee 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org2.example.com | [533 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [8efb8928]GetState received payload RESPONSE -peer1.org2.example.com | [543 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302 channel id: businesschannel -peer1.org2.example.com | [544 12-05 07:31:08.32 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.4,txid=4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302,syscc=true,proposal=0xc42180bb80,canname=lscc:1.0.4 -peer1.org2.example.com | [545 12-05 07:31:08.32 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.4 -peer1.org2.example.com | [546 12-05 07:31:08.32 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 | [547 12-05 07:31:08.32 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.4 -peer1.org2.example.com | [548 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4fcd21b4]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [554 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9353cb23]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [538 12-05 07:30:44.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[27051], isChainEmpty=[false], lastBlockNumber=[3] -orderer.example.com | [2ef 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [539 12-05 07:30:44.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) -peer1.org2.example.com | [549 12-05 07:31:08.32 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 | [54a 12-05 07:31:08.32 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 | [54b 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4fcd21b4]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [54c 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4fcd21b4]Move state message TRANSACTION -peer1.org2.example.com | [54d 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4fcd21b4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [54e 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [54f 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4fcd21b4]sending state message TRANSACTION -peer1.org2.example.com | [550 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4fcd21b4]Received message TRANSACTION from shim -peer1.org2.example.com | [551 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4fcd21b4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [555 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org1.example.com | [556 12-05 07:31:10.39 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 | [557 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer1.org1.example.com | [558 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9353cb23]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [559 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9353cb23]Move state message COMPLETED -peer1.org1.example.com | [55a 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9353cb23]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [55b 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9353cb23]send state message COMPLETED -peer1.org1.example.com | [55c 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9353cb23]Received message COMPLETED from shim -peer1.org1.example.com | [55d 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9353cb23]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [55e 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9353cb23-96f7-4b35-9022-ab8442f59a15]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [55f 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9353cb23-96f7-4b35-9022-ab8442f59a15 -peer0.org2.example.com | [534 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8efb8928]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [53a 12-05 07:30:44.88 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 | [560 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [561 12-05 07:31:10.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 [2e3e0687-87ee-4dd4-9e7e-6a33cbfe5e13] -peer1.org1.example.com | [562 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org1.example.com | [563 12-05 07:31:10.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] -peer1.org1.example.com | [564 12-05 07:31:10.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)(0xc421f0a240), Data:(*common.BlockData)(0xc421e17b00), Metadata:(*common.BlockMetadata)(0xc421e17b40)}, doMVCCValidation=true -peer1.org1.example.com | [565 12-05 07:31:10.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 -orderer.example.com | [2f0 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [2f1 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [2f2 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [535 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8efb8928]Move state message COMPLETED -peer1.org1.example.com | [566 12-05 07:31:10.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=mycc -peer0.org1.example.com | [53b 12-05 07:30:44.88 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 | [552 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4fcd21b4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [2f3 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -peer1.org1.example.com | [567 12-05 07:31:10.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=mycc, key=a -peer0.org2.example.com | [536 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8efb8928]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [53c 12-05 07:30:44.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -orderer.example.com | [2f4 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [2f5 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [2f6 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | [2f7 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [553 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [4fcd21b4]Sending GET_STATE -peer0.org1.example.com | [53d 12-05 07:30:44.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer1.org1.example.com | [568 12-05 07:31:10.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=mycc, key=b -peer0.org2.example.com | [537 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8efb8928]send state message COMPLETED -orderer.example.com | [2f8 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [2f9 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [53e 12-05 07:30:44.88 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 | [53f 12-05 07:30:44.89 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 | [529 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [554 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4fcd21b4]Received message GET_STATE from shim -peer1.org1.example.com | [569 12-05 07:31:10.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [4] Transaction index [0] TxId [4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302] marked as valid by state validator -peer0.org1.example.com | [540 12-05 07:30:44.89 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 | [2fa 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [538 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8efb8928]Received message COMPLETED from shim -peer1.org2.example.com | [555 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4fcd21b4]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [541 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org2.example.com | [539 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8efb8928]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [2fb 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [56a 12-05 07:31:10.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x64, 0xa3, 0xcc, 0x55, 0x10, 0x3d, 0x9b, 0x60, 0x6f, 0x36, 0xb2, 0xd5, 0x1b, 0xdd, 0x2e, 0xff, 0x58, 0x0, 0xf2, 0x4, 0x7d, 0x6f, 0xe4, 0x7, 0x53, 0x24, 0x4f, 0x76, 0x2, 0xf1, 0x2b, 0x64} txOffsets= -peer0.org1.example.com | [542 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: b108583edba27f1ac8b4b5f8b2619e62852ef417395ec852d54ed2fded49a361 -peer1.org2.example.com | [556 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [4fcd21b4]Received GET_STATE, invoking get state from ledger -orderer.example.com | [2fc 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -peer0.org2.example.com | [53a 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8efb8928ec53a6cd988c9ce76f9319a59090f30aceb6293237508aeb92d9886f]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [543 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] -peer1.org1.example.com | txId=4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302 locPointer=offset=70, bytesLength=2849 -orderer.example.com | [2fd 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -peer0.org2.example.com | [53b 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8efb8928ec53a6cd988c9ce76f9319a59090f30aceb6293237508aeb92d9886f -peer0.org1.example.com | [544 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org2.example.com | [557 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [2fe 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -peer1.org1.example.com | ] -peer0.org2.example.com | [53c 12-05 07:31:14.76 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 | [545 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [2ff 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -peer1.org2.example.com | [558 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4fcd21b4] getting state for chaincode lscc, key mycc, channel businesschannel -peer0.org1.example.com | [546 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -orderer.example.com | [300 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [53d 12-05 07:31:14.76 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 | [559 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org1.example.com | [56b 12-05 07:31:10.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=27121, bytesLength=2849] for tx ID: [4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302] to index -peer0.org1.example.com | [547 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -orderer.example.com | [301 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [53e 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 8efb8928ec53a6cd988c9ce76f9319a59090f30aceb6293237508aeb92d9886f channel id: businesschannel version: 1.0 -peer0.org1.example.com | [548 12-05 07:30:44.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -orderer.example.com | [302 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -peer1.org2.example.com | [55a 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4fcd21b4]Got state. Sending RESPONSE -peer1.org1.example.com | [56c 12-05 07:31:10.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=27121, bytesLength=2849] for tx number:[0] ID: [4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302] to blockNumTranNum index -peer0.org2.example.com | [53f 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=8efb8928ec53a6cd988c9ce76f9319a59090f30aceb6293237508aeb92d9886f,syscc=false,proposal=0xc421867e00,canname=mycc:1.0 -peer0.org1.example.com | [549 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | [303 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -peer1.org2.example.com | [55b 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [4fcd21b4]handleGetState serial send RESPONSE -peer0.org1.example.com | [54a 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421b83800 -orderer.example.com | [304 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -peer1.org2.example.com | [55c 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4fcd21b4]Received message RESPONSE from shim -peer0.org1.example.com | [54b 12-05 07:31:08.46 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 | [305 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer0.org2.example.com | [540 12-05 07:31:14.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) : mycc:1.0 -peer1.org1.example.com | [56d 12-05 07:31:10.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[31728], isChainEmpty=[false], lastBlockNumber=[4] -peer0.org1.example.com | [54c 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [306 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -peer1.org1.example.com | [56e 12-05 07:31:10.40 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 | [54d 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -peer1.org2.example.com | [55d 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4fcd21b4]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org2.example.com | [541 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [307 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -peer1.org1.example.com | [56f 12-05 07:31:10.40 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 | [54e 12-05 07:31:08.46 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 | [308 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -peer1.org1.example.com | [570 12-05 07:31:10.40 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 | [54f 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [542 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer1.org2.example.com | [55e 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [4fcd21b4]before send -peer1.org1.example.com | [571 12-05 07:31:10.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer1.org1.example.com | [572 12-05 07:31:10.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer0.org1.example.com | [550 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421b796d0, header 0xc421b83830 -orderer.example.com | [309 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [543 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8efb8928]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [55f 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [4fcd21b4]after send -peer1.org1.example.com | [573 12-05 07:31:10.40 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 | [551 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -peer0.org2.example.com | [544 12-05 07:31:14.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... -peer1.org1.example.com | [574 12-05 07:31:10.40 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 | [552 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: c8cc8373fcce30d68c434ea84541b8bd52e467ceea79188239bed5cb86843fbd -peer1.org2.example.com | [561 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [4fcd21b4]GetState received payload RESPONSE -peer0.org2.example.com | [545 12-05 07:31:14.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... -orderer.example.com | [30a 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [575 12-05 07:31:10.40 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 | [553 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c8cc8373fcce30d68c434ea84541b8bd52e467ceea79188239bed5cb86843fbd] -peer1.org2.example.com | [562 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4fcd21b4]Transaction completed. Sending COMPLETED -orderer.example.com | [30b 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org2.example.com | [546 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8efb8928]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [576 12-05 07:31:10.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org1.example.com | [554 12-05 07:31:08.46 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 | [30c 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [560 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [4fcd21b4]Received RESPONSE, communicated (state:ready) -peer1.org1.example.com | [577 12-05 07:31:10.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302 -peer0.org2.example.com | [547 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8efb8928]Move state message TRANSACTION -peer0.org1.example.com | [555 12-05 07:31:08.46 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 [fa67ca22-37f4-4d44-b15e-83723c98808d] -orderer.example.com | [30d 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [578 12-05 07:31:10.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] -peer0.org2.example.com | [548 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8efb8928]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [563 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4fcd21b4]Move state message COMPLETED -peer0.org1.example.com | [556 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: c8cc8373fcce30d68c434ea84541b8bd52e467ceea79188239bed5cb86843fbd channel id: businesschannel -orderer.example.com | [30e 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [579 12-05 07:31:10.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org2.example.com | [549 12-05 07:31:14.76 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 | [564 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4fcd21b4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [557 12-05 07:31:08.46 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.4,txid=c8cc8373fcce30d68c434ea84541b8bd52e467ceea79188239bed5cb86843fbd,syscc=true,proposal=0xc421b796d0,canname=lscc:1.0.4 -peer1.org1.example.com | [57a 12-05 07:31:10.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [54a 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8efb8928]sending state message TRANSACTION -orderer.example.com | [30f 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -peer0.org1.example.com | [558 12-05 07:31:08.46 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.4 -peer1.org1.example.com | [57b 12-05 07:31:10.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org2.example.com | [54b 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8efb8928]Received message GET_STATE from shim -orderer.example.com | [310 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -peer1.org2.example.com | [565 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4fcd21b4]send state message COMPLETED -peer1.org1.example.com | [57c 12-05 07:31:10.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org2.example.com | [54c 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8efb8928]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [311 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -peer1.org1.example.com | [57d 12-05 07:31:10.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [566 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4fcd21b4]Received message COMPLETED from shim -peer0.org2.example.com | [54d 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [8efb8928]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [559 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [312 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [54e 12-05 07:31:14.76 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 | [55a 12-05 07:31:08.46 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.4 -peer1.org2.example.com | [567 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4fcd21b4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [313 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [55b 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c8cc8373]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [54f 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8efb8928] getting state for chaincode mycc, key a, channel businesschannel -peer1.org2.example.com | [568 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302]HandleMessage- COMPLETED. Notify -orderer.example.com | [314 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [55c 12-05 07:31:08.46 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 | [569 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302 -orderer.example.com | [315 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [550 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -peer0.org1.example.com | [55d 12-05 07:31:08.46 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 | [316 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [55e 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c8cc8373]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [551 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8efb8928]Got state. Sending RESPONSE -peer1.org2.example.com | [56a 12-05 07:31:08.32 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 | [55f 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8cc8373]Move state message TRANSACTION -orderer.example.com | [317 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [552 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [8efb8928]handleGetState serial send RESPONSE -peer1.org2.example.com | [56b 12-05 07:31:08.32 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 | [560 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c8cc8373]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [561 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [562 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8cc8373]sending state message TRANSACTION -peer0.org1.example.com | [563 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8cc8373]Received message TRANSACTION from shim -peer1.org2.example.com | [56c 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302 channel id: businesschannel version: 1.0 -peer0.org2.example.com | [553 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8efb8928]Received message COMPLETED from shim -orderer.example.com | [318 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -peer0.org1.example.com | [564 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c8cc8373]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [56d 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302,syscc=false,proposal=0xc42180bb80,canname=mycc:1.0 -peer0.org1.example.com | [565 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c8cc8373]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [319 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -peer0.org2.example.com | [554 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8efb8928]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [566 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c8cc8373]Sending GET_STATE -peer0.org2.example.com | [555 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8efb8928ec53a6cd988c9ce76f9319a59090f30aceb6293237508aeb92d9886f]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [567 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8cc8373]Received message GET_STATE from shim -peer1.org2.example.com | [56e 12-05 07:31:08.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) : mycc:1.0 -peer0.org1.example.com | [568 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c8cc8373]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [556 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8efb8928ec53a6cd988c9ce76f9319a59090f30aceb6293237508aeb92d9886f -orderer.example.com | [31a 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -peer0.org1.example.com | [569 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c8cc8373]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [56f 12-05 07:31:08.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 | [557 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [56a 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [31b 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org2.example.com | [558 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [56b 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c8cc8373] getting state for chaincode lscc, key mycc, channel businesschannel -peer1.org2.example.com | [570 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer0.org1.example.com | [56c 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | [31c 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [56d 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c8cc8373]Got state. Sending RESPONSE -peer0.org2.example.com | [559 12-05 07:31:14.76 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 | [571 12-05 07:31:08.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4fcd21b4]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [56e 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c8cc8373]handleGetState serial send RESPONSE -orderer.example.com | [31d 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -peer0.org1.example.com | [56f 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8cc8373]Received message RESPONSE from shim -peer0.org1.example.com | [570 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c8cc8373]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [571 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c8cc8373]before send -peer0.org1.example.com | [572 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c8cc8373]after send -peer0.org1.example.com | [573 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [c8cc8373]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [574 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c8cc8373]GetState received payload RESPONSE -peer0.org1.example.com | [575 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8cc8373]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [576 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8cc8373]Move state message COMPLETED -peer0.org1.example.com | [577 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c8cc8373]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [578 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8cc8373]send state message COMPLETED -peer0.org1.example.com | [579 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8cc8373]Received message COMPLETED from shim -peer0.org1.example.com | [57a 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c8cc8373]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [57b 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c8cc8373fcce30d68c434ea84541b8bd52e467ceea79188239bed5cb86843fbd]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [57c 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c8cc8373fcce30d68c434ea84541b8bd52e467ceea79188239bed5cb86843fbd -peer0.org1.example.com | [57d 12-05 07:31:08.46 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 | [57e 12-05 07:31:08.46 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 | [572 12-05 07:31:08.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... -peer0.org1.example.com | [57f 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c8cc8373fcce30d68c434ea84541b8bd52e467ceea79188239bed5cb86843fbd channel id: businesschannel version: 1.0 -peer0.org1.example.com | [580 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=c8cc8373fcce30d68c434ea84541b8bd52e467ceea79188239bed5cb86843fbd,syscc=false,proposal=0xc421b796d0,canname=mycc:1.0 -peer0.org1.example.com | [581 12-05 07:31:08.46 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) : mycc:1.0 -peer0.org1.example.com | [582 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [583 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer0.org1.example.com | [584 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c8cc8373]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [585 12-05 07:31:08.46 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 | [31e 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR -orderer.example.com | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf -peer0.org1.example.com | [586 12-05 07:31:08.46 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 | [573 12-05 07:31:08.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... -peer0.org2.example.com | [55a 12-05 07:31:14.76 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 [f9552e87-114e-4295-abce-b04457ce0384] -peer0.org2.example.com | [55b 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [587 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c8cc8373]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [574 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4fcd21b4]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [55c 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 8efb8928ec53a6cd988c9ce76f9319a59090f30aceb6293237508aeb92d9886f channel id: businesschannel chaincode id: name:"mycc" -peer0.org1.example.com | [588 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8cc8373]Move state message TRANSACTION -peer0.org1.example.com | [589 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c8cc8373]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [58a 12-05 07:31:08.46 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 | [58b 12-05 07:31:08.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8cc8373]sending state message TRANSACTION -peer0.org1.example.com | [58c 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8cc8373]Received message GET_STATE from shim -peer0.org2.example.com | [55d 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -orderer.example.com | [31f 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org2.example.com | [575 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4fcd21b4]Move state message TRANSACTION -peer0.org1.example.com | [58d 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c8cc8373]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [55e 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 8efb8928ec53a6cd988c9ce76f9319a59090f30aceb6293237508aeb92d9886f channel id: businesschannel version: 1.0.4 -peer0.org2.example.com | [55f 12-05 07:31:14.76 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.4,txid=8efb8928ec53a6cd988c9ce76f9319a59090f30aceb6293237508aeb92d9886f,syscc=true,proposal=0xc421867e00,canname=escc:1.0.4 -peer0.org2.example.com | [560 12-05 07:31:14.76 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.4 -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -peer0.org1.example.com | [58e 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c8cc8373]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [58f 12-05 07:31:08.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 | [590 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c8cc8373] getting state for chaincode mycc, key a, channel businesschannel -peer0.org1.example.com | [591 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -peer0.org1.example.com | [592 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c8cc8373]Got state. Sending RESPONSE -peer0.org1.example.com | [593 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c8cc8373]handleGetState serial send RESPONSE -peer0.org1.example.com | [594 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8cc8373]Received message COMPLETED from shim -peer0.org1.example.com | [595 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c8cc8373]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [576 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4fcd21b4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [561 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [320 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [321 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [322 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -peer1.org2.example.com | [577 12-05 07:31:08.33 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 | [578 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4fcd21b4]sending state message TRANSACTION -peer1.org2.example.com | [579 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4fcd21b4]Received message GET_STATE from shim -peer1.org2.example.com | [57a 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4fcd21b4]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [57b 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [4fcd21b4]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [57c 12-05 07:31:08.33 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 | [57d 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4fcd21b4] getting state for chaincode mycc, key a, channel businesschannel -peer0.org1.example.com | [596 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c8cc8373fcce30d68c434ea84541b8bd52e467ceea79188239bed5cb86843fbd]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [562 12-05 07:31:14.76 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.4 -orderer.example.com | [323 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | [57e 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -peer1.org2.example.com | [57f 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4fcd21b4]Got state. Sending RESPONSE -peer1.org2.example.com | [580 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [4fcd21b4]handleGetState serial send RESPONSE -peer1.org2.example.com | [581 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4fcd21b4]Received message GET_STATE from shim -peer1.org2.example.com | [582 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4fcd21b4]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [583 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [4fcd21b4]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [584 12-05 07:31:08.33 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 | [585 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4fcd21b4] getting state for chaincode mycc, key b, channel businesschannel -peer1.org2.example.com | [586 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=b -peer0.org1.example.com | [597 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c8cc8373fcce30d68c434ea84541b8bd52e467ceea79188239bed5cb86843fbd -peer0.org2.example.com | [563 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8efb8928]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [324 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [325 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [326 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | [598 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [587 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4fcd21b4]Got state. Sending RESPONSE -peer0.org2.example.com | [564 12-05 07:31:14.76 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 -orderer.example.com | BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 -orderer.example.com | +/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN -orderer.example.com | wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 -orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL -orderer.example.com | liPpNxLSsBU= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [327 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 -orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h -orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA -orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx -orderer.example.com | zekLSULI9G2UUYA77A== -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [588 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [4fcd21b4]handleGetState serial send RESPONSE -peer0.org1.example.com | [599 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [59a 12-05 07:31:08.47 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 | [59b 12-05 07:31:08.47 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 [fa67ca22-37f4-4d44-b15e-83723c98808d] -peer0.org1.example.com | [59c 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [59d 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: c8cc8373fcce30d68c434ea84541b8bd52e467ceea79188239bed5cb86843fbd channel id: businesschannel chaincode id: name:"mycc" -peer0.org2.example.com | [565 12-05 07:31:14.76 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 | [328 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 -orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h -orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA -orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx -orderer.example.com | zekLSULI9G2UUYA77A== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [329 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [32a 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [32b 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [589 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4fcd21b4]Received message PUT_STATE from shim -peer1.org2.example.com | [58a 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4fcd21b4]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org1.example.com | [59e 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -peer0.org1.example.com | [59f 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: c8cc8373fcce30d68c434ea84541b8bd52e467ceea79188239bed5cb86843fbd channel id: businesschannel version: 1.0.4 -peer0.org1.example.com | [5a0 12-05 07:31:08.47 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.4,txid=c8cc8373fcce30d68c434ea84541b8bd52e467ceea79188239bed5cb86843fbd,syscc=true,proposal=0xc421b796d0,canname=escc:1.0.4 -peer0.org1.example.com | [5a1 12-05 07:31:08.47 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.4 -peer0.org1.example.com | [5a2 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [5a3 12-05 07:31:08.47 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.4 -peer0.org1.example.com | [5a4 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c8cc8373]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [32c 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org2.example.com | [58b 12-05 07:31:08.33 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 | [58c 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4fcd21b4]state is ready -peer1.org2.example.com | [58d 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4fcd21b4]Completed PUT_STATE. Sending RESPONSE -peer1.org2.example.com | [58e 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [4fcd21b4]enterBusyState trigger event RESPONSE -peer1.org2.example.com | [58f 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4fcd21b4]Move state message RESPONSE -peer1.org2.example.com | [590 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4fcd21b4]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org2.example.com | [591 12-05 07:31:08.33 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 | [592 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4fcd21b4]sending state message RESPONSE -peer1.org2.example.com | [593 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4fcd21b4]Received message PUT_STATE from shim -peer0.org2.example.com | [566 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8efb8928]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [5a5 12-05 07:31:08.47 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 | [5a6 12-05 07:31:08.47 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 | [5a7 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c8cc8373]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [5a8 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8cc8373]Move state message TRANSACTION -peer0.org1.example.com | [5a9 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c8cc8373]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [5aa 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [5ab 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8cc8373]sending state message TRANSACTION -peer0.org1.example.com | [5ac 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8cc8373]Received message TRANSACTION from shim -peer0.org1.example.com | [5ad 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c8cc8373]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [567 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8efb8928]Move state message TRANSACTION -peer1.org2.example.com | [594 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4fcd21b4]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org1.example.com | [5ae 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c8cc8373]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [5af 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [5b0 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [5b1 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8cc8373]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [5b2 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8cc8373]Move state message COMPLETED -peer0.org1.example.com | [5b3 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c8cc8373]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [5b4 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8cc8373]send state message COMPLETED -peer0.org1.example.com | [5b5 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8cc8373]Received message COMPLETED from shim -peer0.org1.example.com | [5b6 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c8cc8373]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [5b7 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c8cc8373fcce30d68c434ea84541b8bd52e467ceea79188239bed5cb86843fbd]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [5b8 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c8cc8373fcce30d68c434ea84541b8bd52e467ceea79188239bed5cb86843fbd -orderer.example.com | [32d 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -peer1.org2.example.com | [595 12-05 07:31:08.33 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 | [568 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8efb8928]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [5b9 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [32e 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [596 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4fcd21b4]state is ready -peer1.org2.example.com | [597 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4fcd21b4]Completed PUT_STATE. Sending RESPONSE -peer1.org2.example.com | [598 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [4fcd21b4]enterBusyState trigger event RESPONSE -peer1.org2.example.com | [599 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4fcd21b4]Move state message RESPONSE -peer1.org2.example.com | [59a 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4fcd21b4]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer0.org2.example.com | [569 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [5ba 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [5bb 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [5bc 12-05 07:31:08.47 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 [fa67ca22-37f4-4d44-b15e-83723c98808d] -peer0.org1.example.com | [5bd 12-05 07:31:08.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org1.example.com | [5be 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [1] -peer0.org1.example.com | [5bf 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [1] -peer0.org1.example.com | [5c0 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org1.example.com | [5c1 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [56a 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8efb8928]sending state message TRANSACTION -peer1.org2.example.com | [59b 12-05 07:31:08.33 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 | [59c 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4fcd21b4]sending state message RESPONSE -peer1.org2.example.com | [59d 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4fcd21b4]Received message COMPLETED from shim -peer1.org2.example.com | [59e 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4fcd21b4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [59f 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [5a0 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302 -peer1.org2.example.com | [5a1 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [5c2 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org2.example.com | [5a2 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [56b 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8efb8928]Received message TRANSACTION from shim -peer1.org2.example.com | [5a3 12-05 07:31:08.33 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 | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -peer0.org1.example.com | [5c3 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421ece360 -peer1.org2.example.com | [5a4 12-05 07:31:08.33 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 [01d60115-7e93-4716-a510-1cb2b7b4578e] -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [5c4 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\274\226\231\321\005\020\324\327\221\227\001\"\017businesschannel*@4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030\tP\036\260gY7\367\205\207P\360\016\324u\222\213\372]\036\035\005\261\313" -peer0.org2.example.com | [56c 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8efb8928]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [5a5 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [5a6 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302 channel id: businesschannel chaincode id: name:"mycc" -peer1.org2.example.com | [5a7 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -peer1.org2.example.com | [5a8 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302 channel id: businesschannel version: 1.0.4 -peer1.org2.example.com | [5a9 12-05 07:31:08.33 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.4,txid=4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302,syscc=true,proposal=0xc42180bb80,canname=escc:1.0.4 -peer1.org2.example.com | [5aa 12-05 07:31:08.33 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.4 -peer1.org2.example.com | [5ab 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [5ac 12-05 07:31:08.33 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.4 -peer1.org2.example.com | [5ad 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4fcd21b4]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [5ae 12-05 07:31:08.33 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 | [5af 12-05 07:31:08.33 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 | [5b0 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4fcd21b4]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [5b1 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4fcd21b4]Move state message TRANSACTION -peer1.org2.example.com | [5b2 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4fcd21b4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [5b3 12-05 07:31:08.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [5b4 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4fcd21b4]sending state message TRANSACTION -peer1.org2.example.com | [5b5 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4fcd21b4]Received message TRANSACTION from shim -peer1.org2.example.com | [5b6 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4fcd21b4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [5b7 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4fcd21b4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [5b8 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org2.example.com | [5b9 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer1.org2.example.com | [5ba 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4fcd21b4]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [5bb 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4fcd21b4]Move state message COMPLETED -peer1.org2.example.com | [5bc 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4fcd21b4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [5bd 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4fcd21b4]send state message COMPLETED -peer1.org2.example.com | [5be 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4fcd21b4]Received message COMPLETED from shim -peer1.org2.example.com | [5bf 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4fcd21b4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [5c0 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [5c1 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302 -peer1.org2.example.com | [5c2 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [5c3 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [5c5 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [5c4 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org2.example.com | [56d 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8efb8928]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [5c6 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [5c5 12-05 07:31:08.34 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 [01d60115-7e93-4716-a510-1cb2b7b4578e] -peer1.org2.example.com | [5c6 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer1.org2.example.com | [5c7 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [0] -peer1.org2.example.com | [5c8 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [0] -peer1.org2.example.com | [5c9 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org2.example.com | [5ca 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [5cb 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org2.example.com | [5cc 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421a00570 -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W -peer0.org2.example.com | [56e 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org2.example.com | [5cd 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\274\226\231\321\005\020\324\327\221\227\001\"\017businesschannel*@4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030\tP\036\260gY7\367\205\207P\360\016\324u\222\213\372]\036\035\005\261\313" -orderer.example.com | RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [5c7 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ -peer0.org2.example.com | [56f 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [5c8 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [5c9 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [5ce 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc -peer0.org1.example.com | [5ca 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421608000, header channel_header:"\010\003\032\014\010\274\226\231\321\005\020\324\327\221\227\001\"\017businesschannel*@4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030\tP\036\260gY7\367\205\207P\360\016\324u\222\213\372]\036\035\005\261\313" -peer0.org2.example.com | [570 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8efb8928]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [5cf 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [5cb 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq -peer0.org2.example.com | [571 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8efb8928]Move state message COMPLETED -peer1.org2.example.com | [5d0 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 4e712ad34f75c75845d706cd650231032af5f4450097cd3cdb64dfe19731dcbe} -orderer.example.com | VA7fF8MfGA== -peer0.org1.example.com | [5cc 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [572 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8efb8928]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [5cd 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org2.example.com | [5d1 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [5ce 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [5d2 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [573 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8efb8928]send state message COMPLETED -peer1.org2.example.com | [5d3 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421c98800, header channel_header:"\010\003\032\014\010\274\226\231\321\005\020\324\327\221\227\001\"\017businesschannel*@4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W\nymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W\nG94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka\nBTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb\nXk1Xy2C2aVQjOcr++w==\n-----END -----\n\022\030\tP\036\260gY7\367\205\207P\360\016\324u\222\213\372]\036\035\005\261\313" -peer0.org1.example.com | [5cf 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302] -orderer.example.com | [32f 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [574 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8efb8928]Received message COMPLETED from shim -peer1.org2.example.com | [5d4 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [5d5 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [5d0 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [575 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8efb8928]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [5d1 12-05 07:31:10.38 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 [decf1f82-f6be-4aa2-bef9-e3c79a7e3739] -peer1.org2.example.com | [5d6 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [5d2 12-05 07:31:10.38 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=mycc -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [5d3 12-05 07:31:10.38 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 [decf1f82-f6be-4aa2-bef9-e3c79a7e3739] -peer1.org2.example.com | [5d7 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [576 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8efb8928ec53a6cd988c9ce76f9319a59090f30aceb6293237508aeb92d9886f]HandleMessage- COMPLETED. Notify -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [5d4 12-05 07:31:10.38 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 | [5d8 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302] -peer0.org2.example.com | [577 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8efb8928ec53a6cd988c9ce76f9319a59090f30aceb6293237508aeb92d9886f -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -peer1.org2.example.com | [5d9 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer0.org2.example.com | [578 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -peer0.org2.example.com | [579 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [5d5 12-05 07:31:10.38 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 [f677798c-50d1-48ea-95b5-fb37cae38189] -peer0.org2.example.com | [57a 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -peer0.org1.example.com | [5d6 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.4,txid=555df838-14bd-42c3-9035-6f665feb5aba,syscc=true,proposal=0x0,canname=vscc:1.0.4 -peer1.org2.example.com | [5da 12-05 07:31:10.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 [a55778cc-6129-49b7-af81-76c5840f5689] -peer0.org2.example.com | [57b 12-05 07:31:14.76 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 [f9552e87-114e-4295-abce-b04457ce0384] -peer0.org1.example.com | [5d7 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302 chaindID businesschannel -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -peer1.org2.example.com | [5db 12-05 07:31:10.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=mycc -peer0.org1.example.com | [5d8 12-05 07:31:10.38 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.4 -peer0.org2.example.com | [57c 12-05 07:31:14.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -peer0.org1.example.com | [5d9 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [5da 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.4 -peer1.org2.example.com | [5dc 12-05 07:31:10.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 [a55778cc-6129-49b7-af81-76c5840f5689] -peer0.org1.example.com | [5db 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [555df838]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [5dd 12-05 07:31:10.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 -orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -peer1.org2.example.com | [5de 12-05 07:31:10.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 [4fa27ccf-4170-4327-a54b-945c6507e65c] -orderer.example.com | Xk1Xy2C2aVQjOcr++w== -peer1.org2.example.com | [5df 12-05 07:31:10.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.4,txid=267fe750-995e-4e55-9a0b-07d4b17fceae,syscc=true,proposal=0x0,canname=vscc:1.0.4 -peer0.org1.example.com | [5dc 12-05 07:31:10.38 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 | -----END CERTIFICATE----- -peer1.org2.example.com | [5e0 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302 chaindID businesschannel -peer0.org1.example.com | [5dd 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [555df838]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [330 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [5e1 12-05 07:31:10.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.4 -peer0.org1.example.com | [5de 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [555df838]Move state message TRANSACTION -peer1.org2.example.com | [5e2 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [5df 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [555df838]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [5e3 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.4 -peer0.org1.example.com | [5e0 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [5e4 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [267fe750]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [5e1 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [555df838]sending state message TRANSACTION -peer0.org1.example.com | [5e2 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [555df838]Received message TRANSACTION from shim -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [5e3 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [555df838]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [5e5 12-05 07:31:10.37 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 | [5e4 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [555df838]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [5e6 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [267fe750]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -peer0.org1.example.com | [5e5 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [5e6 12-05 07:31:10.38 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 | [5e7 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org1.example.com | [5e8 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [555df838]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [5e9 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [555df838]Move state message COMPLETED -peer1.org2.example.com | [5e7 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [267fe750]Move state message TRANSACTION -peer0.org1.example.com | [5ea 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [555df838]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [5eb 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [555df838]send state message COMPLETED -peer1.org2.example.com | [5e8 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [267fe750]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [5ec 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [555df838]Received message COMPLETED from shim -peer0.org1.example.com | [5ed 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [555df838]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [5e9 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [5ee 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [555df838-14bd-42c3-9035-6f665feb5aba]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [5ef 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:555df838-14bd-42c3-9035-6f665feb5aba -peer1.org2.example.com | [5ea 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [267fe750]sending state message TRANSACTION -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -peer0.org1.example.com | [5f0 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [5f1 12-05 07:31:10.38 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 [f677798c-50d1-48ea-95b5-fb37cae38189] -orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -peer1.org2.example.com | [5eb 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [267fe750]Received message TRANSACTION from shim -peer0.org1.example.com | [5f2 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -peer1.org2.example.com | [5ec 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [267fe750]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [5f3 12-05 07:31:10.38 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 | [5f4 12-05 07:31:10.38 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)(0xc4249597c0), Data:(*common.BlockData)(0xc421ed0880), Metadata:(*common.BlockMetadata)(0xc421ed08c0)}, doMVCCValidation=true -peer0.org1.example.com | [5f5 12-05 07:31:10.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 -peer0.org1.example.com | [5f6 12-05 07:31:10.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=mycc -orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -peer0.org1.example.com | [5f7 12-05 07:31:10.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=mycc, key=a -peer0.org1.example.com | [5f8 12-05 07:31:10.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=mycc, key=b -orderer.example.com | Xk1Xy2C2aVQjOcr++w== -peer0.org1.example.com | [5f9 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [4] Transaction index [0] TxId [4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302] marked as valid by state validator -peer1.org2.example.com | [5ed 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [267fe750]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [331 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer1.org2.example.com | [5ee 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [5fa 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x64, 0xa3, 0xcc, 0x55, 0x10, 0x3d, 0x9b, 0x60, 0x6f, 0x36, 0xb2, 0xd5, 0x1b, 0xdd, 0x2e, 0xff, 0x58, 0x0, 0xf2, 0x4, 0x7d, 0x6f, 0xe4, 0x7, 0x53, 0x24, 0x4f, 0x76, 0x2, 0xf1, 0x2b, 0x64} txOffsets= -orderer.example.com | [332 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -peer0.org1.example.com | txId=4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302 locPointer=offset=70, bytesLength=2849 -peer1.org2.example.com | [5ef 12-05 07:31:10.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 | [333 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer1.org2.example.com | [5f0 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org1.example.com | ] -peer1.org2.example.com | [5f1 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [267fe750]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [5f2 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [267fe750]Move state message COMPLETED -peer0.org1.example.com | [5fb 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=27121, bytesLength=2849] for tx ID: [4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302] to index -peer1.org2.example.com | [5f3 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [267fe750]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [334 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | [5fc 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=27121, bytesLength=2849] for tx number:[0] ID: [4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302] to blockNumTranNum index -peer1.org2.example.com | [5f4 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [267fe750]send state message COMPLETED -orderer.example.com | [335 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer0.org1.example.com | [5fd 12-05 07:31:10.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=[31728], isChainEmpty=[false], lastBlockNumber=[4] -peer1.org2.example.com | [5f5 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [267fe750]Received message COMPLETED from shim -orderer.example.com | [336 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | [337 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [5fe 12-05 07:31:10.39 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 | [338 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [5f6 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [267fe750]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [339 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [5ff 12-05 07:31:10.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 | [5f7 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [267fe750-995e-4e55-9a0b-07d4b17fceae]HandleMessage- COMPLETED. Notify -orderer.example.com | [33a 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [33b 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | [33c 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | [33d 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | [33e 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [5f8 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:267fe750-995e-4e55-9a0b-07d4b17fceae -orderer.example.com | [33f 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [600 12-05 07:31:10.39 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 | [340 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [5f9 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [5fa 12-05 07:31:10.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 [4fa27ccf-4170-4327-a54b-945c6507e65c] -peer1.org2.example.com | [5fb 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -orderer.example.com | [341 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [342 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [343 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [344 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [345 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | [346 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [347 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [348 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [349 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [34a 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | [34b 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [34c 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [601 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer1.org2.example.com | [5fc 12-05 07:31:10.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 | [5fd 12-05 07:31:10.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)(0xc4218f5c00), Data:(*common.BlockData)(0xc421987d40), Metadata:(*common.BlockMetadata)(0xc421987d80)}, doMVCCValidation=true -peer1.org2.example.com | [5fe 12-05 07:31:10.37 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 | [602 12-05 07:31:10.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer0.org1.example.com | [603 12-05 07:31:10.40 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 | [604 12-05 07:31:10.40 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 | [605 12-05 07:31:10.40 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 | [606 12-05 07:31:10.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -orderer.example.com | [34d 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [34e 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [34f 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [350 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [351 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | [352 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [5ff 12-05 07:31:10.37 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=mycc -peer0.org1.example.com | [607 12-05 07:31:10.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302 -peer0.org1.example.com | [608 12-05 07:31:10.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] -peer0.org1.example.com | [609 12-05 07:31:10.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org1.example.com | [60a 12-05 07:31:10.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [60b 12-05 07:31:10.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org1.example.com | [60c 12-05 07:31:10.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org1.example.com | [60d 12-05 07:31:10.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org1.example.com | [60e 12-05 07:31:11.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org1.example.com | [60f 12-05 07:31:11.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc424d5cc60 -peer0.org1.example.com | [610 12-05 07:31:11.61 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 | [611 12-05 07:31:11.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [353 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | [354 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org1.example.com | [612 12-05 07:31:11.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -peer1.org2.example.com | [600 12-05 07:31:10.37 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=mycc, key=a -orderer.example.com | [355 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [356 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [357 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [358 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [359 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [613 12-05 07:31:11.61 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 | [601 12-05 07:31:10.37 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=mycc, key=b -orderer.example.com | [35a 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [614 12-05 07:31:11.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [602 12-05 07:31:10.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [4] Transaction index [0] TxId [4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302] marked as valid by state validator -peer1.org2.example.com | [603 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x64, 0xa3, 0xcc, 0x55, 0x10, 0x3d, 0x9b, 0x60, 0x6f, 0x36, 0xb2, 0xd5, 0x1b, 0xdd, 0x2e, 0xff, 0x58, 0x0, 0xf2, 0x4, 0x7d, 0x6f, 0xe4, 0x7, 0x53, 0x24, 0x4f, 0x76, 0x2, 0xf1, 0x2b, 0x64} txOffsets= -orderer.example.com | [35b 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org1.example.com | [615 12-05 07:31:11.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc424b36410, header 0xc424d5cc90 -peer1.org2.example.com | txId=4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302 locPointer=offset=70, bytesLength=2849 -orderer.example.com | [35c 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | [35d 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [35e 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [35f 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org1.example.com | [616 12-05 07:31:11.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:"mycc" -peer1.org2.example.com | ] -orderer.example.com | [360 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [361 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [362 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [363 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [364 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | [365 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -peer0.org1.example.com | [617 12-05 07:31:11.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 6ca9040c6b1349a2271d9ec6338d60b5fb37b323852c811bb771793fba2c077d -peer0.org1.example.com | [618 12-05 07:31:11.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [6ca9040c6b1349a2271d9ec6338d60b5fb37b323852c811bb771793fba2c077d] -orderer.example.com | [366 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200266f8 gate 1512458982998320800 evaluation starts -peer1.org2.example.com | [604 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=27121, bytesLength=2849] for tx ID: [4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302] to index -peer0.org1.example.com | [619 12-05 07:31:11.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 -peer0.org1.example.com | [61a 12-05 07:31:11.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 [7ae600a3-24d0-4ddc-9da2-cbf3c546b2ba] -peer0.org1.example.com | [61b 12-05 07:31:11.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 6ca9040c6b1349a2271d9ec6338d60b5fb37b323852c811bb771793fba2c077d channel id: businesschannel -peer0.org1.example.com | [61c 12-05 07:31:11.61 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.4,txid=6ca9040c6b1349a2271d9ec6338d60b5fb37b323852c811bb771793fba2c077d,syscc=true,proposal=0xc424b36410,canname=lscc:1.0.4 -peer0.org1.example.com | [61d 12-05 07:31:11.61 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.4 -peer0.org1.example.com | [61e 12-05 07:31:11.61 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 | [61f 12-05 07:31:11.61 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.4 -orderer.example.com | [367 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200266f8 signed by 0 principal evaluation starts (used [false]) -peer1.org2.example.com | [605 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=27121, bytesLength=2849] for tx number:[0] ID: [4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302] to blockNumTranNum index -peer0.org1.example.com | [620 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [6ca9040c]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [368 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200266f8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -peer0.org1.example.com | [621 12-05 07:31:11.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... -peer1.org2.example.com | [606 12-05 07:31:10.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=[31728], isChainEmpty=[false], lastBlockNumber=[4] -peer0.org1.example.com | [622 12-05 07:31:11.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... -peer0.org1.example.com | [623 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [6ca9040c]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [624 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6ca9040c]Move state message TRANSACTION -peer0.org1.example.com | [625 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6ca9040c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [626 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [627 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6ca9040c]sending state message TRANSACTION -orderer.example.com | [369 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [607 12-05 07:31:10.38 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 | [628 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ca9040c]Received message TRANSACTION from shim -peer0.org1.example.com | [629 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6ca9040c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [62a 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [6ca9040c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [62b 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [6ca9040c]Sending GET_STATE -peer0.org1.example.com | [62c 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6ca9040c]Received message GET_STATE from shim -peer0.org1.example.com | [62d 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6ca9040c]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [62e 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [6ca9040c]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [62f 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [630 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [6ca9040c] getting state for chaincode lscc, key mycc, channel businesschannel -peer0.org1.example.com | [631 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [632 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [6ca9040c]Got state. Sending RESPONSE -peer1.org2.example.com | [608 12-05 07:31:10.38 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 | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 -orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h -orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA -orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx -orderer.example.com | zekLSULI9G2UUYA77A== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [36a 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | [36b 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200266f8 principal matched by identity 0 -peer0.org1.example.com | [633 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [6ca9040c]handleGetState serial send RESPONSE -peer1.org2.example.com | [609 12-05 07:31:10.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 -orderer.example.com | [36c 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ae 28 16 e2 b4 c0 28 fc ec b8 21 99 cc 79 d5 ca |.(....(...!..y..| -orderer.example.com | 00000010 0c c3 c5 7d 6c 4c a4 5e 5b f0 d9 e1 fc 81 42 d3 |...}lL.^[.....B.| -orderer.example.com | [36d 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c6 67 e4 46 8f 27 7d 42 29 de cc |0E.!..g.F.'}B)..| -orderer.example.com | 00000010 9c a3 e4 5f 14 cf b8 f7 91 1a 74 6d 1d 16 70 7e |..._......tm..p~| -orderer.example.com | 00000020 a8 2b 59 3a cd 02 20 32 eb 46 8a 5f b4 2a 47 89 |.+Y:.. 2.F._.*G.| -orderer.example.com | 00000030 ba 35 49 5c 46 f0 9d 2c 46 88 c2 00 b1 2c a2 cb |.5I\F..,F....,..| -orderer.example.com | 00000040 6f 17 55 34 96 5e b9 |o.U4.^.| -orderer.example.com | [36e 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200266f8 principal evaluation succeeds for identity 0 -orderer.example.com | [36f 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200266f8 gate 1512458982998320800 evaluation succeeds -peer0.org1.example.com | [634 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ca9040c]Received message RESPONSE from shim -peer0.org1.example.com | [635 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6ca9040c]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [636 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [6ca9040c]before send -peer0.org1.example.com | [637 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [6ca9040c]after send -peer0.org1.example.com | [638 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [6ca9040c]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [639 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [6ca9040c]GetState received payload RESPONSE -peer0.org1.example.com | [63a 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ca9040c]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [63b 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ca9040c]Move state message COMPLETED -peer0.org1.example.com | [63c 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6ca9040c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [63d 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ca9040c]send state message COMPLETED -peer0.org1.example.com | [63e 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6ca9040c]Received message COMPLETED from shim -orderer.example.com | [370 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [60a 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer0.org1.example.com | [63f 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6ca9040c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [640 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6ca9040c6b1349a2271d9ec6338d60b5fb37b323852c811bb771793fba2c077d]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [641 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:6ca9040c6b1349a2271d9ec6338d60b5fb37b323852c811bb771793fba2c077d -peer1.org2.example.com | [60b 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -orderer.example.com | [371 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [372 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [642 12-05 07:31:11.62 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 | [643 12-05 07:31:11.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 -peer0.org1.example.com | [644 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 6ca9040c6b1349a2271d9ec6338d60b5fb37b323852c811bb771793fba2c077d channel id: businesschannel version: 1.0 -peer0.org1.example.com | [645 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=6ca9040c6b1349a2271d9ec6338d60b5fb37b323852c811bb771793fba2c077d,syscc=false,proposal=0xc424b36410,canname=mycc:1.0 -peer0.org1.example.com | [646 12-05 07:31:11.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) : mycc:1.0 -peer0.org1.example.com | [647 12-05 07:31:11.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 | [648 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer1.org2.example.com | [60c 12-05 07:31:10.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 | [373 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [374 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org1.example.com | [649 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [6ca9040c]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [60d 12-05 07:31:10.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 [4] with [1] transactions -orderer.example.com | [375 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [60e 12-05 07:31:10.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 [4] -peer1.org2.example.com | [60f 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org2.example.com | [610 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 4fcd21b4a6f589e505b751bea50b0ad293e18e88f23272cae4580a4f577d3302 -peer1.org2.example.com | [611 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] -peer0.org1.example.com | [64a 12-05 07:31:11.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 | [376 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [64b 12-05 07:31:11.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 | [64c 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [6ca9040c]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [64d 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6ca9040c]Move state message TRANSACTION -peer0.org1.example.com | [64e 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6ca9040c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [612 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | [377 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [613 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [64f 12-05 07:31:11.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 | [650 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6ca9040c]sending state message TRANSACTION -peer0.org1.example.com | [651 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6ca9040c]Received message GET_STATE from shim -peer0.org1.example.com | [652 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6ca9040c]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [653 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [6ca9040c]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [654 12-05 07:31:11.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 | [655 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [6ca9040c] getting state for chaincode mycc, key a, channel businesschannel -orderer.example.com | [378 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [379 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [37a 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [37b 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [614 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [615 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org1.example.com | [656 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -orderer.example.com | [37c 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [37d 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [616 12-05 07:31:10.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org1.example.com | [657 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [6ca9040c]Got state. Sending RESPONSE -peer0.org1.example.com | [658 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [6ca9040c]handleGetState serial send RESPONSE -peer0.org1.example.com | [659 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6ca9040c]Received message COMPLETED from shim -orderer.example.com | [37e 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [65a 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6ca9040c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [37f 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [65b 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6ca9040c6b1349a2271d9ec6338d60b5fb37b323852c811bb771793fba2c077d]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [65c 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:6ca9040c6b1349a2271d9ec6338d60b5fb37b323852c811bb771793fba2c077d -peer0.org1.example.com | [65d 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [380 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [65e 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | [381 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [65f 12-05 07:31:11.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 | [660 12-05 07:31:11.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 [7ae600a3-24d0-4ddc-9da2-cbf3c546b2ba] -peer0.org1.example.com | [661 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [662 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 6ca9040c6b1349a2271d9ec6338d60b5fb37b323852c811bb771793fba2c077d channel id: businesschannel chaincode id: name:"mycc" -orderer.example.com | [382 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [383 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | [384 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [385 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [663 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -orderer.example.com | [386 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [664 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 6ca9040c6b1349a2271d9ec6338d60b5fb37b323852c811bb771793fba2c077d channel id: businesschannel version: 1.0.4 -orderer.example.com | [387 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [665 12-05 07:31:11.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.4,txid=6ca9040c6b1349a2271d9ec6338d60b5fb37b323852c811bb771793fba2c077d,syscc=true,proposal=0xc424b36410,canname=escc:1.0.4 -orderer.example.com | [388 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [666 12-05 07:31:11.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.4 -orderer.example.com | [389 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -peer0.org1.example.com | [667 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [38a 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -peer0.org1.example.com | [668 12-05 07:31:11.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.4 -orderer.example.com | [38b 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -peer0.org1.example.com | [669 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [6ca9040c]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [66a 12-05 07:31:11.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 | [66b 12-05 07:31:11.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 | [66c 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [6ca9040c]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [66d 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6ca9040c]Move state message TRANSACTION -peer0.org1.example.com | [66e 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6ca9040c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [66f 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [670 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6ca9040c]sending state message TRANSACTION -peer0.org1.example.com | [671 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ca9040c]Received message TRANSACTION from shim -peer0.org1.example.com | [672 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6ca9040c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [673 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [6ca9040c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [674 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [675 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [676 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ca9040c]Transaction completed. Sending COMPLETED -orderer.example.com | [38c 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer0.org1.example.com | [677 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ca9040c]Move state message COMPLETED -orderer.example.com | [38d 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [678 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6ca9040c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [38e 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [38f 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [390 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [391 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [392 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -orderer.example.com | [393 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -orderer.example.com | [394 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -peer0.org1.example.com | [679 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ca9040c]send state message COMPLETED -orderer.example.com | [395 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -peer0.org1.example.com | [67a 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6ca9040c]Received message COMPLETED from shim -peer0.org1.example.com | [67b 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6ca9040c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [67c 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6ca9040c6b1349a2271d9ec6338d60b5fb37b323852c811bb771793fba2c077d]HandleMessage- COMPLETED. Notify -orderer.example.com | [396 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [397 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [67d 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:6ca9040c6b1349a2271d9ec6338d60b5fb37b323852c811bb771793fba2c077d -orderer.example.com | [398 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -peer0.org1.example.com | [67e 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [399 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -peer0.org1.example.com | [67f 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [39a 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -peer0.org1.example.com | [680 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | [39b 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer0.org1.example.com | [681 12-05 07:31:11.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 [7ae600a3-24d0-4ddc-9da2-cbf3c546b2ba] -orderer.example.com | [39c 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -peer0.org1.example.com | [682 12-05 07:31:11.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org1.example.com | [683 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | [39d 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -orderer.example.com | [39e 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -peer0.org1.example.com | [684 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421ce22a0 -peer0.org1.example.com | [685 12-05 07:31:18.14 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 | [39f 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [3a0 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [686 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [3a1 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [687 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -orderer.example.com | [3a2 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [3a3 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [3a4 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [688 12-05 07:31:18.14 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 | [3a5 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -peer0.org1.example.com | [689 12-05 07:31:18.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 | [68a 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42233bae0, header 0xc421ce22d0 -peer0.org1.example.com | [68b 12-05 07:31:18.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:"lscc" -orderer.example.com | [3a6 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -orderer.example.com | [3a7 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -peer0.org1.example.com | [68c 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 7990219e383209a7ba627c3033b9057307ca3dfafbd7c926d20441f75d3d15a5 -peer0.org1.example.com | [68d 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7990219e383209a7ba627c3033b9057307ca3dfafbd7c926d20441f75d3d15a5] -peer0.org1.example.com | [68e 12-05 07:31:18.14 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 | [3a8 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [68f 12-05 07:31:18.14 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 [14030388-1b5d-42fb-9342-ea052c545267] -orderer.example.com | [3a9 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [3aa 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [690 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 7990219e383209a7ba627c3033b9057307ca3dfafbd7c926d20441f75d3d15a5 channel id: businesschannel -peer0.org1.example.com | [691 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 7990219e383209a7ba627c3033b9057307ca3dfafbd7c926d20441f75d3d15a5 channel id: businesschannel version: 1.0.4 -peer0.org1.example.com | [692 12-05 07:31:18.14 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.4,txid=7990219e383209a7ba627c3033b9057307ca3dfafbd7c926d20441f75d3d15a5,syscc=true,proposal=0xc42233bae0,canname=lscc:1.0.4 -orderer.example.com | [3ab 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [693 12-05 07:31:18.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) : lscc:1.0.4 -peer0.org1.example.com | [694 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [695 12-05 07:31:18.14 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.4 -orderer.example.com | [3ac 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [3ad 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [696 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7990219e]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [3ae 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -peer0.org1.example.com | [697 12-05 07:31:18.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 | [3af 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -peer0.org1.example.com | [698 12-05 07:31:18.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... -orderer.example.com | [3b0 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -peer0.org1.example.com | [699 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7990219e]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [3b1 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [3b2 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [69a 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7990219e]Move state message TRANSACTION -orderer.example.com | [3b3 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [3b4 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [69b 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7990219e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [69c 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer0.org1.example.com | [69d 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7990219e]sending state message TRANSACTION -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR -orderer.example.com | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w -peer0.org1.example.com | [69e 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7990219e]Received message TRANSACTION from shim -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK -peer0.org1.example.com | [69f 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7990219e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf -orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= -peer0.org1.example.com | [6a0 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7990219e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [6a1 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7990219e]Sending GET_STATE -peer0.org1.example.com | [6a2 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7990219e]Received message GET_STATE from shim -peer0.org1.example.com | [6a3 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7990219e]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [3b5 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [6a4 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7990219e]Received GET_STATE, invoking get state from ledger -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [6a5 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [6a6 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7990219e] getting state for chaincode lscc, key mycc, channel businesschannel -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -peer0.org1.example.com | [6a7 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [6a8 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7990219e]Got state. Sending RESPONSE -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org1.example.com | [6a9 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7990219e]handleGetState serial send RESPONSE -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -peer0.org1.example.com | [6aa 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7990219e]Received message RESPONSE from shim -orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -peer0.org1.example.com | [6ab 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7990219e]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [3b6 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [6ac 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7990219e]before send -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [6ae 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7990219e]GetState received payload RESPONSE -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [6ad 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7990219e]after send -peer0.org1.example.com | [6af 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [7990219e]Received RESPONSE, communicated (state:ready) -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [6b0 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7990219e]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [6b1 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7990219e]Move state message COMPLETED -peer0.org1.example.com | [6b2 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7990219e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [6b3 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7990219e]send state message COMPLETED -peer0.org1.example.com | [6b4 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7990219e]Received message COMPLETED from shim -peer0.org1.example.com | [6b5 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7990219e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [6b6 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7990219e383209a7ba627c3033b9057307ca3dfafbd7c926d20441f75d3d15a5]HandleMessage- COMPLETED. Notify -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org1.example.com | [6b7 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7990219e383209a7ba627c3033b9057307ca3dfafbd7c926d20441f75d3d15a5 -peer0.org1.example.com | [6b8 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -peer0.org1.example.com | [6b9 12-05 07:31:18.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -peer0.org1.example.com | [6ba 12-05 07:31:18.15 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 | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -peer0.org1.example.com | [6bb 12-05 07:31:18.15 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 [14030388-1b5d-42fb-9342-ea052c545267] -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [6bc 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [3b7 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -peer0.org1.example.com | [6bd 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 7990219e383209a7ba627c3033b9057307ca3dfafbd7c926d20441f75d3d15a5 channel id: businesschannel chaincode id: name:"lscc" -peer0.org1.example.com | [6be 12-05 07:31:18.15 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 | [3b8 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -peer0.org1.example.com | [6bf 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 7990219e383209a7ba627c3033b9057307ca3dfafbd7c926d20441f75d3d15a5 channel id: businesschannel version: 1.0.4 -orderer.example.com | [3b9 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [3ba 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [6c0 12-05 07:31:18.15 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.4,txid=7990219e383209a7ba627c3033b9057307ca3dfafbd7c926d20441f75d3d15a5,syscc=true,proposal=0xc42233bae0,canname=escc:1.0.4 -orderer.example.com | [3bb 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -peer0.org1.example.com | [6c1 12-05 07:31:18.15 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.4 -peer0.org1.example.com | [6c2 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [6c3 12-05 07:31:18.15 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.4 -peer0.org1.example.com | [6c4 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7990219e]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [6c5 12-05 07:31:18.15 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 | [6c6 12-05 07:31:18.15 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 | [3bc 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [6c7 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7990219e]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [6c8 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7990219e]Move state message TRANSACTION -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -peer0.org1.example.com | [6c9 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7990219e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [6ca 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | [6cb 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7990219e]sending state message TRANSACTION -peer0.org1.example.com | [6cc 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7990219e]Received message TRANSACTION from shim -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 -orderer.example.com | +/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN -peer0.org1.example.com | [6cd 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7990219e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [6ce 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7990219e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [6cf 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [6d0 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [6d1 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7990219e]Transaction completed. Sending COMPLETED -orderer.example.com | wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 -orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL -orderer.example.com | liPpNxLSsBU= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [3bd 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [6d2 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7990219e]Move state message COMPLETED -peer0.org1.example.com | [6d3 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7990219e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [6d4 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7990219e]send state message COMPLETED -peer0.org1.example.com | [6d5 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7990219e]Received message COMPLETED from shim -peer0.org1.example.com | [6d6 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7990219e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [6d7 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7990219e383209a7ba627c3033b9057307ca3dfafbd7c926d20441f75d3d15a5]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [6d8 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7990219e383209a7ba627c3033b9057307ca3dfafbd7c926d20441f75d3d15a5 -peer0.org1.example.com | [6d9 12-05 07:31:18.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 | [6da 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 -peer0.org1.example.com | [6db 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [6dc 12-05 07:31:18.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 [14030388-1b5d-42fb-9342-ea052c545267] -peer0.org1.example.com | [6dd 12-05 07:31:18.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org1.example.com | [6de 12-05 07:31:18.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org1.example.com | [6df 12-05 07:31:18.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421c79b30 -peer0.org1.example.com | [6e0 12-05 07:31:18.26 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 | [6e1 12-05 07:31:18.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [6e2 12-05 07:31:18.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -peer0.org1.example.com | [6e3 12-05 07:31:18.26 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 | [6e4 12-05 07:31:18.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [6e5 12-05 07:31:18.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc424a454f0, header 0xc421c79b60 -peer0.org1.example.com | [6e6 12-05 07:31:18.26 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 | [6e7 12-05 07:31:18.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 0c44f7a525be85ca37e36e4b0db16b59a079a0ae5d1b33c7f1f186614717df4c -peer0.org1.example.com | [6e8 12-05 07:31:18.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0c44f7a525be85ca37e36e4b0db16b59a079a0ae5d1b33c7f1f186614717df4c] -peer0.org1.example.com | [6e9 12-05 07:31:18.26 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 | [6ea 12-05 07:31:18.26 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 [5df10a94-afd3-422c-82dd-cc7d70c926f3] -peer0.org1.example.com | [6eb 12-05 07:31:18.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 0c44f7a525be85ca37e36e4b0db16b59a079a0ae5d1b33c7f1f186614717df4c channel id: businesschannel -peer0.org1.example.com | [6ec 12-05 07:31:18.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 0c44f7a525be85ca37e36e4b0db16b59a079a0ae5d1b33c7f1f186614717df4c channel id: businesschannel version: 1.0.4 -peer0.org1.example.com | [6ed 12-05 07:31:18.26 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.4,txid=0c44f7a525be85ca37e36e4b0db16b59a079a0ae5d1b33c7f1f186614717df4c,syscc=true,proposal=0xc424a454f0,canname=lscc:1.0.4 -peer0.org1.example.com | [6ee 12-05 07:31:18.26 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.4 -peer0.org1.example.com | [6ef 12-05 07:31:18.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [6f0 12-05 07:31:18.26 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.4 -peer0.org1.example.com | [6f1 12-05 07:31:18.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0c44f7a5]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [6f2 12-05 07:31:18.26 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 | [6f3 12-05 07:31:18.26 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 | [6f4 12-05 07:31:18.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0c44f7a5]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [6f5 12-05 07:31:18.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c44f7a5]Move state message TRANSACTION -peer0.org1.example.com | [6f6 12-05 07:31:18.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c44f7a5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [6f7 12-05 07:31:18.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [6f8 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c44f7a5]sending state message TRANSACTION -orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h -orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA -orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx -orderer.example.com | zekLSULI9G2UUYA77A== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [3be 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [6f9 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c44f7a5]Received message TRANSACTION from shim -peer0.org1.example.com | [6fa 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c44f7a5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [6fb 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0c44f7a5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [6fc 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [0c44f7a5]Sending GET_STATE -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [6fd 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c44f7a5]Received message GET_STATE from shim -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 -orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G -peer0.org1.example.com | [6fe 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c44f7a5]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h -orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA -orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx -orderer.example.com | zekLSULI9G2UUYA77A== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [3bf 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [6ff 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [0c44f7a5]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [700 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0c44f7a5] getting state for chaincode lscc, key mycc, channel businesschannel -peer0.org1.example.com | [701 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | [3c0 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [3c1 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [3c2 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [3c3 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -peer0.org1.example.com | [702 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0c44f7a5]Got state. Sending RESPONSE -orderer.example.com | [3c4 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [703 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [0c44f7a5]handleGetState serial send RESPONSE -orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [704 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c44f7a5]Received message RESPONSE from shim -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [705 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c44f7a5]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [706 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [0c44f7a5]before send -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -peer0.org1.example.com | [707 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [0c44f7a5]after send -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [708 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [0c44f7a5]Received RESPONSE, communicated (state:ready) -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | [709 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [0c44f7a5]GetState received payload RESPONSE -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [70a 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c44f7a5]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [70b 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c44f7a5]Move state message COMPLETED -orderer.example.com | BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W -peer0.org1.example.com | [70c 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c44f7a5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ -peer0.org1.example.com | [70d 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c44f7a5]send state message COMPLETED -orderer.example.com | kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc -peer0.org1.example.com | [70e 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq -peer0.org1.example.com | [70f 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c44f7a5]Received message COMPLETED from shim -orderer.example.com | VA7fF8MfGA== -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [710 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c44f7a5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [3c5 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [711 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c44f7a525be85ca37e36e4b0db16b59a079a0ae5d1b33c7f1f186614717df4c]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [712 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0c44f7a525be85ca37e36e4b0db16b59a079a0ae5d1b33c7f1f186614717df4c -peer0.org1.example.com | [713 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [714 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [715 12-05 07:31:18.27 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 | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [716 12-05 07:31:18.27 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 [5df10a94-afd3-422c-82dd-cc7d70c926f3] -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -peer0.org1.example.com | [717 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [718 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 0c44f7a525be85ca37e36e4b0db16b59a079a0ae5d1b33c7f1f186614717df4c channel id: businesschannel chaincode id: name:"lscc" -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -peer0.org1.example.com | [719 12-05 07:31:18.27 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 | [71a 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 0c44f7a525be85ca37e36e4b0db16b59a079a0ae5d1b33c7f1f186614717df4c channel id: businesschannel version: 1.0.4 -peer0.org1.example.com | [71b 12-05 07:31:18.27 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.4,txid=0c44f7a525be85ca37e36e4b0db16b59a079a0ae5d1b33c7f1f186614717df4c,syscc=true,proposal=0xc424a454f0,canname=escc:1.0.4 -peer0.org1.example.com | [71c 12-05 07:31:18.27 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.4 -orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -peer0.org1.example.com | [71d 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -orderer.example.com | Xk1Xy2C2aVQjOcr++w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [3c6 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [71e 12-05 07:31:18.27 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.4 -peer0.org1.example.com | [71f 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0c44f7a5]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [720 12-05 07:31:18.27 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 | [721 12-05 07:31:18.27 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 | [722 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0c44f7a5]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [723 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c44f7a5]Move state message TRANSACTION -peer0.org1.example.com | [724 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c44f7a5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -orderer.example.com | Xk1Xy2C2aVQjOcr++w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [3c7 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [3c8 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [3c9 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [3ca 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [3cb 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | [3cc 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [3cd 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | [3ce 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [3cf 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | [3d0 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [3d1 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [3d2 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [3d3 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [3d4 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [3d5 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -peer0.org1.example.com | [725 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [726 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c44f7a5]sending state message TRANSACTION -peer0.org1.example.com | [727 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c44f7a5]Received message TRANSACTION from shim -peer0.org1.example.com | [728 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c44f7a5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [729 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0c44f7a5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [72a 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [72b 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [72c 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c44f7a5]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [72d 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c44f7a5]Move state message COMPLETED -peer0.org1.example.com | [72e 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c44f7a5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [72f 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c44f7a5]send state message COMPLETED -orderer.example.com | [3d6 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [730 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c44f7a5]Received message COMPLETED from shim -orderer.example.com | [3d7 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -peer0.org1.example.com | [731 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c44f7a5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [3d8 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [3d9 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -orderer.example.com | [3da 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [3db 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -orderer.example.com | [3dc 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [3dd 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -orderer.example.com | [3de 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [3df 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -peer0.org1.example.com | [732 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c44f7a525be85ca37e36e4b0db16b59a079a0ae5d1b33c7f1f186614717df4c]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [733 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0c44f7a525be85ca37e36e4b0db16b59a079a0ae5d1b33c7f1f186614717df4c -peer0.org1.example.com | [734 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [735 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [736 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [737 12-05 07:31:18.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 [5df10a94-afd3-422c-82dd-cc7d70c926f3] -peer0.org1.example.com | [738 12-05 07:31:18.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org1.example.com | [739 12-05 07:31:18.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | [3e0 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [3e1 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [3e2 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [73a 12-05 07:31:18.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421d0a2d0 -peer0.org1.example.com | [73b 12-05 07:31:18.45 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 | [73c 12-05 07:31:18.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [3e3 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [73d 12-05 07:31:18.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -peer0.org1.example.com | [73e 12-05 07:31:18.45 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 | [3e4 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [73f 12-05 07:31:18.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [3e5 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [740 12-05 07:31:18.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc424a10f00, header 0xc421d0a300 -orderer.example.com | [3e6 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [741 12-05 07:31:18.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:"lscc" -peer0.org1.example.com | [742 12-05 07:31:18.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 0b41eb234d88f0e417e624b6310c3ae05b69f88746957ca3ce5d8d835e8ac284 -peer0.org1.example.com | [743 12-05 07:31:18.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0b41eb234d88f0e417e624b6310c3ae05b69f88746957ca3ce5d8d835e8ac284] -peer0.org1.example.com | [744 12-05 07:31:18.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 | [3e7 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel -peer0.org1.example.com | [745 12-05 07:31:18.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 [313fa3e2-259d-4445-95c3-022062a81146] -orderer.example.com | [3e8 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [746 12-05 07:31:18.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 0b41eb234d88f0e417e624b6310c3ae05b69f88746957ca3ce5d8d835e8ac284 channel id: businesschannel -orderer.example.com | [3e9 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel -peer0.org1.example.com | [747 12-05 07:31:18.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 0b41eb234d88f0e417e624b6310c3ae05b69f88746957ca3ce5d8d835e8ac284 channel id: businesschannel version: 1.0.4 -peer0.org1.example.com | [748 12-05 07:31:18.45 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.4,txid=0b41eb234d88f0e417e624b6310c3ae05b69f88746957ca3ce5d8d835e8ac284,syscc=true,proposal=0xc424a10f00,canname=lscc:1.0.4 -orderer.example.com | [3ea 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -peer0.org1.example.com | [749 12-05 07:31:18.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) : lscc:1.0.4 -peer0.org1.example.com | [74a 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [3eb 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -peer0.org1.example.com | [74b 12-05 07:31:18.46 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.4 -orderer.example.com | [3ec 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -peer0.org1.example.com | [74c 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0b41eb23]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [74d 12-05 07:31:18.46 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 | [3ed 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -peer0.org1.example.com | [74e 12-05 07:31:18.46 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 | [3ee 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -orderer.example.com | [3ef 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -peer0.org1.example.com | [74f 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0b41eb23]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [750 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b41eb23]Move state message TRANSACTION -orderer.example.com | [3f0 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [751 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0b41eb23]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [3f1 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel -orderer.example.com | [3f2 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -peer0.org1.example.com | [752 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [3f3 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -peer0.org1.example.com | [753 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b41eb23]sending state message TRANSACTION -peer0.org1.example.com | [754 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b41eb23]Received message TRANSACTION from shim -orderer.example.com | [3f4 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -peer0.org1.example.com | [755 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0b41eb23]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [3f5 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | [3f6 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -peer0.org1.example.com | [756 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0b41eb23]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [3f7 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | [3f8 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [757 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [0b41eb23]Sending GET_STATE -orderer.example.com | [3f9 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -peer0.org1.example.com | [758 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b41eb23]Received message GET_STATE from shim -orderer.example.com | [3fa 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [759 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0b41eb23]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [3fb 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | [3fc 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -peer0.org1.example.com | [75a 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [0b41eb23]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [75b 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [3fd 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | [3fe 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -peer0.org1.example.com | [75c 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0b41eb23] getting state for chaincode lscc, key mycc, channel businesschannel -peer0.org1.example.com | [75d 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [75e 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0b41eb23]Got state. Sending RESPONSE -orderer.example.com | [3ff 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -peer0.org1.example.com | [75f 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [0b41eb23]handleGetState serial send RESPONSE -peer0.org1.example.com | [760 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b41eb23]Received message RESPONSE from shim -orderer.example.com | [400 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -peer0.org1.example.com | [761 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0b41eb23]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [762 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [0b41eb23]before send -orderer.example.com | [401 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -peer0.org1.example.com | [763 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [0b41eb23]after send -orderer.example.com | [402 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -peer0.org1.example.com | [764 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [0b41eb23]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [765 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [0b41eb23]GetState received payload RESPONSE -peer0.org1.example.com | [766 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b41eb23]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [767 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b41eb23]Move state message COMPLETED -peer0.org1.example.com | [768 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0b41eb23]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [769 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b41eb23]send state message COMPLETED -peer0.org1.example.com | [76a 12-05 07:31:18.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b41eb23]Received message COMPLETED from shim -peer0.org1.example.com | [76b 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0b41eb23]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [76c 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0b41eb234d88f0e417e624b6310c3ae05b69f88746957ca3ce5d8d835e8ac284]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [76d 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0b41eb234d88f0e417e624b6310c3ae05b69f88746957ca3ce5d8d835e8ac284 -orderer.example.com | [403 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -peer0.org1.example.com | [76e 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [76f 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | [404 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [405 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | [406 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [407 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [408 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [770 12-05 07:31:18.47 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 | [771 12-05 07:31:18.47 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 [313fa3e2-259d-4445-95c3-022062a81146] -peer0.org1.example.com | [772 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [773 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 0b41eb234d88f0e417e624b6310c3ae05b69f88746957ca3ce5d8d835e8ac284 channel id: businesschannel chaincode id: name:"lscc" -peer0.org1.example.com | [774 12-05 07:31:18.47 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 | [775 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 0b41eb234d88f0e417e624b6310c3ae05b69f88746957ca3ce5d8d835e8ac284 channel id: businesschannel version: 1.0.4 -peer0.org1.example.com | [776 12-05 07:31:18.47 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.4,txid=0b41eb234d88f0e417e624b6310c3ae05b69f88746957ca3ce5d8d835e8ac284,syscc=true,proposal=0xc424a10f00,canname=escc:1.0.4 -peer0.org1.example.com | [777 12-05 07:31:18.47 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.4 -peer0.org1.example.com | [778 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [779 12-05 07:31:18.47 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.4 -peer0.org1.example.com | [77a 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0b41eb23]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [77b 12-05 07:31:18.47 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 | [77c 12-05 07:31:18.47 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 | [77d 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0b41eb23]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [409 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [77e 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b41eb23]Move state message TRANSACTION -peer0.org1.example.com | [77f 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0b41eb23]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [780 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [781 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b41eb23]sending state message TRANSACTION -peer0.org1.example.com | [782 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b41eb23]Received message TRANSACTION from shim -peer0.org1.example.com | [783 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0b41eb23]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [784 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0b41eb23]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [785 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [40a 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [786 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | [40b 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [40c 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [787 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b41eb23]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [788 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b41eb23]Move state message COMPLETED -peer0.org1.example.com | [789 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0b41eb23]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [78a 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b41eb23]send state message COMPLETED -peer0.org1.example.com | [78b 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b41eb23]Received message COMPLETED from shim -peer0.org1.example.com | [78c 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0b41eb23]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [78d 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0b41eb234d88f0e417e624b6310c3ae05b69f88746957ca3ce5d8d835e8ac284]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [78e 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0b41eb234d88f0e417e624b6310c3ae05b69f88746957ca3ce5d8d835e8ac284 -orderer.example.com | [40d 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org1.example.com | [78f 12-05 07:31:18.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [790 12-05 07:31:18.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [791 12-05 07:31:18.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [792 12-05 07:31:18.48 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 [313fa3e2-259d-4445-95c3-022062a81146] -orderer.example.com | [40e 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [793 12-05 07:31:18.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | [40f 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org1.example.com | [794 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | [410 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation -peer0.org1.example.com | [795 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42179acc0 -orderer.example.com | [411 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [412 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation -peer0.org1.example.com | [796 12-05 07:31:18.64 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 | [413 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org1.example.com | [797 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [414 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation -peer0.org1.example.com | [798 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -orderer.example.com | [415 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org1.example.com | [799 12-05 07:31:18.64 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 | [416 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -peer0.org1.example.com | [79a 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [79b 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4217cf4a0, header 0xc42179acf0 -peer0.org1.example.com | [79c 12-05 07:31:18.64 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 | [79d 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: ec65cab131a411f97c90510624dabf7146df9a7dee6443bacbefa26790f8957c -peer0.org1.example.com | [79e 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ec65cab131a411f97c90510624dabf7146df9a7dee6443bacbefa26790f8957c] -peer0.org1.example.com | [79f 12-05 07:31:18.64 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 | [7a0 12-05 07:31:18.64 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 [73a6d2f5-87cd-4038-83a1-46121a5fca48] -orderer.example.com | [417 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [418 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [419 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [41a 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [41b 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [41c 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [7a1 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: ec65cab131a411f97c90510624dabf7146df9a7dee6443bacbefa26790f8957c channel id: businesschannel -orderer.example.com | [41d 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | [7a2 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: ec65cab131a411f97c90510624dabf7146df9a7dee6443bacbefa26790f8957c channel id: businesschannel version: 1.0.4 -orderer.example.com | [41e 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [7a3 12-05 07:31:18.64 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.4,txid=ec65cab131a411f97c90510624dabf7146df9a7dee6443bacbefa26790f8957c,syscc=true,proposal=0xc4217cf4a0,canname=lscc:1.0.4 -orderer.example.com | [41f 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [420 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | [421 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [422 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [423 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [424 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [425 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | [426 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [427 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [7a4 12-05 07:31:18.64 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.4 -orderer.example.com | [428 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [429 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [42a 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [42b 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [7a5 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [42c 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | [42d 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | [42e 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [42f 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [430 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [431 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [432 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | [433 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [434 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | [435 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | [436 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [437 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [438 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [439 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [43a 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | [43b 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | [43c 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | [43d 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | [43e 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [43f 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [440 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [7a6 12-05 07:31:18.64 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.4 -orderer.example.com | [441 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | [442 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [443 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [444 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [445 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [446 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [447 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -peer0.org1.example.com | [7a7 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ec65cab1]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [448 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [449 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [44a 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -orderer.example.com | [44b 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -orderer.example.com | [44c 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -orderer.example.com | [44d 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -orderer.example.com | [44e 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [44f 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [450 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [451 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [7a8 12-05 07:31:18.64 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 | [452 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [453 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [454 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -orderer.example.com | [455 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -orderer.example.com | [456 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -orderer.example.com | [457 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [458 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [7a9 12-05 07:31:18.64 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 | [7aa 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ec65cab1]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [459 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [7ab 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ec65cab1]Move state message TRANSACTION -orderer.example.com | [45a 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [45b 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [7ac 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ec65cab1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [45c 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [7ad 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [45d 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -peer0.org1.example.com | [7ae 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ec65cab1]sending state message TRANSACTION -peer0.org1.example.com | [7af 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ec65cab1]Received message TRANSACTION from shim -peer0.org1.example.com | [7b0 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ec65cab1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [7b1 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ec65cab1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [7b2 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ec65cab1]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [7b3 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ec65cab1]Move state message COMPLETED -peer0.org1.example.com | [7b4 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ec65cab1]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [45e 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -orderer.example.com | [45f 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -peer0.org1.example.com | [7b5 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ec65cab1]send state message COMPLETED -peer0.org1.example.com | [7b6 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ec65cab1]Received message COMPLETED from shim -orderer.example.com | [460 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | [461 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [7b7 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ec65cab1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [7b8 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ec65cab131a411f97c90510624dabf7146df9a7dee6443bacbefa26790f8957c]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [7b9 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ec65cab131a411f97c90510624dabf7146df9a7dee6443bacbefa26790f8957c -peer0.org1.example.com | [7ba 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [462 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [463 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [7bb 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | [464 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [465 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [7bc 12-05 07:31:18.64 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 | [466 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -orderer.example.com | [467 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -peer0.org1.example.com | [7bd 12-05 07:31:18.64 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 [73a6d2f5-87cd-4038-83a1-46121a5fca48] -orderer.example.com | [468 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -peer0.org1.example.com | [7be 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [469 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -peer0.org1.example.com | [7bf 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: ec65cab131a411f97c90510624dabf7146df9a7dee6443bacbefa26790f8957c channel id: businesschannel chaincode id: name:"lscc" -peer0.org1.example.com | [7c0 12-05 07:31:18.64 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 | [7c1 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: ec65cab131a411f97c90510624dabf7146df9a7dee6443bacbefa26790f8957c channel id: businesschannel version: 1.0.4 -orderer.example.com | [46a 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [46b 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [7c2 12-05 07:31:18.64 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.4,txid=ec65cab131a411f97c90510624dabf7146df9a7dee6443bacbefa26790f8957c,syscc=true,proposal=0xc4217cf4a0,canname=escc:1.0.4 -orderer.example.com | [46c 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -peer0.org1.example.com | [7c3 12-05 07:31:18.64 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.4 -orderer.example.com | [46d 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -orderer.example.com | [46e 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -peer0.org1.example.com | [7c4 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [46f 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -peer0.org1.example.com | [7c5 12-05 07:31:18.64 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.4 -peer0.org1.example.com | [7c6 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ec65cab1]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [470 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [471 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [472 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -peer0.org1.example.com | [7c7 12-05 07:31:18.64 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 | [473 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [7c8 12-05 07:31:18.64 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 | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [7c9 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ec65cab1]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -peer0.org1.example.com | [7ca 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ec65cab1]Move state message TRANSACTION -peer0.org1.example.com | [7cb 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ec65cab1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [7cc 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | [7cd 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ec65cab1]sending state message TRANSACTION -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [7ce 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ec65cab1]Received message TRANSACTION from shim -orderer.example.com | BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 -peer0.org1.example.com | [7cf 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ec65cab1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | +/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [7d0 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ec65cab1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [7d1 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN -peer0.org1.example.com | [7d2 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [7d3 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ec65cab1]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [7d4 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ec65cab1]Move state message COMPLETED -peer0.org1.example.com | [7d5 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ec65cab1]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 -peer0.org1.example.com | [7d6 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ec65cab1]send state message COMPLETED -orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL -peer0.org1.example.com | [7d7 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ec65cab1]Received message COMPLETED from shim -peer0.org1.example.com | [7d8 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ec65cab1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | liPpNxLSsBU= -peer0.org1.example.com | [7d9 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ec65cab131a411f97c90510624dabf7146df9a7dee6443bacbefa26790f8957c]HandleMessage- COMPLETED. Notify -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [7da 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ec65cab131a411f97c90510624dabf7146df9a7dee6443bacbefa26790f8957c -peer0.org1.example.com | [7db 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [474 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [7dc 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [7dd 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [7de 12-05 07:31:18.64 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 [73a6d2f5-87cd-4038-83a1-46121a5fca48] -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [7df 12-05 07:31:18.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -peer0.org1.example.com | [7e0 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [7e1 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc424da68a0 -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [7e2 12-05 07:31:18.75 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 | [7e3 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [7e4 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -peer0.org1.example.com | [7e5 12-05 07:31:18.75 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 | [7e6 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [7e7 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc424e74500, header 0xc424da68d0 -peer0.org1.example.com | [7e8 12-05 07:31:18.75 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 | [7e9 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: c63148c76889c877849e4cff92d5854a24f1df4cfda5fd0d4ffa8f95e4d8c560 -peer0.org1.example.com | [7ea 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c63148c76889c877849e4cff92d5854a24f1df4cfda5fd0d4ffa8f95e4d8c560] -peer0.org1.example.com | [7eb 12-05 07:31:18.75 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 | [7ec 12-05 07:31:18.75 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 [777d3720-fde9-4a58-9964-85ecf5cf9140] -peer0.org1.example.com | [7ed 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: c63148c76889c877849e4cff92d5854a24f1df4cfda5fd0d4ffa8f95e4d8c560 channel id: businesschannel -peer0.org1.example.com | [7ee 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c63148c76889c877849e4cff92d5854a24f1df4cfda5fd0d4ffa8f95e4d8c560 channel id: businesschannel version: 1.0.4 -peer0.org1.example.com | [7ef 12-05 07:31:18.75 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.4,txid=c63148c76889c877849e4cff92d5854a24f1df4cfda5fd0d4ffa8f95e4d8c560,syscc=true,proposal=0xc424e74500,canname=lscc:1.0.4 -peer0.org1.example.com | [7f0 12-05 07:31:18.75 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.4 -peer0.org1.example.com | [7f1 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [7f2 12-05 07:31:18.75 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.4 -peer0.org1.example.com | [7f3 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c63148c7]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [7f4 12-05 07:31:18.75 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 | [7f5 12-05 07:31:18.75 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 | [7f6 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c63148c7]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [7f7 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c63148c7]Move state message TRANSACTION -peer0.org1.example.com | [7f8 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c63148c7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [7f9 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [7fa 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c63148c7]sending state message TRANSACTION -peer0.org1.example.com | [7fb 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c63148c7]Received message TRANSACTION from shim -peer0.org1.example.com | [7fc 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c63148c7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [7fd 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c63148c7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [7fe 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [c63148c7]Sending GET_STATE_BY_RANGE -peer0.org1.example.com | [7ff 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c63148c7]Received message GET_STATE_BY_RANGE from shim -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 -orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h -orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA -orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx -orderer.example.com | zekLSULI9G2UUYA77A== -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [800 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c63148c7]Fabric side Handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready -peer0.org1.example.com | [801 12-05 07:31:18.75 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 | [802 12-05 07:31:18.75 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}] -peer0.org1.example.com | [803 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] getQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result -peer0.org1.example.com | [804 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Got keys and values. Sending RESPONSE -peer0.org1.example.com | [805 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c63148c7]handleGetStateByRange serial send RESPONSE -peer0.org1.example.com | [806 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c63148c7]Received message RESPONSE from shim -peer0.org1.example.com | [807 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c63148c7]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [808 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c63148c7]before send -peer0.org1.example.com | [809 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c63148c7]after send -orderer.example.com | [475 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [80a 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [c63148c7]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [80b 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [c63148c7]Received RESPONSE. Successfully got range -peer0.org1.example.com | [80c 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [c63148c7]Sending QUERY_STATE_CLOSE -peer0.org1.example.com | [80d 12-05 07:31:18.75 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 | [80e 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [80f 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c63148c7]Received message QUERY_STATE_CLOSE from shim -peer0.org1.example.com | [810 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c63148c7]Fabric side Handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready -peer0.org1.example.com | [811 12-05 07:31:18.75 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 | [813 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Closed. Sending RESPONSE -peer0.org1.example.com | [814 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c63148c7]handleQueryStateClose serial send RESPONSE -peer0.org1.example.com | [815 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c63148c7]Received message RESPONSE from shim -peer0.org1.example.com | [816 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c63148c7]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [817 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c63148c7]before send -peer0.org1.example.com | [818 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c63148c7]after send -peer0.org1.example.com | [819 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [c63148c7]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [81a 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [c63148c7]Received RESPONSE. Successfully got range -orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [81b 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c63148c7]Transaction completed. Sending COMPLETED -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 -orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h -orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA -orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx -orderer.example.com | zekLSULI9G2UUYA77A== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [476 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [477 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [478 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [479 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [47a 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [47b 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | [81c 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c63148c7]Move state message COMPLETED -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W -orderer.example.com | RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ -orderer.example.com | kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc -orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq -orderer.example.com | VA7fF8MfGA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [47c 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [81d 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c63148c7]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -peer0.org1.example.com | [81e 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c63148c7]send state message COMPLETED -peer0.org1.example.com | [812 12-05 07:31:18.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Exiting QUERY_STATE_CLOSE -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -orderer.example.com | Xk1Xy2C2aVQjOcr++w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [47d 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -orderer.example.com | Xk1Xy2C2aVQjOcr++w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [47e 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org1.example.com | [81f 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [820 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c63148c7]Received message COMPLETED from shim -peer0.org1.example.com | [821 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c63148c7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [822 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c63148c76889c877849e4cff92d5854a24f1df4cfda5fd0d4ffa8f95e4d8c560]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [823 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c63148c76889c877849e4cff92d5854a24f1df4cfda5fd0d4ffa8f95e4d8c560 -peer0.org1.example.com | [824 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [825 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [826 12-05 07:31:18.76 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 | [47f 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [827 12-05 07:31:18.76 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 [777d3720-fde9-4a58-9964-85ecf5cf9140] -peer0.org1.example.com | [828 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [829 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: c63148c76889c877849e4cff92d5854a24f1df4cfda5fd0d4ffa8f95e4d8c560 channel id: businesschannel chaincode id: name:"lscc" -peer0.org1.example.com | [82a 12-05 07:31:18.76 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 | [82b 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: c63148c76889c877849e4cff92d5854a24f1df4cfda5fd0d4ffa8f95e4d8c560 channel id: businesschannel version: 1.0.4 -peer0.org1.example.com | [82c 12-05 07:31:18.76 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.4,txid=c63148c76889c877849e4cff92d5854a24f1df4cfda5fd0d4ffa8f95e4d8c560,syscc=true,proposal=0xc424e74500,canname=escc:1.0.4 -peer0.org1.example.com | [82d 12-05 07:31:18.76 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.4 -orderer.example.com | [480 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [82e 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [481 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [482 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR -orderer.example.com | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf -orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [483 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [484 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [82f 12-05 07:31:18.76 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.4 -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [485 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [486 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [487 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [488 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [830 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c63148c7]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [831 12-05 07:31:18.76 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 | [832 12-05 07:31:18.76 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 | [833 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c63148c7]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [834 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c63148c7]Move state message TRANSACTION -peer0.org1.example.com | [835 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c63148c7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [489 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -peer0.org1.example.com | [836 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [837 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c63148c7]sending state message TRANSACTION -peer0.org1.example.com | [838 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c63148c7]Received message TRANSACTION from shim -orderer.example.com | [48a 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [839 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c63148c7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [83a 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c63148c7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [83b 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [83c 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [83d 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c63148c7]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [83e 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c63148c7]Move state message COMPLETED -peer0.org1.example.com | [83f 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c63148c7]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [840 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c63148c7]send state message COMPLETED -peer0.org1.example.com | [841 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c63148c7]Received message COMPLETED from shim -peer0.org1.example.com | [842 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c63148c7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [48b 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -orderer.example.com | [48c 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [48d 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -orderer.example.com | [48e 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [48f 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -orderer.example.com | [490 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [843 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c63148c76889c877849e4cff92d5854a24f1df4cfda5fd0d4ffa8f95e4d8c560]HandleMessage- COMPLETED. Notify -orderer.example.com | [491 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -peer0.org1.example.com | [844 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c63148c76889c877849e4cff92d5854a24f1df4cfda5fd0d4ffa8f95e4d8c560 -peer0.org1.example.com | [845 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [492 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [493 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -orderer.example.com | [494 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [495 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [496 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [497 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [498 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [846 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [847 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | [499 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [49a 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [848 12-05 07:31:18.76 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 [777d3720-fde9-4a58-9964-85ecf5cf9140] -orderer.example.com | [49b 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | [49c 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [849 12-05 07:31:18.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org1.example.com | [84a 12-05 07:31:19.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org1.example.com | [84b 12-05 07:31:19.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421d0bc20 -peer0.org1.example.com | [84c 12-05 07:31:19.09 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 | [49d 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | [49e 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [49f 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | [4a0 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [4a1 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [4a2 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [4a3 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [4a4 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [84d 12-05 07:31:19.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [4a5 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | [4a6 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -orderer.example.com | [4a7 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | [4a8 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | [4a9 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | [4aa 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | [4ab 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -orderer.example.com | [4ac 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | [4ad 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | [4ae 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [4af 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | [4b0 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [4b1 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | [4b2 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -orderer.example.com | [4b3 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -orderer.example.com | [4b4 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -orderer.example.com | [4b5 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | [4b6 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -orderer.example.com | [4b7 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | [4b8 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -orderer.example.com | [4b9 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | [4ba 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -peer0.org1.example.com | [84e 12-05 07:31:19.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -orderer.example.com | [4bb 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | [4bc 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [84f 12-05 07:31:19.09 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 | [4bd 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel -orderer.example.com | [4be 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [4bf 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel -orderer.example.com | [4c0 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [4c1 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel -orderer.example.com | [4c2 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -peer0.org1.example.com | [850 12-05 07:31:19.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [851 12-05 07:31:19.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc424a11a90, header 0xc421d0bc50 -peer0.org1.example.com | [852 12-05 07:31:19.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:"qscc" -orderer.example.com | [4c3 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | [4c4 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [4c5 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [4c6 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [4c7 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [853 12-05 07:31:19.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 38e7f5c3201ff7beb35c04485c7b69ac802a21fb954a33c6bd4d0face2b07757 -peer0.org1.example.com | [854 12-05 07:31:19.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 38e7f5c3201ff7beb35c04485c7b69ac802a21fb954a33c6bd4d0face2b07757 channel id: -orderer.example.com | [4c8 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [855 12-05 07:31:19.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 38e7f5c3201ff7beb35c04485c7b69ac802a21fb954a33c6bd4d0face2b07757 channel id: version: 1.0.4 -peer0.org1.example.com | [856 12-05 07:31:19.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.4,txid=38e7f5c3201ff7beb35c04485c7b69ac802a21fb954a33c6bd4d0face2b07757,syscc=true,proposal=0xc424a11a90,canname=qscc:1.0.4 -peer0.org1.example.com | [857 12-05 07:31:19.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) : qscc:1.0.4 -peer0.org1.example.com | [858 12-05 07:31:19.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [859 12-05 07:31:19.09 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.4 -peer0.org1.example.com | [85a 12-05 07:31:19.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [38e7f5c3]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [85b 12-05 07:31:19.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... -orderer.example.com | [4c9 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [85c 12-05 07:31:19.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... -peer0.org1.example.com | [85d 12-05 07:31:19.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [38e7f5c3]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [85e 12-05 07:31:19.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [38e7f5c3]Move state message TRANSACTION -peer0.org1.example.com | [85f 12-05 07:31:19.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [38e7f5c3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [860 12-05 07:31:19.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [861 12-05 07:31:19.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [38e7f5c3]sending state message TRANSACTION -peer0.org1.example.com | [862 12-05 07:31:19.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [38e7f5c3]Received message TRANSACTION from shim -peer0.org1.example.com | [863 12-05 07:31:19.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [38e7f5c3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [4ca 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [864 12-05 07:31:19.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [38e7f5c3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [4cb 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org1.example.com | [865 12-05 07:31:19.10 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel -orderer.example.com | [4cc 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [4cd 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [4ce 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation -peer0.org1.example.com | [866 12-05 07:31:19.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [38e7f5c3]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [867 12-05 07:31:19.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [38e7f5c3]Move state message COMPLETED -orderer.example.com | [4cf 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org1.example.com | [868 12-05 07:31:19.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [38e7f5c3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [869 12-05 07:31:19.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [38e7f5c3]send state message COMPLETED -peer0.org1.example.com | [86a 12-05 07:31:19.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [38e7f5c3]Received message COMPLETED from shim -orderer.example.com | [4d0 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation -peer0.org1.example.com | [86b 12-05 07:31:19.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [38e7f5c3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [86c 12-05 07:31:19.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [38e7f5c3201ff7beb35c04485c7b69ac802a21fb954a33c6bd4d0face2b07757]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [86d 12-05 07:31:19.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:38e7f5c3201ff7beb35c04485c7b69ac802a21fb954a33c6bd4d0face2b07757 -peer0.org1.example.com | [86e 12-05 07:31:19.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [86f 12-05 07:31:19.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [870 12-05 07:31:19.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [871 12-05 07:31:19.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org1.example.com | [872 12-05 07:31:19.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org1.example.com | [873 12-05 07:31:19.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421b1e2a0 -peer0.org1.example.com | [874 12-05 07:31:19.26 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 | [875 12-05 07:31:19.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [876 12-05 07:31:19.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP fa22925f40fb1f9442b57936a4ccb1f8427a5cf69db4a483ec77d96af42c6ac0} -peer0.org1.example.com | [877 12-05 07:31:19.26 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 | [878 12-05 07:31:19.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [879 12-05 07:31:19.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc424e75450, header 0xc421b1e2d0 -peer0.org1.example.com | [87a 12-05 07:31:19.26 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 | [87b 12-05 07:31:19.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: fa2f592c946759f945804166e44dbbc8edbddf1d346953cd677f526cabf67979 -peer0.org1.example.com | [87c 12-05 07:31:19.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: fa2f592c946759f945804166e44dbbc8edbddf1d346953cd677f526cabf67979 channel id: -peer0.org1.example.com | [87d 12-05 07:31:19.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: fa2f592c946759f945804166e44dbbc8edbddf1d346953cd677f526cabf67979 channel id: version: 1.0.4 -peer0.org1.example.com | [87e 12-05 07:31:19.26 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.4,txid=fa2f592c946759f945804166e44dbbc8edbddf1d346953cd677f526cabf67979,syscc=true,proposal=0xc424e75450,canname=qscc:1.0.4 -peer0.org1.example.com | [87f 12-05 07:31:19.26 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.4 -peer0.org1.example.com | [880 12-05 07:31:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [881 12-05 07:31:19.26 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.4 -peer0.org1.example.com | [882 12-05 07:31:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fa2f592c]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [883 12-05 07:31:19.26 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 | [884 12-05 07:31:19.26 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 | [885 12-05 07:31:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fa2f592c]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [886 12-05 07:31:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa2f592c]Move state message TRANSACTION -peer0.org1.example.com | [887 12-05 07:31:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa2f592c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [888 12-05 07:31:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [889 12-05 07:31:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa2f592c]sending state message TRANSACTION -peer0.org1.example.com | [88a 12-05 07:31:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa2f592c]Received message TRANSACTION from shim -peer0.org1.example.com | [88b 12-05 07:31:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa2f592c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [88c 12-05 07:31:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [fa2f592c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [88d 12-05 07:31:19.27 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel -orderer.example.com | [4d1 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [4d2 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation -peer0.org1.example.com | [88e 12-05 07:31:19.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -orderer.example.com | [4d3 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [4d4 12-05 07:29:43.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -orderer.example.com | [4d5 12-05 07:29:43.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [4d6 12-05 07:29:43.04 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: testchainid] Broadcast has successfully enqueued message of type ORDERER_TRANSACTION -peer0.org1.example.com | [88f 12-05 07:31:19.27 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=[17162] -orderer.example.com | [4d7 12-05 07:29:43.04 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -peer0.org1.example.com | [890 12-05 07:31:19.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14566], Going to peek [8] bytes -orderer.example.com | [4d8 12-05 07:29:43.04 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -peer0.org1.example.com | [891 12-05 07:31:19.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5211], placementInfo={fileNum=[0], startOffset=[17162], bytesOffset=[17164]} -orderer.example.com | [4d9 12-05 07:29:43.04 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Rejecting deliver because channel businesschannel not found -orderer.example.com | [4db 12-05 07:29:43.04 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [4da 12-05 07:29:43.04 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [4dc 12-05 07:29:43.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260b8 gate 1512458983047828200 evaluation starts -orderer.example.com | [4dd 12-05 07:29:43.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260b8 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [892 12-05 07:31:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa2f592c]Transaction completed. Sending COMPLETED -orderer.example.com | [4de 12-05 07:29:43.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [4df 12-05 07:29:43.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [893 12-05 07:31:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa2f592c]Move state message COMPLETED -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [894 12-05 07:31:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa2f592c]Handling ChaincodeMessage of type: COMPLETED(state:ready) orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp @@ -9179,125 +15081,177 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv orderer.example.com | Tg== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [4e0 12-05 07:29:43.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [4e1 12-05 07:29:43.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [4e2 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260b8 principal matched by identity 0 -orderer.example.com | [4e3 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 6d 75 b0 99 a8 63 21 3f a7 fe 15 0a 7e 47 36 f5 |mu...c!?....~G6.| -orderer.example.com | 00000010 74 4c 26 96 de b4 7b 82 ad 9a 81 ea b3 63 c9 44 |tL&...{......c.D| -orderer.example.com | [4e4 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 10 a5 d6 86 81 97 78 8b 88 a8 7d 2d |0D. ......x...}-| -peer0.org1.example.com | [895 12-05 07:31:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa2f592c]send state message COMPLETED -peer0.org1.example.com | [896 12-05 07:31:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa2f592c]Received message COMPLETED from shim -peer0.org1.example.com | [897 12-05 07:31:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa2f592c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [898 12-05 07:31:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa2f592c946759f945804166e44dbbc8edbddf1d346953cd677f526cabf67979]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [899 12-05 07:31:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:fa2f592c946759f945804166e44dbbc8edbddf1d346953cd677f526cabf67979 -orderer.example.com | 00000010 6c 9f 6c 4c 0b c2 15 bb 8c ca f2 a1 cd 6e a8 5e |l.lL.........n.^| -orderer.example.com | 00000020 78 93 e0 f5 02 20 53 c5 d3 0c 38 c4 0f 41 23 e4 |x.... S...8..A#.| -orderer.example.com | 00000030 a9 94 6a 0d db 0f e3 2b c9 53 a9 a9 44 94 d4 a3 |..j....+.S..D...| -orderer.example.com | 00000040 4c cb d3 11 45 f1 |L...E.| -peer0.org1.example.com | [89a 12-05 07:31:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [4e5 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260b8 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [89b 12-05 07:31:19.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | [4e6 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260b8 gate 1512458983047828200 evaluation succeeds -orderer.example.com | [4e7 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [Writers %!s(*policies.implicitMetaPolicy=&{0xc42039a2a0 1 [0xc420114708]})]} -peer0.org1.example.com | [89c 12-05 07:31:19.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [4e8 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/msp/mgmt] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [89d 12-05 07:31:19.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | [4e9 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [4ea 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/msp/mgmt] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [4eb 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [4ec 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0ABC060A1B08011A0608E79599D10522...07577269746572731A0641646D696E73 -orderer.example.com | [4ed 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: EA5FB7E305667A845A3393F712CDE1476F2FECE68C23CFAE4E390E89292A0D27 -orderer.example.com | [4ee 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [4ef 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [4f0 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [4f1 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [4f2 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [4f3 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [4f4 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [4f5 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [4f6 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | [4f7 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [4f8 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [4f9 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [4fa 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [4fb 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | [4fc 12-05 07:29:43.05 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [4fd 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [4fe 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [4ff 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [500 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [501 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [502 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -orderer.example.com | [503 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | [504 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | [505 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [506 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [507 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [508 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [509 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | [50a 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [50b 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | [50c 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | [50d 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [50e 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [50f 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [510 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [511 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | [512 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | [513 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | [514 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | [515 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [516 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [517 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [518 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | [519 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [51a 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [51b 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [51c 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [51d 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [51e 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [51f 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [520 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [521 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -orderer.example.com | [522 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy ChannelCreationPolicy for Application -orderer.example.com | [523 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [524 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [525 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [526 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [527 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [528 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [529 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -orderer.example.com | [52a 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -orderer.example.com | [52b 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -orderer.example.com | [52c 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [52d 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [52e 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [52f 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [530 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [531 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [532 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -orderer.example.com | [533 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -orderer.example.com | [534 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -orderer.example.com | [535 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | [536 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [537 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [538 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [539 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [53a 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [53b 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -orderer.example.com | [53c 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -orderer.example.com | [53d 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -orderer.example.com | [53e 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -orderer.example.com | [53f 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [540 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [541 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -orderer.example.com | [542 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -orderer.example.com | [543 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -orderer.example.com | [544 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | [545 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [546 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [547 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [548 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [96b 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [96c 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [96d 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018ecf0 principal matched by identity 0 +orderer.example.com | [96e 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 44 f1 3e 4f 6d 9a b3 e1 ef 22 3d 26 f3 43 d0 5b |D.>Om...."=&.C.[| +orderer.example.com | 00000010 b1 59 c3 a6 62 11 4f 9d 51 9b 3b e9 f3 ba e4 04 |.Y..b.O.Q.;.....| +orderer.example.com | [96f 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 2c 23 29 6b e9 9e 97 f2 70 4c 72 31 |0D. ,#)k....pLr1| +orderer.example.com | 00000010 2f 36 ac e6 6a d3 53 0f 21 c1 c5 40 3a 15 57 d1 |/6..j.S.!..@:.W.| +orderer.example.com | 00000020 cc 02 5a 86 02 20 1d 03 80 74 5f b6 0a 01 3d ff |..Z.. ...t_...=.| +orderer.example.com | 00000030 5e 27 d6 32 be ba 99 0a a9 88 e9 83 9a 8f 33 70 |^'.2..........3p| +orderer.example.com | 00000040 43 6a 07 54 2e 6e |Cj.T.n| +orderer.example.com | [970 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018ecf0 principal evaluation succeeds for identity 0 +orderer.example.com | [971 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018ecf0 gate 1513244081433914100 evaluation succeeds +orderer.example.com | [972 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4209a6580 1 [0xc420026390 0xc420026400]}) %!s(*policies.implicitMetaPolicy=&{0xc42081fae0 1 [0xc420026298]})]} +orderer.example.com | [973 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [974 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [975 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [976 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [977 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [978 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [979 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [97a 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [97b 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [97c 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [97d 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [97e 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [97f 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [980 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [981 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [982 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [983 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420026938 gate 1513244081439228500 evaluation starts +orderer.example.com | [984 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026938 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [985 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026938 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [986 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [987 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | [988 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026938 principal matched by identity 0 +orderer.example.com | [989 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 90 5a de 1e c3 6f b0 aa 07 d5 13 30 e0 54 69 ca |.Z...o.....0.Ti.| +orderer.example.com | 00000010 d6 99 0b c9 3d d8 4c d3 60 59 21 0a 50 37 48 7a |....=.L.`Y!.P7Hz| +orderer.example.com | [98a 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 9a 72 56 8b 79 99 61 59 35 a5 bc |0E.!..rV.y.aY5..| +orderer.example.com | 00000010 0c 70 2c f0 48 b4 0e 7e d1 bc 2b a4 6c 08 01 ee |.p,.H..~..+.l...| +orderer.example.com | 00000020 6b 7b b1 19 07 02 20 65 76 52 d9 cc c2 fb 2f e4 |k{.... evR..../.| +orderer.example.com | 00000030 ec 37 79 19 17 4c 1b f7 72 73 44 6f c7 8a b5 15 |.7y..L..rsDo....| +orderer.example.com | 00000040 bc 3e 95 ed c0 47 73 |.>...Gs| +orderer.example.com | [98b 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026938 principal evaluation succeeds for identity 0 +orderer.example.com | [98c 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420026938 gate 1513244081439228500 evaluation succeeds +orderer.example.com | [98d 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [98e 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [98f 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [990 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [991 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [992 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [993 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [994 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [995 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [996 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [997 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [998 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [999 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [99a 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [99b 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [99c 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [99d 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [99e 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [99f 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [9a0 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [9a1 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [9a2 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [9a3 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [9a4 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [9a5 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [9a6 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [9a7 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [9a8 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [9a9 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [9aa 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [9ab 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [9ac 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [9ad 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [9ae 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [9af 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [9b0 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [9b1 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [9b2 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [9b3 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [9b4 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [9b5 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [9b6 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [9b7 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [9b8 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [9b9 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +orderer.example.com | [9ba 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [9bb 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [9bc 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [9bd 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [9be 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [9bf 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [9c0 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [9c1 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [9c2 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [9c3 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [9c4 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [9c5 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [9c6 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [9c7 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [9c8 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [9c9 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [9ca 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [9cb 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [9cc 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [9cd 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +orderer.example.com | [9ce 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [9cf 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [9d0 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [9d1 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +orderer.example.com | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [9d2 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [9d3 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [9d4 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [9d5 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [9d6 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [9d7 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [9d8 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [9d9 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -9312,7 +15266,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL orderer.example.com | liPpNxLSsBU= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [549 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [9da 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -9326,7 +15280,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx orderer.example.com | zekLSULI9G2UUYA77A== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [54a 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [9db 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -9340,12 +15294,12 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx orderer.example.com | zekLSULI9G2UUYA77A== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [54b 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [54c 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [54d 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [54e 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [54f 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [550 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [9dc 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [9dd 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [9de 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [9df 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [9e0 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [9e1 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -9360,7 +15314,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq orderer.example.com | VA7fF8MfGA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [551 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [9e2 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -9374,7 +15328,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb orderer.example.com | Xk1Xy2C2aVQjOcr++w== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [552 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [9e3 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -9388,129 +15342,105 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb orderer.example.com | Xk1Xy2C2aVQjOcr++w== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [553 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [554 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [555 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [556 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [557 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | [9e4 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [9e5 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [9e6 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [9e7 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG +orderer.example.com | [9e8 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [9e9 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026c28 gate 1513244081448898700 evaluation starts +orderer.example.com | [9ea 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026c28 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [9eb 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026c28 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [9ec 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR -orderer.example.com | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf -orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +orderer.example.com | KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +orderer.example.com | gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +orderer.example.com | KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +orderer.example.com | iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +orderer.example.com | Tg== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [558 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +orderer.example.com | [9ed 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026c28 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | [9ee 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026c28 principal evaluation fails +orderer.example.com | [9ef 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026c28 gate 1513244081448898700 evaluation fails +orderer.example.com | [9f0 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026c38 gate 1513244081449479700 evaluation starts +orderer.example.com | [9f1 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026c38 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [9f2 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026c38 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [9f3 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +orderer.example.com | KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +orderer.example.com | gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +orderer.example.com | KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +orderer.example.com | iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +orderer.example.com | Tg== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [559 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +orderer.example.com | [9f4 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026c38 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | [9f5 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026c38 principal evaluation fails +orderer.example.com | [9f6 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026c38 gate 1513244081449479700 evaluation fails +orderer.example.com | [9f7 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026c48 gate 1513244081449980200 evaluation starts +orderer.example.com | [9f8 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026c48 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [9f9 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026c48 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [9fa 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +orderer.example.com | KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +orderer.example.com | gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +orderer.example.com | KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +orderer.example.com | iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +orderer.example.com | Tg== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [55a 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [55b 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [55c 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [55d 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [55e 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -orderer.example.com | [55f 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [560 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -orderer.example.com | [561 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [562 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -orderer.example.com | [563 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [564 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -orderer.example.com | [565 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [566 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -orderer.example.com | [567 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [568 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -orderer.example.com | [569 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [56a 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [56b 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [56c 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | [56d 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [56e 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | [56f 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [570 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | [571 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [572 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [573 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [574 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [575 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -orderer.example.com | [576 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel -orderer.example.com | [577 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -orderer.example.com | [578 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | [579 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -orderer.example.com | [57a 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | [57b 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -orderer.example.com | [57c 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | [57d 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -orderer.example.com | [57e 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -orderer.example.com | [57f 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -orderer.example.com | [580 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | [581 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -orderer.example.com | [582 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | [583 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [584 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | [585 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -orderer.example.com | [586 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | [587 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | [588 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | [589 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | [58a 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -orderer.example.com | [58b 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | [58c 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | [58d 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [58e 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | [58f 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [590 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | [591 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in /Application/Admins -orderer.example.com | [592 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [593 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Application/Readers -orderer.example.com | [594 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [595 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Application/Writers -orderer.example.com | [596 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [597 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [598 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [599 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [59a 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [59b 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | [59c 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [59d 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [59e 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [59f 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [5a0 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [5a1 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [5a2 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [5a3 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | [5a4 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -orderer.example.com | [5a5 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200262e8 gate 1512458983079866100 evaluation starts -orderer.example.com | [5a6 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200262e8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [5a7 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200262e8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [5a8 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [9fb 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [9fc 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [9fd 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026c48 principal matched by identity 0 +orderer.example.com | [9fe 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 44 f1 3e 4f 6d 9a b3 e1 ef 22 3d 26 f3 43 d0 5b |D.>Om...."=&.C.[| +orderer.example.com | 00000010 b1 59 c3 a6 62 11 4f 9d 51 9b 3b e9 f3 ba e4 04 |.Y..b.O.Q.;.....| +orderer.example.com | [a00 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 2c 23 29 6b e9 9e 97 f2 70 4c 72 31 |0D. ,#)k....pLr1| +orderer.example.com | 00000010 2f 36 ac e6 6a d3 53 0f 21 c1 c5 40 3a 15 57 d1 |/6..j.S.!..@:.W.| +orderer.example.com | 00000020 cc 02 5a 86 02 20 1d 03 80 74 5f b6 0a 01 3d ff |..Z.. ...t_...=.| +orderer.example.com | 00000030 5e 27 d6 32 be ba 99 0a a9 88 e9 83 9a 8f 33 70 |^'.2..........3p| +orderer.example.com | 00000040 43 6a 07 54 2e 6e |Cj.T.n| +orderer.example.com | [9ff 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [a02 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026c48 principal evaluation succeeds for identity 0 +orderer.example.com | [a03 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026c48 gate 1513244081449980200 evaluation succeeds +orderer.example.com | [a04 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4209a6580 1 [0xc420026390 0xc420026400]}) %!s(*policies.implicitMetaPolicy=&{0xc42081fae0 1 [0xc420026298]})]} +orderer.example.com | [a05 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [a06 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [a01 12-14 09:34:41.45 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [a07 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [a08 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [a09 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [a0a 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [a0b 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [a0c 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [a0d 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [a0e 12-14 09:34:41.45 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [a0f 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [a10 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [a11 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [a12 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [a13 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [a14 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [a15 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [a16 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [a17 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42018e590 gate 1513244081457915900 evaluation starts +orderer.example.com | [a18 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018e590 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [a19 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018e590 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [a1a 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -9524,87 +15454,131 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx orderer.example.com | zekLSULI9G2UUYA77A== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [5a9 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | [5aa 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200262e8 principal matched by identity 0 -orderer.example.com | [5ab 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ae 28 16 e2 b4 c0 28 fc ec b8 21 99 cc 79 d5 ca |.(....(...!..y..| -orderer.example.com | 00000010 0c c3 c5 7d 6c 4c a4 5e 5b f0 d9 e1 fc 81 42 d3 |...}lL.^[.....B.| -orderer.example.com | [5ac 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c6 67 e4 46 8f 27 7d 42 29 de cc |0E.!..g.F.'}B)..| -orderer.example.com | 00000010 9c a3 e4 5f 14 cf b8 f7 91 1a 74 6d 1d 16 70 7e |..._......tm..p~| -orderer.example.com | 00000020 a8 2b 59 3a cd 02 20 32 eb 46 8a 5f b4 2a 47 89 |.+Y:.. 2.F._.*G.| -orderer.example.com | 00000030 ba 35 49 5c 46 f0 9d 2c 46 88 c2 00 b1 2c a2 cb |.5I\F..,F....,..| -orderer.example.com | 00000040 6f 17 55 34 96 5e b9 |o.U4.^.| -orderer.example.com | [5ad 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200262e8 principal evaluation succeeds for identity 0 -orderer.example.com | [5ae 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200262e8 gate 1512458983079866100 evaluation succeeds -orderer.example.com | [5af 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [5b0 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [5b1 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [5b2 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [5b3 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [5b4 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [5b5 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [5b6 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [5b7 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [5b8 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [5b9 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [5ba 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [5bb 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [5bc 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [5bd 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [5be 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [5bf 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [5c0 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [5c1 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [5c2 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | [5c3 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [5c4 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [5c5 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [5c6 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [5c7 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [5c8 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [5c9 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [5ca 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [5cb 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -orderer.example.com | [5cc 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -orderer.example.com | [5cd 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -orderer.example.com | [5ce 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -orderer.example.com | [5cf 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [5d0 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [5d1 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [5d2 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [5d3 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [5d4 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [5d5 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -orderer.example.com | [5d6 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -orderer.example.com | [5d7 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -orderer.example.com | [5d8 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [5d9 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [5da 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [5db 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [5dc 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [5dd 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [5de 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -orderer.example.com | [5df 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -orderer.example.com | [5e0 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -orderer.example.com | [5e1 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | [5e2 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [5e3 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [5e4 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [5e5 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [5e6 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [5e7 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -orderer.example.com | [5e8 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -orderer.example.com | [5e9 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -orderer.example.com | [5ea 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -orderer.example.com | [5eb 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [5ec 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [5ed 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -orderer.example.com | [5ee 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -orderer.example.com | [5ef 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -orderer.example.com | [5f0 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | [5f1 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [5f2 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [5f3 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [5f4 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [a1b 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | [a1c 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018e590 principal matched by identity 0 +orderer.example.com | [a1d 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 90 5a de 1e c3 6f b0 aa 07 d5 13 30 e0 54 69 ca |.Z...o.....0.Ti.| +orderer.example.com | 00000010 d6 99 0b c9 3d d8 4c d3 60 59 21 0a 50 37 48 7a |....=.L.`Y!.P7Hz| +orderer.example.com | [a1e 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 9a 72 56 8b 79 99 61 59 35 a5 bc |0E.!..rV.y.aY5..| +orderer.example.com | 00000010 0c 70 2c f0 48 b4 0e 7e d1 bc 2b a4 6c 08 01 ee |.p,.H..~..+.l...| +orderer.example.com | 00000020 6b 7b b1 19 07 02 20 65 76 52 d9 cc c2 fb 2f e4 |k{.... evR..../.| +orderer.example.com | 00000030 ec 37 79 19 17 4c 1b f7 72 73 44 6f c7 8a b5 15 |.7y..L..rsDo....| +orderer.example.com | 00000040 bc 3e 95 ed c0 47 73 |.>...Gs| +orderer.example.com | [a1f 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018e590 principal evaluation succeeds for identity 0 +orderer.example.com | [a20 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42018e590 gate 1513244081457915900 evaluation succeeds +orderer.example.com | [a21 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [a22 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [a23 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [a24 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [a25 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [a26 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [a27 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [a28 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [a29 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [a2a 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [a2b 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [a2c 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [a2d 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [a2e 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [a2f 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [a30 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [a31 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [a32 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [a33 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [a34 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [a35 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [a36 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [a37 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [a38 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [a39 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [a3a 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [a3b 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [a3c 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [a3d 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [a3e 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [a3f 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [a40 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [a41 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [a42 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [a43 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [a44 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [a45 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [a46 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [a47 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [a48 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [a49 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [a4a 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [a4b 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [a4c 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [a4d 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +orderer.example.com | [a4e 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [a4f 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [a50 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [a51 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [a52 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [a53 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [a54 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [a55 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [a56 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [a57 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [a58 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [a59 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [a5a 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [a5b 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [a5c 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [a5d 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [a5e 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [a5f 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [a60 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [a61 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +orderer.example.com | [a62 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [a63 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [a64 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [a65 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +orderer.example.com | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [a66 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [a67 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [a68 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [a69 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [a6a 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [a6b 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [a6c 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [a6d 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -9619,7 +15593,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL orderer.example.com | liPpNxLSsBU= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [5f5 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [a6e 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -9633,7 +15607,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx orderer.example.com | zekLSULI9G2UUYA77A== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [5f6 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [a6f 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -9647,12 +15621,12 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx orderer.example.com | zekLSULI9G2UUYA77A== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [5f7 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [5f8 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [5f9 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [5fa 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [5fb 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [5fc 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [a70 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [a71 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [a72 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [a73 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [a74 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [a75 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -9667,7 +15641,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq orderer.example.com | VA7fF8MfGA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [5fd 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [a76 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -9681,7 +15655,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb orderer.example.com | Xk1Xy2C2aVQjOcr++w== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [5fe 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [a77 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -9695,107 +15669,71 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb orderer.example.com | Xk1Xy2C2aVQjOcr++w== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [5ff 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [600 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [601 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [602 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [603 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR -orderer.example.com | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf -orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [604 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [605 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [606 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [607 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [608 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [609 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [60a 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [60b 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [60c 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | [60d 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [60e 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [60f 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [610 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [611 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | [612 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [613 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [614 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [615 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [616 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [617 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [618 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | [619 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | [61a 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [61b 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [61c 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [61d 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [61e 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [61f 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | [620 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | [621 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | [622 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [623 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [624 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [625 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [626 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | [627 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | [628 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | [629 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | [62a 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [62b 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [62c 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [62d 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [62e 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [62f 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [630 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [631 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | [632 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [633 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [634 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [635 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [636 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [637 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [638 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [639 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | [63a 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -orderer.example.com | [63b 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200266d0 gate 1512458983106218000 evaluation starts -orderer.example.com | [63c 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200266d0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [63d 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200266d0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [63e 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [a78 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [a79 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [a7a 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [a7b 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Found message which requested to be isolated, cutting into its own batch +orderer.example.com | [a7c 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +orderer.example.com | [a7d 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +orderer.example.com | [a7e 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[11945], Going to peek [8] bytes +orderer.example.com | [a7f 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[11943], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | [a80 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [a81 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | [a82 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | [a83 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [a84 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [a85 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [a86 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [a87 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | [a88 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | [a89 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [a8a 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | [a8b 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [a8c 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [a8d 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [a8e 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [a8f 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [a90 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [a91 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [a92 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [a93 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [a94 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [a95 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [a96 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [a97 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [a98 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [a99 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [a9a 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [a9b 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [a9c 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [a9d 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [a9e 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | [a9f 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | [aa0 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | [aa1 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | [aa2 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [aa3 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [aa4 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [aa5 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [aa6 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [aa7 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [aa8 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [aa9 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [aaa 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [aab 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [aac 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [aad 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [aae 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [aaf 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [ab0 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [ab1 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [ab2 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [ab3 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [ab4 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [ab5 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42018e9d8 gate 1513244081491114300 evaluation starts +orderer.example.com | [ab6 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018e9d8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [ab7 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018e9d8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [ab8 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -9809,87 +15747,135 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx orderer.example.com | zekLSULI9G2UUYA77A== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [63f 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | [640 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200266d0 principal matched by identity 0 -orderer.example.com | [641 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ae 28 16 e2 b4 c0 28 fc ec b8 21 99 cc 79 d5 ca |.(....(...!..y..| -orderer.example.com | 00000010 0c c3 c5 7d 6c 4c a4 5e 5b f0 d9 e1 fc 81 42 d3 |...}lL.^[.....B.| -orderer.example.com | [642 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c6 67 e4 46 8f 27 7d 42 29 de cc |0E.!..g.F.'}B)..| -orderer.example.com | 00000010 9c a3 e4 5f 14 cf b8 f7 91 1a 74 6d 1d 16 70 7e |..._......tm..p~| -orderer.example.com | 00000020 a8 2b 59 3a cd 02 20 32 eb 46 8a 5f b4 2a 47 89 |.+Y:.. 2.F._.*G.| -orderer.example.com | 00000030 ba 35 49 5c 46 f0 9d 2c 46 88 c2 00 b1 2c a2 cb |.5I\F..,F....,..| -orderer.example.com | 00000040 6f 17 55 34 96 5e b9 |o.U4.^.| -orderer.example.com | [643 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200266d0 principal evaluation succeeds for identity 0 -orderer.example.com | [644 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200266d0 gate 1512458983106218000 evaluation succeeds -orderer.example.com | [645 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [646 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [647 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [648 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [649 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [64a 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [64b 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [64c 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [64d 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [64e 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [64f 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [650 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [651 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [652 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [653 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [654 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [655 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [656 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [657 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [658 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | [659 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [65a 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [65b 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [65c 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [65d 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [65e 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [65f 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [660 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [661 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -orderer.example.com | [662 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -orderer.example.com | [663 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -orderer.example.com | [664 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -orderer.example.com | [665 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [666 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [667 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [668 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [669 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [66a 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [66b 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -orderer.example.com | [66c 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -orderer.example.com | [66d 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -orderer.example.com | [66e 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [66f 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [670 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [671 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [672 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [673 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [674 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -orderer.example.com | [675 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -orderer.example.com | [676 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -orderer.example.com | [677 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | [678 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [679 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [67a 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [67b 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [67c 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [67d 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -orderer.example.com | [67e 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -orderer.example.com | [67f 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -orderer.example.com | [680 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -orderer.example.com | [681 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [682 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [683 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -orderer.example.com | [684 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -orderer.example.com | [685 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -orderer.example.com | [686 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | [687 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [688 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [689 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [68a 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [ab9 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | [aba 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018e9d8 principal matched by identity 0 +orderer.example.com | [abb 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 90 5a de 1e c3 6f b0 aa 07 d5 13 30 e0 54 69 ca |.Z...o.....0.Ti.| +orderer.example.com | 00000010 d6 99 0b c9 3d d8 4c d3 60 59 21 0a 50 37 48 7a |....=.L.`Y!.P7Hz| +orderer.example.com | [abc 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 9a 72 56 8b 79 99 61 59 35 a5 bc |0E.!..rV.y.aY5..| +orderer.example.com | 00000010 0c 70 2c f0 48 b4 0e 7e d1 bc 2b a4 6c 08 01 ee |.p,.H..~..+.l...| +orderer.example.com | 00000020 6b 7b b1 19 07 02 20 65 76 52 d9 cc c2 fb 2f e4 |k{.... evR..../.| +orderer.example.com | 00000030 ec 37 79 19 17 4c 1b f7 72 73 44 6f c7 8a b5 15 |.7y..L..rsDo....| +orderer.example.com | 00000040 bc 3e 95 ed c0 47 73 |.>...Gs| +orderer.example.com | [abd 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018e9d8 principal evaluation succeeds for identity 0 +orderer.example.com | [abe 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42018e9d8 gate 1513244081491114300 evaluation succeeds +orderer.example.com | [abf 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [ac0 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [ac1 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [ac2 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [ac3 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [ac4 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [ac5 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [ac6 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [ac7 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [ac8 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [ac9 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [aca 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [acb 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [acc 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [acd 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [ace 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [acf 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [ad0 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [ad1 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [ad2 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [ad3 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [ad4 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [ad5 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [ad6 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [ad7 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [ad8 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [ad9 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [ada 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [adb 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [adc 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [add 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +orderer.example.com | [ade 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [adf 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [ae0 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [ae1 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [ae2 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [ae3 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [ae4 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [ae5 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [ae6 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +orderer.example.com | [ae7 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [ae8 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [ae9 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [aea 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [aeb 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [aec 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [aed 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [aee 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [aef 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [af0 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [af1 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [af2 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [af3 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [af4 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [af5 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [af6 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [af7 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [af8 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [af9 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [afa 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [afb 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [afc 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [afd 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [afe 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [aff 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [b00 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [b01 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [b02 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [b03 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [b04 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +orderer.example.com | RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +orderer.example.com | kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +orderer.example.com | VA7fF8MfGA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [b05 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [b06 12-14 09:34:41.50 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [b07 12-14 09:34:41.50 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [b08 12-14 09:34:41.50 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [b09 12-14 09:34:41.50 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [b0a 12-14 09:34:41.50 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [b0b 12-14 09:34:41.50 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [b0c 12-14 09:34:41.50 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -9904,7 +15890,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL orderer.example.com | liPpNxLSsBU= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [68b 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [b0d 12-14 09:34:41.50 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -9918,7 +15904,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx orderer.example.com | zekLSULI9G2UUYA77A== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [68c 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [b0e 12-14 09:34:41.50 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -9932,59 +15918,11 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx orderer.example.com | zekLSULI9G2UUYA77A== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [68d 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [68e 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [68f 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [690 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [691 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [692 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W -orderer.example.com | RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ -orderer.example.com | kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc -orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq -orderer.example.com | VA7fF8MfGA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [693 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -orderer.example.com | Xk1Xy2C2aVQjOcr++w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [694 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -orderer.example.com | Xk1Xy2C2aVQjOcr++w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [695 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [696 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [697 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [698 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [699 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [b0f 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [b10 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [b11 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [b12 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [b13 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -9998,7 +15936,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [69a 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [b14 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -10011,7 +15949,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [69b 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [b15 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -10024,179 +15962,273 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [69c 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [69d 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [69e 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [69f 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [6a0 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -orderer.example.com | [6a1 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [6a2 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -orderer.example.com | [6a3 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [6a4 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -orderer.example.com | [6a5 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [6a6 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -orderer.example.com | [6a7 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [6a8 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -orderer.example.com | [6a9 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [6aa 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -orderer.example.com | [6ab 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [6ac 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [6ad 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [6ae 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [6af 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [6b0 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [6b1 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [6b2 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | [6b3 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [6b4 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | [6b5 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [6b6 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | [6b7 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [6b8 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [6b9 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [6ba 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [6bb 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -orderer.example.com | [6bc 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | [6bd 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [6be 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel -orderer.example.com | [6bf 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -orderer.example.com | [6c0 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | [6c1 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -orderer.example.com | [6c2 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -orderer.example.com | [6c3 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -orderer.example.com | [6c4 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | [6c5 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -orderer.example.com | [6c6 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | [6c7 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -orderer.example.com | [6c8 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | [6c9 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [6ca 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel -orderer.example.com | [6cb 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [6cc 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel -orderer.example.com | [6cd 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -orderer.example.com | [6ce 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | [6cf 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [6d0 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | [6d1 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [6d2 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | [6d3 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [6d4 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | [6d5 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | [6d6 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -orderer.example.com | [6d7 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | [6d8 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | [6d9 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | [6da 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | [6db 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [6dc 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [6dd 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [6de 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [6df 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [6e0 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [6e1 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [6e2 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [6e3 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [6e4 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [6e5 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation -orderer.example.com | [6e6 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [6e7 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation -orderer.example.com | [6e8 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [6e9 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation -orderer.example.com | [6ea 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [6eb 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -orderer.example.com | [6ec 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [6ed 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [6ee 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [6ef 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [6f0 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [6f1 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [6f2 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [6f3 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [6f4 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [6f5 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | [6f6 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [6f7 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [6f8 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [6f9 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [6fa 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | [6fb 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [6fc 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [6fd 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [6fe 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [6ff 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [700 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [701 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | [702 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | [703 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [704 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [705 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [706 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [707 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | [708 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [709 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | [70a 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | [70b 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [70c 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [70d 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [70e 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [70f 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | [710 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | [711 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | [712 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | [713 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [714 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [715 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [716 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | [717 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [718 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [719 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [71a 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [71b 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [71c 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [71d 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [71e 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [71f 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -orderer.example.com | [720 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -orderer.example.com | [721 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -orderer.example.com | [722 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -orderer.example.com | [723 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [724 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [725 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [726 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [727 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [728 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [729 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -orderer.example.com | [72a 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -orderer.example.com | [72b 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -orderer.example.com | [72c 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [72d 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [72e 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [72f 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [730 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [731 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [732 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -orderer.example.com | [733 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -orderer.example.com | [734 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -orderer.example.com | [735 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | [736 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [737 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [738 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [739 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [73a 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [73b 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -orderer.example.com | [73c 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -orderer.example.com | [73d 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -orderer.example.com | [73e 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -orderer.example.com | [73f 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [740 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [741 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -orderer.example.com | [742 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -orderer.example.com | [743 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -orderer.example.com | [744 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | [745 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [746 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [747 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [748 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [b16 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [b17 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [b18 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [b19 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [b1a 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | [b1b 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [b1c 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | [b1d 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [b1e 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | [b1f 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [b20 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | [b21 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [b22 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | [b23 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [b24 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | [b25 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [b26 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [b27 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [b28 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [b29 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [b2a 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [b2b 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [b2c 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | [b2d 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [b2e 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +orderer.example.com | [b2f 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [b30 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | [b31 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [b32 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [b33 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [b34 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [b35 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [b36 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +orderer.example.com | [b37 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +orderer.example.com | [b38 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | [b39 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +orderer.example.com | [b3a 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | [b3b 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [b3c 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +orderer.example.com | [b3d 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [b3e 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +orderer.example.com | [b3f 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +orderer.example.com | [b40 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | [b41 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +orderer.example.com | [b42 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | [b43 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +orderer.example.com | [b44 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | [b45 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +orderer.example.com | [b46 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | [b47 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +orderer.example.com | [b48 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | [b49 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [b4a 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | [b4b 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [b4c 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | [b4d 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [b4e 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | [b4f 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +orderer.example.com | [b50 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | [b51 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | [b52 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | [b53 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | [b54 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | [b55 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [b56 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [b57 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [b58 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [b59 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [b5a 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [b5b 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [b5c 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | [b5d 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [b5e 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [b5f 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +orderer.example.com | [b60 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [b61 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +orderer.example.com | [b62 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | [b63 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +orderer.example.com | [b64 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [b65 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +orderer.example.com | [b66 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [b67 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42017c5a0 chain:0xc42017d3e0 cutter:0xc420137770 filters:0xc42017cc20 signer:0x128b4a8 lastConfig:0 lastConfigSeq:1} +orderer.example.com | [b68 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +orderer.example.com | [b69 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [b6a 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [b6b 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [b6c 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [b6d 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...ED125D33D1C63C03B459F95BD7DB8918 +orderer.example.com | [b6e 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: C4A5BEA04D9DE3C051EA7DF847C7EC80A1A0994764B022BD1DD6F16570ADA062 +orderer.example.com | [b6f 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 1 to 2, setting lastConfig from 0 to 1 +orderer.example.com | [b70 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [b71 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [b72 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 +orderer.example.com | [b73 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [b74 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [b75 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08010AFF050A0A4F7264657265724D53...ED125D33D1C63C03B459F95BD7DB8918 +orderer.example.com | [b76 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 9DF1ED580466FF6CC4626D623B3BBFDEF892146814197FAB1BDFE68FC6D95E9A +orderer.example.com | [b77 12-14 09:34:41.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x81, 0xc1, 0xf4, 0xbc, 0xce, 0xfe, 0xcf, 0xba, 0xa, 0x88, 0xde, 0x5c, 0x57, 0x53, 0xcf, 0x5d, 0xef, 0xb6, 0x4c, 0x49, 0x24, 0x89, 0xc2, 0x64, 0x6c, 0x98, 0xc7, 0xd6, 0x74, 0x70, 0xc, 0xfa} txOffsets= +orderer.example.com | txId= locPointer=offset=70, bytesLength=11922 +orderer.example.com | ] +orderer.example.com | [b78 12-14 09:34:41.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25696], isChainEmpty=[false], lastBlockNumber=[1] +orderer.example.com | [b79 12-14 09:34:41.52 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 1 +orderer.example.com | [b7a 12-14 09:34:43.56 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [b7b 12-14 09:34:43.56 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +orderer.example.com | [b7c 12-14 09:34:43.56 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [b7d 12-14 09:34:43.57 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [b7e 12-14 09:34:43.57 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +orderer.example.com | [b7f 12-14 09:34:43.57 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Preprocessing CONFIG_UPDATE +orderer.example.com | [b80 12-14 09:34:43.57 UTC] [github.com/hyperledger/fabric/orderer/configupdate] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process -> DEBU Processing channel reconfiguration request for channel businesschannel +orderer.example.com | [b81 12-14 09:34:43.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [b82 12-14 09:34:43.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [b83 12-14 09:34:43.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [b84 12-14 09:34:43.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [b85 12-14 09:34:43.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [b86 12-14 09:34:43.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [b87 12-14 09:34:43.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [b88 12-14 09:34:43.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [b89 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [b8a 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [b8b 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [b8c 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [b8d 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [b8e 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [b8f 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [b90 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [b91 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42018ef30 gate 1513244083581560900 evaluation starts +orderer.example.com | [b92 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018ef30 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [b93 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018ef30 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [b94 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [b95 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +orderer.example.com | [b96 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018ef30 principal matched by identity 0 +orderer.example.com | [b97 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d2 ba f2 a4 c3 1b 91 92 0e 64 66 67 64 a7 0f 77 |.........dfgd..w| +orderer.example.com | 00000010 ed 7a 7d c5 58 d4 74 7d 17 68 d1 a7 a2 89 fd 08 |.z}.X.t}.h......| +orderer.example.com | [b98 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 37 a8 7f d4 d5 17 8a 7a 65 3e ab 40 |0D. 7......ze>.@| +orderer.example.com | 00000010 3e 3c d7 0f 7f a6 fd f2 65 8f d7 e8 b0 f0 b1 90 |><......e.......| +orderer.example.com | 00000020 32 5e 45 13 02 20 17 06 a2 3b dd bb 92 61 e1 50 |2^E.. ...;...a.P| +orderer.example.com | 00000030 f0 a8 2d 00 69 42 4c 32 dd 87 c4 3e 8e ce 6e 51 |..-.iBL2...>..nQ| +orderer.example.com | 00000040 a7 09 a2 65 71 14 |...eq.| +orderer.example.com | [b99 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018ef30 principal evaluation succeeds for identity 0 +orderer.example.com | [b9a 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42018ef30 gate 1513244083581560900 evaluation succeeds +orderer.example.com | [b9b 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [b9c 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [b9d 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [b9e 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [b9f 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [ba0 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [ba1 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [ba2 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [ba3 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [ba4 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [ba5 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [ba6 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [ba7 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [ba8 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [ba9 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [baa 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [bab 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [bac 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [bad 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [bae 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [baf 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [bb0 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [bb1 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [bb2 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [bb3 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [bb4 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [bb5 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [bb6 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [bb7 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [bb8 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [bb9 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [bba 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [bbb 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [bbc 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [bbd 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [bbe 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [bbf 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [bc0 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [bc1 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [bc2 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [bc3 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [bc4 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [bc5 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [bc6 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [bc7 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +orderer.example.com | [bc8 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [bc9 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [bca 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [bcb 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [bcc 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [bcd 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [bce 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [bcf 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [bd0 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [bd1 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [bd2 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [bd3 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [bd4 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [bd5 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [bd6 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [bd7 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [bd8 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [bd9 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [bda 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [bdb 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +orderer.example.com | [bdc 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [bdd 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [bde 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [bdf 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +orderer.example.com | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [be0 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [be1 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [be2 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [be3 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [be4 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [be5 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [be6 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [be7 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -10211,7 +16243,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL orderer.example.com | liPpNxLSsBU= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [749 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [be8 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -10225,7 +16257,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx orderer.example.com | zekLSULI9G2UUYA77A== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [74a 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [be9 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -10239,12 +16271,12 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx orderer.example.com | zekLSULI9G2UUYA77A== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [74b 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [74c 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [74d 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [74e 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [74f 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [750 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [bea 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [beb 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | [bec 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [bed 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [bee 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [bef 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -10259,7 +16291,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq orderer.example.com | VA7fF8MfGA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [751 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [bf0 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -10273,7 +16305,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb orderer.example.com | Xk1Xy2C2aVQjOcr++w== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [752 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [bf1 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -10287,11 +16319,200 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb orderer.example.com | Xk1Xy2C2aVQjOcr++w== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [753 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [754 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [755 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [756 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [757 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [bf2 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [bf3 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [bf4 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [bf5 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [bf6 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [bf7 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [bf8 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [bf9 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0ABC060A1B08011A0608B38BC9D10522...D7EC6FFBFB37B18FE0097AE915C87AB9 +orderer.example.com | [bfa 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 5283948D3A2645488D26EE5C19E63B88F593A7016E26F6B7B62AAE04CEC1EA7F +orderer.example.com | [bfb 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type CONFIG +orderer.example.com | [bfc 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [bfd 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026288 gate 1513244083605662100 evaluation starts +orderer.example.com | [bfe 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026288 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [bff 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026288 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [c00 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +orderer.example.com | KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +orderer.example.com | gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +orderer.example.com | KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +orderer.example.com | iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +orderer.example.com | Tg== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [c01 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026288 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | [c02 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026288 principal evaluation fails +orderer.example.com | [c03 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026288 gate 1513244083605662100 evaluation fails +orderer.example.com | [c04 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026298 gate 1513244083606452200 evaluation starts +orderer.example.com | [c05 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026298 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [c06 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026298 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [c07 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +orderer.example.com | KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +orderer.example.com | gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +orderer.example.com | KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +orderer.example.com | iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +orderer.example.com | Tg== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [c08 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026298 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | [c09 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026298 principal evaluation fails +orderer.example.com | [c0a 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026298 gate 1513244083606452200 evaluation fails +orderer.example.com | [c0b 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262a8 gate 1513244083608139700 evaluation starts +orderer.example.com | [c0c 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262a8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [c0d 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [c0e 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +orderer.example.com | KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +orderer.example.com | gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +orderer.example.com | KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +orderer.example.com | iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +orderer.example.com | Tg== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [c0f 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [c10 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [c11 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262a8 principal matched by identity 0 +orderer.example.com | [c12 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 52 83 94 8d 3a 26 45 48 8d 26 ee 5c 19 e6 3b 88 |R...:&EH.&.\..;.| +orderer.example.com | 00000010 f5 93 a7 01 6e 26 f6 b7 b6 2a ae 04 ce c1 ea 7f |....n&...*......| +orderer.example.com | [c13 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5f bb 39 a1 5f 4d f7 1c 20 53 b2 dc |0D. _.9._M.. S..| +orderer.example.com | 00000010 ee ea ff 5e 3c d3 45 01 64 f9 2f ad 40 94 67 10 |...^<.E.d./.@.g.| +orderer.example.com | 00000020 13 d3 d7 6b 02 20 76 a2 63 11 f5 1f 6f da 5c ce |...k. v.c...o.\.| +orderer.example.com | 00000030 28 8b 07 0c 6f 00 3f cf 08 00 27 47 e2 84 3b 26 |(...o.?...'G..;&| +orderer.example.com | 00000040 72 c9 69 ed e1 b9 |r.i...| +orderer.example.com | [c14 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262a8 principal evaluation succeeds for identity 0 +orderer.example.com | [c15 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262a8 gate 1513244083608139700 evaluation succeeds +orderer.example.com | [c16 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4203d3ac0 1 [0xc42018ea98 0xc42018eb38]}) %!s(*policies.implicitMetaPolicy=&{0xc4203ba9c0 1 [0xc42018ec00]})]} +orderer.example.com | [c17 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [c18 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [c19 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [c1a 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [c1b 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [c1c 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [c1d 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [c1e 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [c1f 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [c20 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [c21 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [c22 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [c23 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [c24 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [c25 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [c26 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [c27 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc4200268a0 gate 1513244083611543300 evaluation starts +orderer.example.com | [c28 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200268a0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [c29 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200268a0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [c2a 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [c2b 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +orderer.example.com | [c2c 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200268a0 principal matched by identity 0 +orderer.example.com | [c2d 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d2 ba f2 a4 c3 1b 91 92 0e 64 66 67 64 a7 0f 77 |.........dfgd..w| +orderer.example.com | 00000010 ed 7a 7d c5 58 d4 74 7d 17 68 d1 a7 a2 89 fd 08 |.z}.X.t}.h......| +orderer.example.com | [c2e 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 37 a8 7f d4 d5 17 8a 7a 65 3e ab 40 |0D. 7......ze>.@| +orderer.example.com | 00000010 3e 3c d7 0f 7f a6 fd f2 65 8f d7 e8 b0 f0 b1 90 |><......e.......| +orderer.example.com | 00000020 32 5e 45 13 02 20 17 06 a2 3b dd bb 92 61 e1 50 |2^E.. ...;...a.P| +orderer.example.com | 00000030 f0 a8 2d 00 69 42 4c 32 dd 87 c4 3e 8e ce 6e 51 |..-.iBL2...>..nQ| +orderer.example.com | 00000040 a7 09 a2 65 71 14 |...eq.| +orderer.example.com | [c2f 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200268a0 principal evaluation succeeds for identity 0 +orderer.example.com | [c30 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc4200268a0 gate 1513244083611543300 evaluation succeeds +orderer.example.com | [c31 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [c32 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [c33 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [c34 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [c35 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [c36 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [c37 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [c38 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [c39 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [c3a 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [c3b 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [c3c 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [c3d 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [c3e 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [c3f 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [c40 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [c41 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [c42 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [c43 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [c44 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [c45 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [c46 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [c47 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [c48 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [c49 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [c4a 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [c4b 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [c4c 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [c4d 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [c4e 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [c4f 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [c50 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [c51 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [c52 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [c53 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [c54 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [c55 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [c56 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [c57 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [c58 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [c59 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [c5a 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [c5b 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [c5c 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [c5d 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [c5e 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [c5f 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +orderer.example.com | [c60 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [c61 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [c62 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [c63 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [c64 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [c65 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [c66 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [c67 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [c68 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [c69 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [c6a 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [c6b 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [c6c 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [c6d 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [c6e 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [c6f 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +orderer.example.com | [c70 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [c71 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [c72 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [c73 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [c74 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [c75 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -10305,7 +16526,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [758 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [c76 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -10318,7 +16539,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [759 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [c77 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -10331,181 +16552,12 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [75a 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [75b 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [75c 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [75d 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [75e 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -orderer.example.com | [75f 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [760 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -orderer.example.com | [761 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [762 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -orderer.example.com | [763 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [764 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -orderer.example.com | [765 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [766 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -orderer.example.com | [767 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [768 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -orderer.example.com | [769 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [76a 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [76b 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [76c 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [76d 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [76e 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [76f 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [770 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | [771 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [772 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | [773 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [774 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | [775 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [776 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [777 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [778 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [779 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [77a 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel -orderer.example.com | [77b 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [77c 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel -orderer.example.com | [77d 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -orderer.example.com | [77e 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | [77f 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -orderer.example.com | [780 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | [781 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [782 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel -orderer.example.com | [783 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -orderer.example.com | [784 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | [785 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -orderer.example.com | [786 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | [787 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -orderer.example.com | [788 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -orderer.example.com | [789 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -orderer.example.com | [78a 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | [78b 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [78c 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | [78d 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -orderer.example.com | [78e 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | [78f 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [790 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | [791 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | [792 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | [793 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | [794 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -orderer.example.com | [795 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | [796 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | [797 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [798 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | [799 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [79a 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [79b 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [79c 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [79d 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [79e 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [79f 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [7a0 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [7a1 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [7a2 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [7a3 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation -orderer.example.com | [7a4 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [7a5 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation -orderer.example.com | [7a6 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [7a7 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation -orderer.example.com | [7a8 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [7a9 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -orderer.example.com | [7aa 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [7ab 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Found message which requested to be isolated, cutting into its own batch -orderer.example.com | [7ac 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] CreateNextBlock.CreateNextBlock.Next.readBlock -> DEBU Read block 0 -orderer.example.com | [7ad 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [7ae 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [7af 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [7b0 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [7b1 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [7b2 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [7b3 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [7b4 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [7b5 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | [7b6 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [7b7 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [7b8 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [7b9 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [7ba 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | [7bb 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [7bc 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [7bd 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [7be 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [7bf 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [7c0 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [7c1 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | [7c2 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | [7c3 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [7c4 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [7c5 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [7c6 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [7c7 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | [7c8 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [7c9 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | [7ca 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | [7cb 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [7cc 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [7cd 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [7ce 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [7cf 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | [7d0 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | [7d1 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | [7d2 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | [7d3 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [7d4 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [7d5 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [7d6 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | [7d7 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [7d8 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [7d9 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [7da 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [7db 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [7dc 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [7dd 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [7de 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [7df 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -orderer.example.com | [7e0 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -orderer.example.com | [7e1 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -orderer.example.com | [7e2 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -orderer.example.com | [7e3 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [7e4 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [7e5 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [7e6 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [7e7 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [7e8 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [7e9 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -orderer.example.com | [7ea 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -orderer.example.com | [7eb 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -orderer.example.com | [7ec 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [7ed 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [7ee 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [7ef 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [7f0 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [7f1 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [7f2 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -orderer.example.com | [7f3 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -orderer.example.com | [7f4 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -orderer.example.com | [7f5 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | [7f6 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [7f7 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [7f8 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [7f9 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [7fa 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [7fb 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -orderer.example.com | [7fc 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -orderer.example.com | [7fd 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -orderer.example.com | [7fe 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -orderer.example.com | [7ff 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [800 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [801 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -orderer.example.com | [802 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -orderer.example.com | [803 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -orderer.example.com | [804 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | [805 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [806 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [807 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [808 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [c78 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [c79 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [c7a 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [c7b 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [c7c 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [c7d 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -10520,7 +16572,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL orderer.example.com | liPpNxLSsBU= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [809 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [c7e 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -10534,7 +16586,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx orderer.example.com | zekLSULI9G2UUYA77A== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [80a 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [c7f 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -10548,12 +16600,12 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx orderer.example.com | zekLSULI9G2UUYA77A== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [80b 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [80c 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [80d 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [80e 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [80f 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [810 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [c80 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [c81 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | [c82 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [c83 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [c84 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [c85 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -10568,7 +16620,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq orderer.example.com | VA7fF8MfGA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [811 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [c86 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -10582,7 +16634,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb orderer.example.com | Xk1Xy2C2aVQjOcr++w== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [812 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [c87 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -10596,11 +16648,198 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb orderer.example.com | Xk1Xy2C2aVQjOcr++w== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [813 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [814 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [815 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [816 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [817 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [c88 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [c89 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [c8a 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [c8c 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [c8d 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e0b8 gate 1513244083633376700 evaluation starts +orderer.example.com | [c8e 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e0b8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [c8f 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e0b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [c90 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +orderer.example.com | KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +orderer.example.com | gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +orderer.example.com | KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +orderer.example.com | iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +orderer.example.com | Tg== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [c91 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e0b8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | [c92 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e0b8 principal evaluation fails +orderer.example.com | [c93 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e0b8 gate 1513244083633376700 evaluation fails +orderer.example.com | [c94 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e1b8 gate 1513244083635094200 evaluation starts +orderer.example.com | [c95 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e1b8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [c96 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e1b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [c97 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +orderer.example.com | KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +orderer.example.com | gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +orderer.example.com | KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +orderer.example.com | iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +orderer.example.com | Tg== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [c98 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e1b8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | [c99 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e1b8 principal evaluation fails +orderer.example.com | [c9a 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e1b8 gate 1513244083635094200 evaluation fails +orderer.example.com | [c9b 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e390 gate 1513244083636257000 evaluation starts +orderer.example.com | [c9c 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e390 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [c9d 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e390 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [c9e 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +orderer.example.com | KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +orderer.example.com | gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +orderer.example.com | KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +orderer.example.com | iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +orderer.example.com | Tg== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [c9f 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [ca0 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [ca1 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e390 principal matched by identity 0 +orderer.example.com | [ca2 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 52 83 94 8d 3a 26 45 48 8d 26 ee 5c 19 e6 3b 88 |R...:&EH.&.\..;.| +orderer.example.com | 00000010 f5 93 a7 01 6e 26 f6 b7 b6 2a ae 04 ce c1 ea 7f |....n&...*......| +orderer.example.com | [ca3 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5f bb 39 a1 5f 4d f7 1c 20 53 b2 dc |0D. _.9._M.. S..| +orderer.example.com | 00000010 ee ea ff 5e 3c d3 45 01 64 f9 2f ad 40 94 67 10 |...^<.E.d./.@.g.| +orderer.example.com | 00000020 13 d3 d7 6b 02 20 76 a2 63 11 f5 1f 6f da 5c ce |...k. v.c...o.\.| +orderer.example.com | 00000030 28 8b 07 0c 6f 00 3f cf 08 00 27 47 e2 84 3b 26 |(...o.?...'G..;&| +orderer.example.com | 00000040 72 c9 69 ed e1 b9 |r.i...| +orderer.example.com | [ca4 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e390 principal evaluation succeeds for identity 0 +orderer.example.com | [ca5 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e390 gate 1513244083636257000 evaluation succeeds +orderer.example.com | [ca6 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4203d3ac0 1 [0xc42018ea98 0xc42018eb38]}) %!s(*policies.implicitMetaPolicy=&{0xc4203ba9c0 1 [0xc42018ec00]})]} +orderer.example.com | [ca7 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [ca8 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [ca9 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [caa 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [cab 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [cac 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [cad 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [cae 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [caf 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [cb0 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [cb1 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [cb2 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [cb3 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [cb4 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [cb5 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [cb6 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [cb7 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42018ee80 gate 1513244083639876400 evaluation starts +orderer.example.com | [cb8 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018ee80 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [cb9 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018ee80 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [cba 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [cbb 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +orderer.example.com | [cbc 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018ee80 principal matched by identity 0 +orderer.example.com | [cbd 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d2 ba f2 a4 c3 1b 91 92 0e 64 66 67 64 a7 0f 77 |.........dfgd..w| +orderer.example.com | 00000010 ed 7a 7d c5 58 d4 74 7d 17 68 d1 a7 a2 89 fd 08 |.z}.X.t}.h......| +orderer.example.com | [cbe 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 37 a8 7f d4 d5 17 8a 7a 65 3e ab 40 |0D. 7......ze>.@| +orderer.example.com | 00000010 3e 3c d7 0f 7f a6 fd f2 65 8f d7 e8 b0 f0 b1 90 |><......e.......| +orderer.example.com | 00000020 32 5e 45 13 02 20 17 06 a2 3b dd bb 92 61 e1 50 |2^E.. ...;...a.P| +orderer.example.com | 00000030 f0 a8 2d 00 69 42 4c 32 dd 87 c4 3e 8e ce 6e 51 |..-.iBL2...>..nQ| +orderer.example.com | 00000040 a7 09 a2 65 71 14 |...eq.| +orderer.example.com | [cbf 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018ee80 principal evaluation succeeds for identity 0 +orderer.example.com | [cc0 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42018ee80 gate 1513244083639876400 evaluation succeeds +orderer.example.com | [cc1 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [cc2 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [cc3 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [cc4 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [cc5 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [cc6 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [cc7 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [cc8 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [cc9 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [c8b 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG +orderer.example.com | [cca 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [ccb 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [ccc 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [ccd 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [cce 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [ccf 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [cd0 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [cd1 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [cd3 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [cd4 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [cd5 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [cd6 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [cd7 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [cd8 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [cd9 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [cd2 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [cdb 12-14 09:34:43.64 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [cda 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [cdc 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [cdd 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [cde 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [cdf 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [ce0 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [ce1 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [ce2 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [ce3 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [ce4 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [ce5 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [ce6 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [ce7 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [ce8 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [ce9 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [cea 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [ceb 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [cec 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [ced 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [cee 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [cef 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [cf0 12-14 09:34:43.64 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [cf1 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +orderer.example.com | [cf2 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [cf3 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [cf4 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [cf5 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [cf6 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [cf7 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [cf8 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [cf9 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [cfa 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [cfb 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [cfc 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [cfd 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [cfe 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [cff 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [d00 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [d01 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [d02 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [d03 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +orderer.example.com | [d04 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [d05 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [d06 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [d07 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [d08 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [d09 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -10614,7 +16853,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [818 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [d0a 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -10627,7 +16866,7 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [819 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [d0b 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -10640,115 +16879,27 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [81a 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [81b 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [81c 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [81d 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [81e 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -orderer.example.com | [81f 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [820 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -orderer.example.com | [821 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [822 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -orderer.example.com | [823 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [824 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -orderer.example.com | [825 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [826 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -orderer.example.com | [827 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [828 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -orderer.example.com | [829 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [82a 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [82b 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [82c 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [82d 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [82e 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [82f 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [830 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | [831 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [832 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | [833 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [834 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | [835 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [836 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [837 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [838 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [839 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -orderer.example.com | [83a 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -orderer.example.com | [83b 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -orderer.example.com | [83c 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | [83d 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -orderer.example.com | [83e 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | [83f 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -orderer.example.com | [840 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | [841 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -orderer.example.com | [842 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | [843 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [844 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel -orderer.example.com | [845 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [846 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel -orderer.example.com | [847 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [848 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel -orderer.example.com | [849 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -orderer.example.com | [84a 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | [84b 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [84c 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | [84d 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [84e 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | [84f 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -orderer.example.com | [850 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | [851 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [852 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | [853 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | [854 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -orderer.example.com | [855 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | [856 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | [857 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | [858 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | [859 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [85a 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [85b 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [85c 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [85d 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [85e 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [85f 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [860 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [861 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [862 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [863 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation -orderer.example.com | [864 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [865 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation -orderer.example.com | [866 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [867 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation -orderer.example.com | [868 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [869 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -orderer.example.com | [86a 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [86b 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate -> DEBU Initializing chain businesschannel at: /var/hyperledger/production/orderer/chain_businesschannel -orderer.example.com | [86c 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.newChain -> DEBU Initialized to block height 18446744073709551615 with hash -orderer.example.com | [86d 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] WriteBlock.Commit.newChain.Append.writeBlock -> DEBU Wrote block 0 -orderer.example.com | [86e 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.readBlock -> DEBU Read block 0 -orderer.example.com | [86f 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.Commit.newChain.newChainSupport -> DEBU [channel: businesschannel] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=1): -orderer.example.com | [870 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.Commit.newChain -> INFO Created and starting new chain businesschannel -orderer.example.com | [871 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc4202e2820 chain:0xc4202e2d20 cutter:0xc4202d97c0 filters:0xc4202e2880 signer:0x1285450 lastConfig:0 lastConfigSeq:0} -orderer.example.com | [872 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} -orderer.example.com | [873 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [874 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [875 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [876 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [877 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...C47B95147CD8029A8EC8833F42B9E537 -orderer.example.com | [878 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: CD44DAF7FC111E81701F3CBB4DCB1CF2095DEC002521EB2C4B88D29C0FA4BB62 -orderer.example.com | [879 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [87a 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [87b 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 -orderer.example.com | [87c 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [87d 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [87e 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...C47B95147CD8029A8EC8833F42B9E537 -orderer.example.com | [87f 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 9B0519270D0FEFE396887AADD6D4655D9FFE9E920A910A95B04FB7F50D579213 -orderer.example.com | [880 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] WriteBlock.Append.writeBlock -> DEBU Wrote block 1 -orderer.example.com | [881 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: testchainid] Wrote block 1 -orderer.example.com | [882 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [883 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263c0 gate 1512458983261164300 evaluation starts -orderer.example.com | [884 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263c0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [885 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263c0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [886 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [d0c 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [d0d 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [d0e 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [d0f 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [d10 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [d11 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 +orderer.example.com | +/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN +orderer.example.com | wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 +orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL +orderer.example.com | liPpNxLSsBU= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [d12 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -10762,36 +16913,472 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx orderer.example.com | zekLSULI9G2UUYA77A== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [887 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [888 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [889 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263c0 principal matched by identity 0 -orderer.example.com | [88a 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 03 88 f2 3a ff 73 b5 80 c8 74 6a d1 44 94 c0 be |...:.s...tj.D...| -orderer.example.com | 00000010 89 19 b4 5a 26 23 14 df ae 49 f3 fd ec ed dc 7a |...Z&#...I.....z| -orderer.example.com | [88b 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 50 59 86 96 72 0f e4 5d 1a da 0c a6 |0D. PY..r..]....| -orderer.example.com | 00000010 be c4 a2 d6 91 91 4f 69 e1 24 0c 7a de 57 98 48 |......Oi.$.z.W.H| -orderer.example.com | 00000020 a1 04 e1 d1 02 20 11 4e 4b df e0 fb 24 7d 30 ef |..... .NK...$}0.| -orderer.example.com | 00000030 03 87 99 d3 b7 05 e3 d8 9d 7c 7b 43 d3 4a fe 28 |.........|{C.J.(| -orderer.example.com | 00000040 0a 43 3a 9f 96 48 |.C:..H| -orderer.example.com | [88c 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263c0 principal evaluation succeeds for identity 0 -orderer.example.com | [88d 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263c0 gate 1512458983261164300 evaluation succeeds -orderer.example.com | [88e 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bf20 1 [0xc420026cb8 0xc420026d60]}) %!s(*policies.implicitMetaPolicy=&{0xc42037c280 1 [0xc420026dd8]})]} -orderer.example.com | [88f 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420240ca0) start: > stop: > -orderer.example.com | [890 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 0 -orderer.example.com | [891 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420240ca0) -orderer.example.com | [892 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc420240ca0), waiting for new SeekInfo -orderer.example.com | [893 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [894 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [895 12-05 07:29:43.27 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [896 12-05 07:29:46.54 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [897 12-05 07:29:46.54 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop -orderer.example.com | [898 12-05 07:29:49.62 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [899 12-05 07:29:49.62 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [89a 12-05 07:29:49.62 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [89b 12-05 07:29:49.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [89c 12-05 07:29:49.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026430 gate 1512458989628795000 evaluation starts -orderer.example.com | [89d 12-05 07:29:49.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026430 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [89e 12-05 07:29:49.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026430 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b6741774942416749514a674259424b4f4873742f2f6d66546a70557731677a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d546c61467730794e7a45784d6a6b784d7a55334d546c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414532695a455549764c674b414e736c474b52724473513637505a75764d426c44340a733058687a6a6c41724b6d745345477a6872314f3433494b7a34545238423376697954306a4f364c31525644556774644373483541614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167656a6a5a342b6e54587946330a786931744b4933444c3856796c482b76506b45464f4c6d6752533668712f6777436759494b6f5a497a6a304541774944534141775251496841504943547366350a59723262764752673247383549766567674f764b4d362b334979686a53503445337848324169425734516a4344745a6c5979474b3576696c465237687a655a560a6962486c5256315669467148627a463377773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [89f 12-05 07:29:49.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [d13 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [d14 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [d15 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | [d16 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [d17 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [d18 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [d19 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +orderer.example.com | RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +orderer.example.com | kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +orderer.example.com | VA7fF8MfGA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [d1a 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [d1b 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [d1c 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [d1d 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [d1e 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [d1f 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Found message which requested to be isolated, cutting into its own batch +orderer.example.com | [d20 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | [d21 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11945] +orderer.example.com | [d22 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13751], Going to peek [8] bytes +orderer.example.com | [d23 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13749], placementInfo={fileNum=[0], startOffset=[11945], bytesOffset=[11947]} +orderer.example.com | [d24 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [d25 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | [d26 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | [d27 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [d28 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [d29 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [d2a 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [d2b 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | [d2c 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | [d2d 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [d2e 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | [d2f 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [d30 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [d31 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [d32 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [d33 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [d34 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [d35 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [d36 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [d37 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [d38 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [d39 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [d3a 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [d3b 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [d3c 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [d3d 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [d3e 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [d3f 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [d40 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [d41 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [d42 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [d43 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | [d44 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | [d45 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | [d46 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | [d47 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [d48 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [d49 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [d4a 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [d4b 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [d4c 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [d4d 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [d4e 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [d4f 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [d50 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [d51 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [d52 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [d53 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [d54 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [d55 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [d56 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [d57 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [d58 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [d59 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [d5a 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420026578 gate 1513244083669574500 evaluation starts +orderer.example.com | [d5b 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026578 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [d5c 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026578 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [d5d 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [d5e 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +orderer.example.com | [d5f 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026578 principal matched by identity 0 +orderer.example.com | [d60 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d2 ba f2 a4 c3 1b 91 92 0e 64 66 67 64 a7 0f 77 |.........dfgd..w| +orderer.example.com | 00000010 ed 7a 7d c5 58 d4 74 7d 17 68 d1 a7 a2 89 fd 08 |.z}.X.t}.h......| +orderer.example.com | [d61 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 37 a8 7f d4 d5 17 8a 7a 65 3e ab 40 |0D. 7......ze>.@| +orderer.example.com | 00000010 3e 3c d7 0f 7f a6 fd f2 65 8f d7 e8 b0 f0 b1 90 |><......e.......| +orderer.example.com | 00000020 32 5e 45 13 02 20 17 06 a2 3b dd bb 92 61 e1 50 |2^E.. ...;...a.P| +orderer.example.com | 00000030 f0 a8 2d 00 69 42 4c 32 dd 87 c4 3e 8e ce 6e 51 |..-.iBL2...>..nQ| +orderer.example.com | 00000040 a7 09 a2 65 71 14 |...eq.| +orderer.example.com | [d62 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026578 principal evaluation succeeds for identity 0 +orderer.example.com | [d63 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420026578 gate 1513244083669574500 evaluation succeeds +orderer.example.com | [d64 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [d65 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [d66 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [d67 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [d68 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [d69 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [d6a 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [d6b 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [d6c 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [d6d 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [d6e 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [d6f 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [d70 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [d71 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [d72 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [d73 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [d74 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [d75 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [d76 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [d77 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [d78 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [d79 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [d7a 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [d7b 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [d7c 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [d7d 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [d7e 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [d7f 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [d80 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [d81 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [d82 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [d83 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [d84 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [d85 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [d86 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [d87 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [d88 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [d89 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [d8a 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [d8b 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [d8c 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [d8d 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [d8e 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [d8f 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [d90 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +orderer.example.com | [d91 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [d92 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [d93 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [d94 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [d95 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [d96 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [d97 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [d98 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [d99 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [d9a 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [d9b 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [d9c 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [d9d 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [d9e 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [d9f 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [da0 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [da1 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [da2 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +orderer.example.com | [da3 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [da4 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [da5 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [da6 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [da7 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [da8 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +orderer.example.com | h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +orderer.example.com | FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [da9 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [daa 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [dab 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [dac 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [dad 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [dae 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [daf 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [db0 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 +orderer.example.com | +/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN +orderer.example.com | wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 +orderer.example.com | NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL +orderer.example.com | liPpNxLSsBU= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [db1 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [db2 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [db3 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [db4 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | [db5 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [db6 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [db7 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [db8 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +orderer.example.com | RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +orderer.example.com | kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +orderer.example.com | 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +orderer.example.com | VA7fF8MfGA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [db9 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [dba 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [dbb 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [dbc 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [dbd 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [dbe 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [dbf 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | [dc0 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [dc1 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | [dc2 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [dc3 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +orderer.example.com | [dc4 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [dc5 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [dc6 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [dc7 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [dc8 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [dc9 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | [dca 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [dcb 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | [dcc 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [dcd 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | [dce 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [dcf 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | [dd0 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [dd1 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | [dd2 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [dd3 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | [dd4 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [dd5 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [dd6 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [dd7 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [dd8 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [dd9 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [dda 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +orderer.example.com | [ddb 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | [ddc 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | [ddd 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | [dde 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [ddf 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | [de0 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +orderer.example.com | [de1 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | [de2 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [de3 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | [de4 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [de5 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | [de6 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | [de7 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | [de8 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +orderer.example.com | [de9 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | [dea 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +orderer.example.com | [deb 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | [dec 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +orderer.example.com | [ded 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | [dee 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +orderer.example.com | [def 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | [df0 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [df1 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +orderer.example.com | [df2 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [df3 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +orderer.example.com | [df4 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +orderer.example.com | [df5 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | [df6 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [df7 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +orderer.example.com | [df8 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +orderer.example.com | [df9 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | [dfa 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [dfb 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [dfc 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [dfd 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [dfe 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [dff 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [e00 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [e01 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | [e02 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [e03 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [e04 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +orderer.example.com | [e05 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [e06 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +orderer.example.com | [e07 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | [e08 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +orderer.example.com | [e09 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [e0a 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +orderer.example.com | [e0b 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [e0c 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42017c5a0 chain:0xc42017d3e0 cutter:0xc420137770 filters:0xc42017cc20 signer:0x128b4a8 lastConfig:1 lastConfigSeq:2} +orderer.example.com | [e0d 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +orderer.example.com | [e0e 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [e0f 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [e10 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [e11 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [e12 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...D05E242988BA6BCDB166A5B4BB02E6D6 +orderer.example.com | [e13 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 4FD6FFFB80F928FF3326F8C91CF66EE998C8B1D7F91CF91565C529CC5DB502C5 +orderer.example.com | [e14 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 2 to 3, setting lastConfig from 1 to 2 +orderer.example.com | [e15 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [e16 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [e17 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | [e18 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [e19 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [e1a 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFF050A0A4F7264657265724D53...D05E242988BA6BCDB166A5B4BB02E6D6 +orderer.example.com | [e1b 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 2014245A08D1F6E439E33B3B090E6023FCEF21E3F2158618E8FF271B66D274C2 +orderer.example.com | [e1c 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xa5, 0x7a, 0x12, 0x2e, 0x19, 0xe9, 0xc0, 0x3a, 0xc1, 0x3e, 0xe4, 0x92, 0xd4, 0xc9, 0x23, 0xb3, 0xc, 0x4c, 0x41, 0x28, 0x7b, 0x58, 0x93, 0x4c, 0x9f, 0x41, 0x25, 0x50, 0x7f, 0xad, 0x55, 0xe5} txOffsets= +orderer.example.com | txId= locPointer=offset=70, bytesLength=11979 +orderer.example.com | ] +orderer.example.com | [e1d 12-14 09:34:43.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39504], isChainEmpty=[false], lastBlockNumber=[2] +orderer.example.com | [e1e 12-14 09:34:43.70 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 2 +orderer.example.com | [e1f 12-14 09:34:46.49 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [e20 12-14 09:34:46.49 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +orderer.example.com | [e21 12-14 09:34:46.49 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [e22 12-14 09:34:46.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [e23 12-14 09:34:46.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026898 gate 1513244086499102100 evaluation starts +orderer.example.com | [e24 12-14 09:34:46.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026898 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [e25 12-14 09:34:46.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026898 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b6741774942416749514a674259424b4f4873742f2f6d66546a70557731677a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d546c61467730794e7a45784d6a6b784d7a55334d546c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414532695a455549764c674b414e736c474b52724473513637505a75764d426c44340a733058687a6a6c41724b6d745345477a6872314f3433494b7a34545238423376697954306a4f364c31525644556774644373483541614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167656a6a5a342b6e54587946330a786931744b4933444c3856796c482b76506b45464f4c6d6752533668712f6777436759494b6f5a497a6a304541774944534141775251496841504943547366350a59723262764752673247383549766567674f764b4d362b334979686a53503445337848324169425734516a4344745a6c5979474b3576696c465237687a655a560a6962486c5256315669467148627a463377773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [e26 12-14 09:34:46.49 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAb+gAwIBAgIQJgBYBKOHst//mfTjpUw1gzAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -10805,28 +17392,58 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | Yr2bvGRg2G85IveggOvKM6+3IyhjSP4E3xH2AiBW4QjCDtZlYyGK5vilFR7hzeZV orderer.example.com | ibHlRV1ViFqHbzF3ww== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [8a0 12-05 07:29:49.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [8a1 12-05 07:29:49.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [8a2 12-05 07:29:49.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026430 principal matched by identity 0 -orderer.example.com | [8a3 12-05 07:29:49.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 83 f9 42 39 07 0a 61 da 52 59 01 f4 47 05 aa 0d |..B9..a.RY..G...| -orderer.example.com | 00000010 7c 4c 64 9d b7 a1 84 d6 4f 3d ac 71 19 8f 28 05 ||Ld.....O=.q..(.| -orderer.example.com | [8a4 12-05 07:29:49.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 22 07 d4 04 d1 36 78 56 1d 9c 2b ad |0D. "....6xV..+.| -orderer.example.com | 00000010 f3 e4 0f d0 c7 aa 1b 04 a2 26 30 d2 7a 5f b4 35 |.........&0.z_.5| -orderer.example.com | 00000020 43 33 6e ae 02 20 11 40 e5 42 2d d4 62 7d 97 8c |C3n.. .@.B-.b}..| -orderer.example.com | 00000030 2e cb ac 00 01 21 9b 6a 23 9f 2b 81 c1 a8 ed a4 |.....!.j#.+.....| -orderer.example.com | 00000040 93 99 fc 65 ab 33 |...e.3| -orderer.example.com | [8a5 12-05 07:29:49.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026430 principal evaluation succeeds for identity 0 -orderer.example.com | [8a6 12-05 07:29:49.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026430 gate 1512458989628795000 evaluation succeeds -orderer.example.com | [8a7 12-05 07:29:49.63 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bf20 1 [0xc420026cb8 0xc420026d60]}) %!s(*policies.implicitMetaPolicy=&{0xc42037c280 1 [0xc420026dd8]})]} -orderer.example.com | [8a8 12-05 07:29:49.63 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420291c60) start: > stop: > -orderer.example.com | [8a9 12-05 07:29:50.05 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [8aa 12-05 07:29:50.05 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [8ab 12-05 07:29:50.05 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [8ac 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [8ad 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026458 gate 1512458990061017100 evaluation starts -orderer.example.com | [8ae 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026458 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [8af 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026458 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a6a6979485654735367657839497769562f61486c3477436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a49775768634e4d6a63784d5449354d544d314e7a49770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a6c3744487249565449674e59516d764637775167324d4943796a79444d2f0a6935594f6d782b645a4d714b64323233714f724d76734d6970344a6d7937494e2b4b79544642676e625458736f627059306966305865716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149457864556b344e545875760a6c687665424d722f6b4c51424c745a6d4f6b63587055334e38634770303872384d416f4743437147534d343942414d43413063414d455143494367765a2f526a0a4369426d6b4c476939544a41492b6150586a7a6c577a6d7779714352454b582f3838684c416942574e476e522f2b44716b63654943466877315a39676b2f7a6e0a67526a553271576f667670343042625336513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [8b0 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [e27 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026898 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +orderer.example.com | [e28 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026898 principal evaluation fails +orderer.example.com | [e29 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026898 gate 1513244086499102100 evaluation fails +orderer.example.com | [e2a 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200268a8 gate 1513244086500594200 evaluation starts +orderer.example.com | [e2b 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200268a8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [e2c 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200268a8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b6741774942416749514a674259424b4f4873742f2f6d66546a70557731677a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d546c61467730794e7a45784d6a6b784d7a55334d546c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414532695a455549764c674b414e736c474b52724473513637505a75764d426c44340a733058687a6a6c41724b6d745345477a6872314f3433494b7a34545238423376697954306a4f364c31525644556774644373483541614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167656a6a5a342b6e54587946330a786931744b4933444c3856796c482b76506b45464f4c6d6752533668712f6777436759494b6f5a497a6a304541774944534141775251496841504943547366350a59723262764752673247383549766567674f764b4d362b334979686a53503445337848324169425734516a4344745a6c5979474b3576696c465237687a655a560a6962486c5256315669467148627a463377773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [e2d 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQJgBYBKOHst//mfTjpUw1gzAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MTlaFw0yNzExMjkxMzU3MTla +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE2iZEUIvLgKANslGKRrDsQ67PZuvMBlD4 +orderer.example.com | s0XhzjlArKmtSEGzhr1O43IKz4TR8B3viyT0jO6L1RVDUgtdCsH5AaNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgejjZ4+nTXyF3 +orderer.example.com | xi1tKI3DL8VylH+vPkEFOLmgRS6hq/gwCgYIKoZIzj0EAwIDSAAwRQIhAPICTsf5 +orderer.example.com | Yr2bvGRg2G85IveggOvKM6+3IyhjSP4E3xH2AiBW4QjCDtZlYyGK5vilFR7hzeZV +orderer.example.com | ibHlRV1ViFqHbzF3ww== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [e2e 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | [e2f 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [e30 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200268a8 principal matched by identity 0 +orderer.example.com | [e31 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 a7 24 67 7e e2 a0 2e 73 be 5f 82 24 ed 32 de db |.$g~...s._.$.2..| +orderer.example.com | 00000010 95 5c a7 d7 3d 8b 16 35 4c 86 04 cf 70 da fb 9a |.\..=..5L...p...| +orderer.example.com | [e32 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 a0 55 9c 9d f4 86 69 0c 85 48 dc |0E.!..U....i..H.| +orderer.example.com | 00000010 be 85 b2 62 9e a3 c1 c6 a6 27 96 42 b7 ea 09 0e |...b.....'.B....| +orderer.example.com | 00000020 8e 41 0b 57 0b 02 20 65 d2 d4 fe d4 29 a8 62 09 |.A.W.. e....).b.| +orderer.example.com | 00000030 61 92 11 62 a7 48 7d 40 d5 bb a2 13 d7 10 9f ec |a..b.H}@........| +orderer.example.com | 00000040 d6 3e 45 09 3f dd 69 |.>E.?.i| +orderer.example.com | [e33 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200268a8 principal evaluation succeeds for identity 0 +orderer.example.com | [e34 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200268a8 gate 1513244086500594200 evaluation succeeds +orderer.example.com | [e35 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b600 1 [0xc420026660]}) %!s(*policies.implicitMetaPolicy=&{0xc420312280 1 [0xc420026710 0xc4200267b0]})]} +orderer.example.com | [e36 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc42088b800) start: > stop: > +orderer.example.com | [e37 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | [e38 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11945] +orderer.example.com | [e39 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27559], Going to peek [8] bytes +orderer.example.com | [e3a 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13749], placementInfo={fileNum=[0], startOffset=[11945], bytesOffset=[11947]} +orderer.example.com | [e3b 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42088b800) +orderer.example.com | [e3c 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +orderer.example.com | [e3d 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25696] +orderer.example.com | [e3e 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13808], Going to peek [8] bytes +orderer.example.com | [e3f 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13806], placementInfo={fileNum=[0], startOffset=[25696], bytesOffset=[25698]} +orderer.example.com | [e40 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42088b800) +orderer.example.com | [e41 12-14 09:34:46.96 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [e42 12-14 09:34:46.96 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +orderer.example.com | [e43 12-14 09:34:46.96 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [e44 12-14 09:34:46.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [e45 12-14 09:34:46.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e1b8 gate 1513244086965834000 evaluation starts +orderer.example.com | [e46 12-14 09:34:46.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e1b8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [e47 12-14 09:34:46.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e1b8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a6a6979485654735367657839497769562f61486c3477436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a49775768634e4d6a63784d5449354d544d314e7a49770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a6c3744487249565449674e59516d764637775167324d4943796a79444d2f0a6935594f6d782b645a4d714b64323233714f724d76734d6970344a6d7937494e2b4b79544642676e625458736f627059306966305865716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149457864556b344e545875760a6c687665424d722f6b4c51424c745a6d4f6b63587055334e38634770303872384d416f4743437147534d343942414d43413063414d455143494367765a2f526a0a4369426d6b4c476939544a41492b6150586a7a6c577a6d7779714352454b582f3838684c416942574e476e522f2b44716b63654943466877315a39676b2f7a6e0a67526a553271576f667670343042625336513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [e48 12-14 09:34:46.97 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAcCgAwIBAgIRAJjiyHVTsSgex9IwiV/aHl4wCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -10840,13 +17457,13 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | CiBmkLGi9TJAI+aPXjzlWzmwyqCREKX/88hLAiBWNGnR/+DqkceICFhw1Z9gk/zn orderer.example.com | gRjU2qWofvp40BbS6Q== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [8b1 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026458 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | [8b2 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026458 principal evaluation fails -orderer.example.com | [8b3 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026458 gate 1512458990061017100 evaluation fails -orderer.example.com | [8b4 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026468 gate 1512458990063399700 evaluation starts -orderer.example.com | [8b5 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026468 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [8b6 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026468 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a6a6979485654735367657839497769562f61486c3477436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a49775768634e4d6a63784d5449354d544d314e7a49770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a6c3744487249565449674e59516d764637775167324d4943796a79444d2f0a6935594f6d782b645a4d714b64323233714f724d76734d6970344a6d7937494e2b4b79544642676e625458736f627059306966305865716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149457864556b344e545875760a6c687665424d722f6b4c51424c745a6d4f6b63587055334e38634770303872384d416f4743437147534d343942414d43413063414d455143494367765a2f526a0a4369426d6b4c476939544a41492b6150586a7a6c577a6d7779714352454b582f3838684c416942574e476e522f2b44716b63654943466877315a39676b2f7a6e0a67526a553271576f667670343042625336513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [8b7 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [e49 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e1b8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +orderer.example.com | [e4a 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e1b8 principal evaluation fails +orderer.example.com | [e4b 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e1b8 gate 1513244086965834000 evaluation fails +orderer.example.com | [e4c 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e390 gate 1513244086986415900 evaluation starts +orderer.example.com | [e4d 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e390 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [e4e 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e390 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a6a6979485654735367657839497769562f61486c3477436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a49775768634e4d6a63784d5449354d544d314e7a49770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a6c3744487249565449674e59516d764637775167324d4943796a79444d2f0a6935594f6d782b645a4d714b64323233714f724d76734d6970344a6d7937494e2b4b79544642676e625458736f627059306966305865716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149457864556b344e545875760a6c687665424d722f6b4c51424c745a6d4f6b63587055334e38634770303872384d416f4743437147534d343942414d43413063414d455143494367765a2f526a0a4369426d6b4c476939544a41492b6150586a7a6c577a6d7779714352454b582f3838684c416942574e476e522f2b44716b63654943466877315a39676b2f7a6e0a67526a553271576f667670343042625336513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [e4f 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAcCgAwIBAgIRAJjiyHVTsSgex9IwiV/aHl4wCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -10860,28 +17477,58 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | CiBmkLGi9TJAI+aPXjzlWzmwyqCREKX/88hLAiBWNGnR/+DqkceICFhw1Z9gk/zn orderer.example.com | gRjU2qWofvp40BbS6Q== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [8b8 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | [8b9 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [8ba 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026468 principal matched by identity 0 -orderer.example.com | [8bb 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 aa 38 9b f9 bb 68 53 80 8a df fb 94 89 e9 05 15 |.8...hS.........| -orderer.example.com | 00000010 a3 34 41 ec 5f 02 5e e0 df 80 30 6d 40 ac 6e ba |.4A._.^...0m@.n.| -orderer.example.com | [8bc 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c4 c7 08 13 7a 19 f2 7f 94 8b 60 |0E.!.....z.....`| -orderer.example.com | 00000010 39 f2 c8 48 ef 9d b0 5d 10 31 9e 53 b5 da 68 5c |9..H...].1.S..h\| -orderer.example.com | 00000020 6f 06 d8 a7 a2 02 20 17 bc 75 3d 2e 3f 6b 99 e1 |o..... ..u=.?k..| -orderer.example.com | 00000030 d2 b0 c3 9f b4 e3 6d f8 35 1e 72 52 82 5f 42 44 |......m.5.rR._BD| -orderer.example.com | 00000040 41 e5 ed 5f 81 57 1f |A.._.W.| -orderer.example.com | [8bd 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026468 principal evaluation succeeds for identity 0 -orderer.example.com | [8be 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026468 gate 1512458990063399700 evaluation succeeds -orderer.example.com | [8bf 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bf20 1 [0xc420026cb8 0xc420026d60]}) %!s(*policies.implicitMetaPolicy=&{0xc42037c280 1 [0xc420026dd8]})]} -orderer.example.com | [8c0 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc4200b8ce0) start: > stop: > -orderer.example.com | [8c1 12-05 07:29:50.24 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [8c2 12-05 07:29:50.24 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [8c3 12-05 07:29:50.24 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [8c4 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [8c5 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026498 gate 1512458990250418300 evaluation starts -orderer.example.com | [8c6 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026498 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [8c7 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026498 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f564e5762346d2f4b453871576e6273356f4e43584577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a49775768634e4d6a63784d5449354d544d314e7a49770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414246756543656a666b4450505266766b444b534d64772b4844423636426c772b0a65323678755664426d316d3156685a416673495347713941715a683554595365415763696339554a44704d3641463475597952573851536a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149457864556b344e545875760a6c687665424d722f6b4c51424c745a6d4f6b63587055334e38634770303872384d416f4743437147534d343942414d43413063414d45514349437854566d75760a3835744c5633494f627979416a4d464a444f59395a527647364a72466b3649702b354932416941743839735957526c6c30564a6e344c4539536e714c47796e780a6b38653575635a334a64366b457737366d413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [8c8 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [e50 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e390 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +orderer.example.com | [e51 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e390 principal evaluation fails +orderer.example.com | [e52 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e390 gate 1513244086986415900 evaluation fails +orderer.example.com | [e53 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e3a0 gate 1513244086988478200 evaluation starts +orderer.example.com | [e54 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e3a0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [e55 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e3a0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a6a6979485654735367657839497769562f61486c3477436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a49775768634e4d6a63784d5449354d544d314e7a49770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a6c3744487249565449674e59516d764637775167324d4943796a79444d2f0a6935594f6d782b645a4d714b64323233714f724d76734d6970344a6d7937494e2b4b79544642676e625458736f627059306966305865716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149457864556b344e545875760a6c687665424d722f6b4c51424c745a6d4f6b63587055334e38634770303872384d416f4743437147534d343942414d43413063414d455143494367765a2f526a0a4369426d6b4c476939544a41492b6150586a7a6c577a6d7779714352454b582f3838684c416942574e476e522f2b44716b63654943466877315a39676b2f7a6e0a67526a553271576f667670343042625336513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [e56 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJjiyHVTsSgex9IwiV/aHl4wCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzIwWhcNMjcxMTI5MTM1NzIw +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJl7DHrIVTIgNYQmvF7wQg2MICyjyDM/ +orderer.example.com | i5YOmx+dZMqKd223qOrMvsMip4Jmy7IN+KyTFBgnbTXsobpY0if0XeqjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIExdUk4NTXuv +orderer.example.com | lhveBMr/kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICgvZ/Rj +orderer.example.com | CiBmkLGi9TJAI+aPXjzlWzmwyqCREKX/88hLAiBWNGnR/+DqkceICFhw1Z9gk/zn +orderer.example.com | gRjU2qWofvp40BbS6Q== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [e57 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | [e58 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [e59 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e3a0 principal matched by identity 0 +orderer.example.com | [e5a 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 38 3a 2c 50 b1 f4 a8 af 47 15 93 f0 6c e3 e4 7e |8:,P....G...l..~| +orderer.example.com | 00000010 87 d5 86 21 41 0b 6a a6 7a d4 68 12 d9 0e 22 17 |...!A.j.z.h...".| +orderer.example.com | [e5b 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8c 2e a7 96 f3 d9 0c 79 24 94 9b |0E.!........y$..| +orderer.example.com | 00000010 b1 dc c8 c8 ac 9f 65 8b 6e cf fc 9c fb 7f 08 6d |......e.n......m| +orderer.example.com | 00000020 4d 5b c4 be ba 02 20 60 4e bf a0 cf 57 0c 34 7b |M[.... `N...W.4{| +orderer.example.com | 00000030 b6 8c 3d 94 13 f2 1e 77 f7 e6 8f e8 90 d4 e9 12 |..=....w........| +orderer.example.com | 00000040 70 f7 83 98 52 e8 1d |p...R..| +orderer.example.com | [e5c 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e3a0 principal evaluation succeeds for identity 0 +orderer.example.com | [e5d 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e3a0 gate 1513244086988478200 evaluation succeeds +orderer.example.com | [e5e 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b600 1 [0xc420026660]}) %!s(*policies.implicitMetaPolicy=&{0xc420312280 1 [0xc420026710 0xc4200267b0]})]} +orderer.example.com | [e5f 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420a89be0) start: > stop: > +orderer.example.com | [e60 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | [e61 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11945] +orderer.example.com | [e62 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27559], Going to peek [8] bytes +orderer.example.com | [e63 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13749], placementInfo={fileNum=[0], startOffset=[11945], bytesOffset=[11947]} +orderer.example.com | [e64 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420a89be0) +orderer.example.com | [e65 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +orderer.example.com | [e66 12-14 09:34:47.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25696] +orderer.example.com | [e67 12-14 09:34:47.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13808], Going to peek [8] bytes +orderer.example.com | [e68 12-14 09:34:47.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13806], placementInfo={fileNum=[0], startOffset=[25696], bytesOffset=[25698]} +orderer.example.com | [e69 12-14 09:34:47.00 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420a89be0) +orderer.example.com | [e6a 12-14 09:34:47.13 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [e6b 12-14 09:34:47.13 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +orderer.example.com | [e6c 12-14 09:34:47.13 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [e6d 12-14 09:34:47.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [e6e 12-14 09:34:47.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026900 gate 1513244087135655900 evaluation starts +orderer.example.com | [e6f 12-14 09:34:47.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026900 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [e70 12-14 09:34:47.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026900 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f564e5762346d2f4b453871576e6273356f4e43584577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a49775768634e4d6a63784d5449354d544d314e7a49770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414246756543656a666b4450505266766b444b534d64772b4844423636426c772b0a65323678755664426d316d3156685a416673495347713941715a683554595365415763696339554a44704d3641463475597952573851536a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149457864556b344e545875760a6c687665424d722f6b4c51424c745a6d4f6b63587055334e38634770303872384d416f4743437147534d343942414d43413063414d45514349437854566d75760a3835744c5633494f627979416a4d464a444f59395a527647364a72466b3649702b354932416941743839735957526c6c30564a6e344c4539536e714c47796e780a6b38653575635a334a64366b457737366d413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [e71 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAcCgAwIBAgIRAOVNWb4m/KE8qWnbs5oNCXEwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -10895,13 +17542,13 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | 85tLV3IObyyAjMFJDOY9ZRvG6JrFk6Ip+5I2AiAt89sYWRll0VJn4LE9SnqLGynx orderer.example.com | k8e5ucZ3Jd6kEw76mA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [8c9 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026498 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | [8ca 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026498 principal evaluation fails -orderer.example.com | [8cb 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026498 gate 1512458990250418300 evaluation fails -orderer.example.com | [8cc 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200264a8 gate 1512458990251931600 evaluation starts -orderer.example.com | [8cd 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264a8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [8ce 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264a8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f564e5762346d2f4b453871576e6273356f4e43584577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a49775768634e4d6a63784d5449354d544d314e7a49770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414246756543656a666b4450505266766b444b534d64772b4844423636426c772b0a65323678755664426d316d3156685a416673495347713941715a683554595365415763696339554a44704d3641463475597952573851536a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149457864556b344e545875760a6c687665424d722f6b4c51424c745a6d4f6b63587055334e38634770303872384d416f4743437147534d343942414d43413063414d45514349437854566d75760a3835744c5633494f627979416a4d464a444f59395a527647364a72466b3649702b354932416941743839735957526c6c30564a6e344c4539536e714c47796e780a6b38653575635a334a64366b457737366d413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [8cf 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [e72 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026900 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +orderer.example.com | [e73 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026900 principal evaluation fails +orderer.example.com | [e74 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026900 gate 1513244087135655900 evaluation fails +orderer.example.com | [e75 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026910 gate 1513244087145597100 evaluation starts +orderer.example.com | [e76 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026910 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [e77 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026910 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f564e5762346d2f4b453871576e6273356f4e43584577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a49775768634e4d6a63784d5449354d544d314e7a49770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414246756543656a666b4450505266766b444b534d64772b4844423636426c772b0a65323678755664426d316d3156685a416673495347713941715a683554595365415763696339554a44704d3641463475597952573851536a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149457864556b344e545875760a6c687665424d722f6b4c51424c745a6d4f6b63587055334e38634770303872384d416f4743437147534d343942414d43413063414d45514349437854566d75760a3835744c5633494f627979416a4d464a444f59395a527647364a72466b3649702b354932416941743839735957526c6c30564a6e344c4539536e714c47796e780a6b38653575635a334a64366b457737366d413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [e78 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAcCgAwIBAgIRAOVNWb4m/KE8qWnbs5oNCXEwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -10915,26 +17562,58 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | 85tLV3IObyyAjMFJDOY9ZRvG6JrFk6Ip+5I2AiAt89sYWRll0VJn4LE9SnqLGynx orderer.example.com | k8e5ucZ3Jd6kEw76mA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [8d0 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | [8d1 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [8d2 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264a8 principal matched by identity 0 -orderer.example.com | [8d3 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 be 86 f5 f2 94 e2 0d e4 1e 21 ee 91 71 3e 6d fd |.........!..q>m.| -orderer.example.com | 00000010 8c 89 b2 4a 21 24 fe c1 c8 c4 fa 3d 7c 11 27 25 |...J!$.....=|.'%| -orderer.example.com | [8d4 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7c 0f 2d eb a0 5c 4d a9 9c d8 4d 16 |0D. |.-..\M...M.| -orderer.example.com | 00000010 79 f4 a1 40 62 94 fd e3 bf c0 d2 2f f2 67 81 91 |y..@b....../.g..| -orderer.example.com | 00000020 26 6a c3 e6 02 20 03 64 a2 cf 37 e3 bd 9d 0d 8a |&j... .d..7.....| -orderer.example.com | 00000030 79 0e b1 8c 87 bd 8e 6c af 3d 93 5f 26 b9 41 58 |y......l.=._&.AX| -orderer.example.com | 00000040 83 0c ee 49 ae dc |...I..| -orderer.example.com | [8d5 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264a8 principal evaluation succeeds for identity 0 -orderer.example.com | [8d6 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200264a8 gate 1512458990251931600 evaluation succeeds -orderer.example.com | [8d7 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bf20 1 [0xc420026cb8 0xc420026d60]}) %!s(*policies.implicitMetaPolicy=&{0xc42037c280 1 [0xc420026dd8]})]} -orderer.example.com | [8d8 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc4204e33e0) start: > stop: > -orderer.example.com | [8d9 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -orderer.example.com | [8da 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [8db 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200264d0 gate 1512459005535366200 evaluation starts -orderer.example.com | [8dc 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264d0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [8dd 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264d0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [8de 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [e79 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026910 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +orderer.example.com | [e7a 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026910 principal evaluation fails +orderer.example.com | [e7b 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026910 gate 1513244087145597100 evaluation fails +orderer.example.com | [e7c 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026920 gate 1513244087146929400 evaluation starts +orderer.example.com | [e7d 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026920 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [e7e 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026920 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f564e5762346d2f4b453871576e6273356f4e43584577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a49775768634e4d6a63784d5449354d544d314e7a49770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414246756543656a666b4450505266766b444b534d64772b4844423636426c772b0a65323678755664426d316d3156685a416673495347713941715a683554595365415763696339554a44704d3641463475597952573851536a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149457864556b344e545875760a6c687665424d722f6b4c51424c745a6d4f6b63587055334e38634770303872384d416f4743437147534d343942414d43413063414d45514349437854566d75760a3835744c5633494f627979416a4d464a444f59395a527647364a72466b3649702b354932416941743839735957526c6c30564a6e344c4539536e714c47796e780a6b38653575635a334a64366b457737366d413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [e7f 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAOVNWb4m/KE8qWnbs5oNCXEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzIwWhcNMjcxMTI5MTM1NzIw +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABFueCejfkDPPRfvkDKSMdw+HDB66Blw+ +orderer.example.com | e26xuVdBm1m1VhZAfsISGq9AqZh5TYSeAWcic9UJDpM6AF4uYyRW8QSjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIExdUk4NTXuv +orderer.example.com | lhveBMr/kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICxTVmuv +orderer.example.com | 85tLV3IObyyAjMFJDOY9ZRvG6JrFk6Ip+5I2AiAt89sYWRll0VJn4LE9SnqLGynx +orderer.example.com | k8e5ucZ3Jd6kEw76mA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [e80 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | [e81 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [e82 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026920 principal matched by identity 0 +orderer.example.com | [e83 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 33 98 66 73 2e 93 80 5b 98 d0 6a 73 a9 fd 04 6a |3.fs...[..js...j| +orderer.example.com | 00000010 e7 f9 24 a4 f9 9c 49 e7 16 f8 08 56 fa 33 39 22 |..$...I....V.39"| +orderer.example.com | [e84 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b3 1e a3 14 3f 43 2a 41 b0 27 5a |0E.!.....?C*A.'Z| +orderer.example.com | 00000010 fd 55 99 ea 41 d9 c4 28 7c 9c 81 ff 61 2d 75 d1 |.U..A..(|...a-u.| +orderer.example.com | 00000020 62 6f f0 72 e0 02 20 3b 02 84 c5 0a 82 7f 2c 56 |bo.r.. ;......,V| +orderer.example.com | 00000030 79 94 0f 5e c9 14 8e 52 19 2e 7c d7 13 e7 24 4a |y..^...R..|...$J| +orderer.example.com | 00000040 04 ce fc fc 95 b1 10 |.......| +orderer.example.com | [e85 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026920 principal evaluation succeeds for identity 0 +orderer.example.com | [e86 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026920 gate 1513244087146929400 evaluation succeeds +orderer.example.com | [e87 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b600 1 [0xc420026660]}) %!s(*policies.implicitMetaPolicy=&{0xc420312280 1 [0xc420026710 0xc4200267b0]})]} +orderer.example.com | [e88 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc42034e1a0) start: > stop: > +orderer.example.com | [e89 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | [e8a 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11945] +orderer.example.com | [e8b 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27559], Going to peek [8] bytes +orderer.example.com | [e8c 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13749], placementInfo={fileNum=[0], startOffset=[11945], bytesOffset=[11947]} +orderer.example.com | [e8d 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42034e1a0) +orderer.example.com | [e8e 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +orderer.example.com | [e8f 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25696] +orderer.example.com | [e90 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13808], Going to peek [8] bytes +orderer.example.com | [e91 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13806], placementInfo={fileNum=[0], startOffset=[25696], bytesOffset=[25698]} +orderer.example.com | [e92 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42034e1a0) +orderer.example.com | [e93 12-14 09:34:49.95 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [e94 12-14 09:34:49.95 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +orderer.example.com | [e95 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +orderer.example.com | [e96 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [e97 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260d0 gate 1513244111001410900 evaluation starts +orderer.example.com | [e98 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260d0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [e99 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260d0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [e9a 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -10948,25 +17627,13 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx orderer.example.com | zekLSULI9G2UUYA77A== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [8df 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [8e0 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [8e1 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264d0 principal matched by identity 0 -orderer.example.com | [8e2 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 db 3d d4 62 cf 41 3b cd 8b 25 48 32 ab 42 33 e4 |.=.b.A;..%H2.B3.| -orderer.example.com | 00000010 e8 5a dc 26 f1 f9 86 65 9f 3c 48 77 5f d5 81 3e |.Z.&...e.| -orderer.example.com | [8e3 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ca 95 51 cf 0f 76 15 a7 65 ff 73 |0E.!...Q..v..e.s| -orderer.example.com | 00000010 89 39 6f be 24 ee 73 30 db b4 5c 65 9f 72 c9 aa |.9o.$.s0..\e.r..| -orderer.example.com | 00000020 18 4b 5b 5f 96 02 20 71 7a 54 68 78 83 a5 d0 d1 |.K[_.. qzThx....| -orderer.example.com | 00000030 84 f5 25 4a af d4 42 68 5c 8a 44 31 70 fa 79 39 |..%J..Bh\.D1p.y9| -orderer.example.com | 00000040 18 1e db d6 14 cd c0 |.......| -orderer.example.com | [8e4 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264d0 principal evaluation succeeds for identity 0 -orderer.example.com | [8e5 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200264d0 gate 1512459005535366200 evaluation succeeds -orderer.example.com | [8e6 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bde0 1 [0xc420026b98 0xc420026d88]}) %!s(*policies.implicitMetaPolicy=&{0xc420389e20 1 [0xc420026e00]})]} -orderer.example.com | [8e7 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -orderer.example.com | [8e8 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [8e9 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026028 gate 1512459005541294900 evaluation starts -orderer.example.com | [8ea 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [8eb 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [8ec 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [e9b 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260d0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +orderer.example.com | [e9c 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260d0 principal evaluation fails +orderer.example.com | [e9d 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260d0 gate 1513244111001410900 evaluation fails +orderer.example.com | [e9e 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026168 gate 1513244111002361300 evaluation starts +orderer.example.com | [e9f 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026168 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [ea0 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026168 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [ea1 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -10980,189 +17647,25 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx orderer.example.com | zekLSULI9G2UUYA77A== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [8ed 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [8ee 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [8ef 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 principal matched by identity 0 -orderer.example.com | [8f0 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 db 3d d4 62 cf 41 3b cd 8b 25 48 32 ab 42 33 e4 |.=.b.A;..%H2.B3.| -orderer.example.com | 00000010 e8 5a dc 26 f1 f9 86 65 9f 3c 48 77 5f d5 81 3e |.Z.&...e.| -orderer.example.com | [8f1 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ca 95 51 cf 0f 76 15 a7 65 ff 73 |0E.!...Q..v..e.s| -orderer.example.com | 00000010 89 39 6f be 24 ee 73 30 db b4 5c 65 9f 72 c9 aa |.9o.$.s0..\e.r..| -orderer.example.com | 00000020 18 4b 5b 5f 96 02 20 71 7a 54 68 78 83 a5 d0 d1 |.K[_.. qzThx....| -orderer.example.com | 00000030 84 f5 25 4a af d4 42 68 5c 8a 44 31 70 fa 79 39 |..%J..Bh\.D1p.y9| -orderer.example.com | 00000040 18 1e db d6 14 cd c0 |.......| -orderer.example.com | [8f2 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 principal evaluation succeeds for identity 0 -orderer.example.com | [8f3 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026028 gate 1512459005541294900 evaluation succeeds -orderer.example.com | [8f4 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bde0 1 [0xc420026b98 0xc420026d88]}) %!s(*policies.implicitMetaPolicy=&{0xc420389e20 1 [0xc420026e00]})]} -orderer.example.com | [8f5 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -orderer.example.com | [8f6 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [8f7 12-05 07:30:05.54 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [8f8 12-05 07:30:05.68 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [8f9 12-05 07:30:05.68 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop -orderer.example.com | [8fa 12-05 07:30:07.54 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block -orderer.example.com | [8fb 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] CreateNextBlock.CreateNextBlock.Next.readBlock -> DEBU Read block 0 -orderer.example.com | [8fc 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc420363b40 chain:0xc42033eb20 cutter:0xc4202d9c70 filters:0xc42033e380 signer:0x1285450 lastConfig:0 lastConfigSeq:1} -orderer.example.com | [8fd 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} -orderer.example.com | [8fe 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [8ff 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [900 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [901 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [902 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...8017DAE3D3D6222E60E14035E227807C -orderer.example.com | [903 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 0872FE4E410327952B6C48FFE74A19E26803E9310334343B164D314B4C333E15 -orderer.example.com | [904 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [905 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [906 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 0 -orderer.example.com | [907 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [908 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [909 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...8017DAE3D3D6222E60E14035E227807C -orderer.example.com | [90a 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 1016B37E57D558BBEDAAE1CF2460DCD8502B7B99AE28E9BEEAC1C3976D197802 -orderer.example.com | [90b 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] WriteBlock.Append.writeBlock -> DEBU Wrote block 1 -orderer.example.com | [90c 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 1 -orderer.example.com | [90d 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 1 -orderer.example.com | [90f 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 1 -orderer.example.com | [910 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420291c60) -orderer.example.com | [911 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 1 -orderer.example.com | [912 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4200b8ce0) -orderer.example.com | [90e 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4204e33e0) -orderer.example.com | [913 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -orderer.example.com | [914 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [915 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262f0 gate 1512459021844280300 evaluation starts -orderer.example.com | [916 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [917 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [918 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -orderer.example.com | Xk1Xy2C2aVQjOcr++w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [919 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | [91a 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f0 principal evaluation fails -orderer.example.com | [91b 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262f0 gate 1512459021844280300 evaluation fails -orderer.example.com | [91c 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026300 gate 1512459021845322800 evaluation starts -orderer.example.com | [91d 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026300 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [91e 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026300 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [91f 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -orderer.example.com | Xk1Xy2C2aVQjOcr++w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [920 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | [921 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [922 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026300 principal matched by identity 0 -orderer.example.com | [923 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 be a8 52 90 f6 b1 42 e3 86 6b c0 31 0b ee 28 c7 |..R...B..k.1..(.| -orderer.example.com | 00000010 85 32 33 18 7c 0a 7d 0c 23 1c ab ff fe 30 28 7a |.23.|.}.#....0(z| -orderer.example.com | [924 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 16 36 fd f8 32 3f f7 7e 93 9e 84 e0 |0D. .6..2?.~....| -orderer.example.com | 00000010 f0 97 e7 57 d4 37 4d 26 1d 66 27 06 aa 3b 35 5d |...W.7M&.f'..;5]| -orderer.example.com | 00000020 af 81 04 52 02 20 15 cf 9c fa ef 53 52 6b 40 a9 |...R. .....SRk@.| -orderer.example.com | 00000030 84 b1 d0 63 41 d9 63 f1 8b 2b a1 bd da 56 65 00 |...cA.c..+...Ve.| -orderer.example.com | 00000040 c6 d3 cd c0 a9 5f |....._| -orderer.example.com | [925 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026300 principal evaluation succeeds for identity 0 -orderer.example.com | [926 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026300 gate 1512459021845322800 evaluation succeeds -orderer.example.com | [927 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bde0 1 [0xc420026b98 0xc420026d88]}) %!s(*policies.implicitMetaPolicy=&{0xc420389e20 1 [0xc420026e00]})]} -orderer.example.com | [928 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -orderer.example.com | [929 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [92a 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026318 gate 1512459021847751800 evaluation starts -orderer.example.com | [92b 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026318 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [92c 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026318 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [92d 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -orderer.example.com | Xk1Xy2C2aVQjOcr++w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [92e 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026318 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | [92f 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026318 principal evaluation fails -orderer.example.com | [930 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026318 gate 1512459021847751800 evaluation fails -orderer.example.com | [931 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026328 gate 1512459021851097800 evaluation starts -orderer.example.com | [932 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026328 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [933 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026328 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [934 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -orderer.example.com | Xk1Xy2C2aVQjOcr++w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [935 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | [936 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [937 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026328 principal matched by identity 0 -orderer.example.com | [938 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 be a8 52 90 f6 b1 42 e3 86 6b c0 31 0b ee 28 c7 |..R...B..k.1..(.| -orderer.example.com | 00000010 85 32 33 18 7c 0a 7d 0c 23 1c ab ff fe 30 28 7a |.23.|.}.#....0(z| -orderer.example.com | [939 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 16 36 fd f8 32 3f f7 7e 93 9e 84 e0 |0D. .6..2?.~....| -orderer.example.com | 00000010 f0 97 e7 57 d4 37 4d 26 1d 66 27 06 aa 3b 35 5d |...W.7M&.f'..;5]| -orderer.example.com | 00000020 af 81 04 52 02 20 15 cf 9c fa ef 53 52 6b 40 a9 |...R. .....SRk@.| -orderer.example.com | 00000030 84 b1 d0 63 41 d9 63 f1 8b 2b a1 bd da 56 65 00 |...cA.c..+...Ve.| -orderer.example.com | 00000040 c6 d3 cd c0 a9 5f |....._| -orderer.example.com | [93a 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026328 principal evaluation succeeds for identity 0 -orderer.example.com | [93b 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026328 gate 1512459021851097800 evaluation succeeds -orderer.example.com | [93c 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bde0 1 [0xc420026b98 0xc420026d88]}) %!s(*policies.implicitMetaPolicy=&{0xc420389e20 1 [0xc420026e00]})]} -orderer.example.com | [93d 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -orderer.example.com | [93e 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [93f 12-05 07:30:21.85 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [940 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block -orderer.example.com | [941 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] CreateNextBlock.CreateNextBlock.Next.readBlock -> DEBU Read block 1 -orderer.example.com | [942 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc420363b40 chain:0xc42033eb20 cutter:0xc4202d9c70 filters:0xc42033e380 signer:0x1285450 lastConfig:0 lastConfigSeq:1} -orderer.example.com | [943 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} -orderer.example.com | [944 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [945 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [946 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [947 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [948 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...14B5A715A44682D44C84A73A537438BA -orderer.example.com | [949 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 3DA2B78185D7613540E5325D3EC8011C5C40B53B12351F537886909141E7E54E -orderer.example.com | [94a 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [94b 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [94c 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 0 -orderer.example.com | [94d 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [94e 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [94f 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...14B5A715A44682D44C84A73A537438BA -orderer.example.com | [950 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 6BA26FA0BF21B962E5A2CC46D8D4A673C83679166D4278396C9273F5E5D35044 -orderer.example.com | [951 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] WriteBlock.Append.writeBlock -> DEBU Wrote block 2 -orderer.example.com | [952 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 2 -orderer.example.com | [953 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 2 -orderer.example.com | [954 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4200b8ce0) -orderer.example.com | [955 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 2 -orderer.example.com | [956 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4204e33e0) -orderer.example.com | [957 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 2 -orderer.example.com | [958 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420291c60) -orderer.example.com | [959 12-05 07:30:42.79 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [95a 12-05 07:30:42.79 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop -orderer.example.com | [95b 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -orderer.example.com | [95c 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [95d 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026390 gate 1512459042823285000 evaluation starts -orderer.example.com | [95e 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026390 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [95f 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026390 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [960 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [ea2 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | [ea3 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [ea4 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026168 principal matched by identity 0 +orderer.example.com | [ea5 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 69 62 08 b9 6c 11 cf 67 96 d9 fa 82 1a 7d 68 7e |ib..l..g.....}h~| +orderer.example.com | 00000010 a2 38 ca 6d 28 d8 3b 75 16 d3 a5 aa 7c 1b ca 17 |.8.m(.;u....|...| +orderer.example.com | [ea6 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 46 75 e8 cf 34 20 75 8d 16 f0 0e 0e |0D. Fu..4 u.....| +orderer.example.com | 00000010 6b 15 9e f6 96 5f 88 11 fa b4 a3 04 21 81 ed 6c |k...._......!..l| +orderer.example.com | 00000020 e5 da 4c ac 02 20 47 fb 0f f6 6d 0e db 8c bf 93 |..L.. G...m.....| +orderer.example.com | 00000030 4e b0 25 b5 e0 ec 83 b7 49 30 00 6b 87 fe 77 cd |N.%.....I0.k..w.| +orderer.example.com | 00000040 57 4f 1a a9 58 34 |WO..X4| +orderer.example.com | [ea7 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026168 principal evaluation succeeds for identity 0 +orderer.example.com | [ea8 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026168 gate 1513244111002361300 evaluation succeeds +orderer.example.com | [ea9 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b760 1 [0xc420026610]}) %!s(*policies.implicitMetaPolicy=&{0xc420312500 1 [0xc4200266c0 0xc420026760]})]} +orderer.example.com | [eaa 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +orderer.example.com | [eab 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [eac 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e1b8 gate 1513244111004155200 evaluation starts +orderer.example.com | [ead 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e1b8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [eae 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e1b8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [eaf 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -11176,25 +17679,13 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx orderer.example.com | zekLSULI9G2UUYA77A== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [961 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [962 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [963 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026390 principal matched by identity 0 -orderer.example.com | [964 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 89 8e 95 e9 4d 8c 6b f5 aa d2 79 12 dd dd b8 bf |....M.k...y.....| -orderer.example.com | 00000010 43 a8 cb dd 6c c4 a3 36 b7 ee 9c 09 a4 59 df 38 |C...l..6.....Y.8| -orderer.example.com | [965 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 23 11 3e 07 be ae 0a 41 6a 6c 15 96 |0D. #.>....Ajl..| -orderer.example.com | 00000010 4a db 19 5f 0c c4 4a 0e 5b aa d7 5f 92 5b 31 c2 |J.._..J.[.._.[1.| -orderer.example.com | 00000020 ea 23 f7 38 02 20 78 68 cf 8b a2 16 fe 90 8d 31 |.#.8. xh.......1| -orderer.example.com | 00000030 86 91 e1 bb 22 f7 21 3f 83 2a 96 bc 52 94 92 d7 |....".!?.*..R...| -orderer.example.com | 00000040 09 52 d1 8c b8 36 |.R...6| -orderer.example.com | [966 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026390 principal evaluation succeeds for identity 0 -orderer.example.com | [967 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026390 gate 1512459042823285000 evaluation succeeds -orderer.example.com | [968 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bde0 1 [0xc420026b98 0xc420026d88]}) %!s(*policies.implicitMetaPolicy=&{0xc420389e20 1 [0xc420026e00]})]} -orderer.example.com | [969 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -orderer.example.com | [96a 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [96b 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263a8 gate 1512459042827067800 evaluation starts -orderer.example.com | [96c 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263a8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [96d 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263a8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [96e 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [eb0 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e1b8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +orderer.example.com | [eb1 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e1b8 principal evaluation fails +orderer.example.com | [eb2 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e1b8 gate 1513244111004155200 evaluation fails +orderer.example.com | [eb3 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e390 gate 1513244111004748600 evaluation starts +orderer.example.com | [eb4 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e390 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [eb5 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e390 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [eb6 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -11208,55 +17699,72 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx orderer.example.com | zekLSULI9G2UUYA77A== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [96f 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [970 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [971 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263a8 principal matched by identity 0 -orderer.example.com | [972 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 89 8e 95 e9 4d 8c 6b f5 aa d2 79 12 dd dd b8 bf |....M.k...y.....| -orderer.example.com | 00000010 43 a8 cb dd 6c c4 a3 36 b7 ee 9c 09 a4 59 df 38 |C...l..6.....Y.8| -orderer.example.com | [973 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 23 11 3e 07 be ae 0a 41 6a 6c 15 96 |0D. #.>....Ajl..| -orderer.example.com | 00000010 4a db 19 5f 0c c4 4a 0e 5b aa d7 5f 92 5b 31 c2 |J.._..J.[.._.[1.| -orderer.example.com | 00000020 ea 23 f7 38 02 20 78 68 cf 8b a2 16 fe 90 8d 31 |.#.8. xh.......1| -orderer.example.com | 00000030 86 91 e1 bb 22 f7 21 3f 83 2a 96 bc 52 94 92 d7 |....".!?.*..R...| -orderer.example.com | 00000040 09 52 d1 8c b8 36 |.R...6| -orderer.example.com | [974 12-05 07:30:42.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263a8 principal evaluation succeeds for identity 0 -orderer.example.com | [976 12-05 07:30:42.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263a8 gate 1512459042827067800 evaluation succeeds -orderer.example.com | [977 12-05 07:30:42.83 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bde0 1 [0xc420026b98 0xc420026d88]}) %!s(*policies.implicitMetaPolicy=&{0xc420389e20 1 [0xc420026e00]})]} -orderer.example.com | [978 12-05 07:30:42.83 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -orderer.example.com | [975 12-05 07:30:42.83 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [979 12-05 07:30:42.83 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [97a 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block -orderer.example.com | [97b 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] CreateNextBlock.CreateNextBlock.Next.readBlock -> DEBU Read block 2 -orderer.example.com | [97c 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc420363b40 chain:0xc42033eb20 cutter:0xc4202d9c70 filters:0xc42033e380 signer:0x1285450 lastConfig:0 lastConfigSeq:1} -orderer.example.com | [97d 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} -orderer.example.com | [97e 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [97f 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [980 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [981 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [982 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...917D3514224FE00FA72205D5D9A71054 -orderer.example.com | [983 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: C98CEFFDE980A69D129C11FBE923E68C3F89F8EECE520ECB2DFCC3DD513106C9 -orderer.example.com | [984 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [985 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [986 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 0 -orderer.example.com | [987 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [988 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [989 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...917D3514224FE00FA72205D5D9A71054 -orderer.example.com | [98a 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 23C8752405BC2439458FE33C6B5ED132C31B60ED472F9CE2E5A59450CDBE0B5F -orderer.example.com | [98b 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] WriteBlock.Append.writeBlock -> DEBU Wrote block 3 -orderer.example.com | [98c 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 3 -orderer.example.com | [98d 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 3 -orderer.example.com | [98e 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4204e33e0) -orderer.example.com | [98f 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 3 -orderer.example.com | [990 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4200b8ce0) -orderer.example.com | [991 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 3 -orderer.example.com | [992 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420291c60) -orderer.example.com | [993 12-05 07:31:08.31 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [994 12-05 07:31:08.31 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop -orderer.example.com | [995 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -orderer.example.com | [996 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [997 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420114300 gate 1512459068345623500 evaluation starts -orderer.example.com | [998 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114300 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [999 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114300 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [99a 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [eb7 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | [eb8 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [eb9 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e390 principal matched by identity 0 +orderer.example.com | [eba 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 69 62 08 b9 6c 11 cf 67 96 d9 fa 82 1a 7d 68 7e |ib..l..g.....}h~| +orderer.example.com | 00000010 a2 38 ca 6d 28 d8 3b 75 16 d3 a5 aa 7c 1b ca 17 |.8.m(.;u....|...| +orderer.example.com | [ebb 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 46 75 e8 cf 34 20 75 8d 16 f0 0e 0e |0D. Fu..4 u.....| +orderer.example.com | 00000010 6b 15 9e f6 96 5f 88 11 fa b4 a3 04 21 81 ed 6c |k...._......!..l| +orderer.example.com | 00000020 e5 da 4c ac 02 20 47 fb 0f f6 6d 0e db 8c bf 93 |..L.. G...m.....| +orderer.example.com | 00000030 4e b0 25 b5 e0 ec 83 b7 49 30 00 6b 87 fe 77 cd |N.%.....I0.k..w.| +orderer.example.com | 00000040 57 4f 1a a9 58 34 |WO..X4| +orderer.example.com | [ebc 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e390 principal evaluation succeeds for identity 0 +orderer.example.com | [ebd 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e390 gate 1513244111004748600 evaluation succeeds +orderer.example.com | [ebe 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b760 1 [0xc420026610]}) %!s(*policies.implicitMetaPolicy=&{0xc420312500 1 [0xc4200266c0 0xc420026760]})]} +orderer.example.com | [ebf 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +orderer.example.com | [ec0 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [ec1 12-14 09:35:11.01 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [ec2 12-14 09:35:11.10 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [ec3 12-14 09:35:11.10 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +orderer.example.com | [ec4 12-14 09:35:13.00 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block +orderer.example.com | [ec5 12-14 09:35:13.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +orderer.example.com | [ec6 12-14 09:35:13.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25696] +orderer.example.com | [ec7 12-14 09:35:13.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13808], Going to peek [8] bytes +orderer.example.com | [ec8 12-14 09:35:13.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13806], placementInfo={fileNum=[0], startOffset=[25696], bytesOffset=[25698]} +orderer.example.com | [ec9 12-14 09:35:13.00 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42017c5a0 chain:0xc42017d3e0 cutter:0xc420137770 filters:0xc42017cc20 signer:0x128b4a8 lastConfig:2 lastConfigSeq:3} +orderer.example.com | [eca 12-14 09:35:13.00 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +orderer.example.com | [ecb 12-14 09:35:13.00 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [ecc 12-14 09:35:13.00 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [ecd 12-14 09:35:13.00 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [ece 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [ecf 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...2ECCCF9F30E2C8308D3B9F86A4109B5E +orderer.example.com | [ed0 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 7EB2567868F52C32807D4B2B64915C03703BA8E4326DDAB4C8E3298AA63714F3 +orderer.example.com | [ed1 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [ed2 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [ed3 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | [ed4 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [ed5 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [ed6 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFF050A0A4F7264657265724D53...2ECCCF9F30E2C8308D3B9F86A4109B5E +orderer.example.com | [ed7 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 37DFDC55AAE8913897357E9480B9F7634BA485A39FC525DF15D28935F4770521 +orderer.example.com | [ed8 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xe8, 0xdd, 0x3a, 0xe6, 0xb8, 0x5d, 0x63, 0x1d, 0x8e, 0x54, 0xef, 0xc5, 0xa, 0x1b, 0x18, 0xb, 0x1e, 0xe6, 0x31, 0x77, 0x44, 0x87, 0xc7, 0x16, 0x8f, 0xea, 0x61, 0x39, 0xdd, 0xa3, 0xa7, 0xde} txOffsets= +orderer.example.com | txId=666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b locPointer=offset=70, bytesLength=3388 +orderer.example.com | ] +orderer.example.com | [ed9 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44722], isChainEmpty=[false], lastBlockNumber=[3] +orderer.example.com | [eda 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 3 +orderer.example.com | [edb 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] +orderer.example.com | [edc 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39504] +orderer.example.com | [edd 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] +orderer.example.com | [edf 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] +orderer.example.com | [ee0 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39504] +orderer.example.com | [ee1 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5218], Going to peek [8] bytes +orderer.example.com | [ee3 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5216], placementInfo={fileNum=[0], startOffset=[39504], bytesOffset=[39506]} +orderer.example.com | [ee4 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420a89be0) +orderer.example.com | [ee2 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39504] +orderer.example.com | [ee5 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5218], Going to peek [8] bytes +orderer.example.com | [ee6 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5216], placementInfo={fileNum=[0], startOffset=[39504], bytesOffset=[39506]} +orderer.example.com | [ede 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5218], Going to peek [8] bytes +orderer.example.com | [ee7 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5216], placementInfo={fileNum=[0], startOffset=[39504], bytesOffset=[39506]} +orderer.example.com | [ee9 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42034e1a0) +orderer.example.com | [ee8 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42088b800) +orderer.example.com | [eea 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN [channel: businesschannel] Error sending to stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [eeb 12-14 09:35:13.01 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [eec 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +orderer.example.com | [eed 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [eee 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e4e8 gate 1513244128632147200 evaluation starts +orderer.example.com | [eef 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e4e8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [ef0 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e4e8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [ef1 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -11270,13 +17778,13 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb orderer.example.com | Xk1Xy2C2aVQjOcr++w== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [99b 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114300 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | [99c 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114300 principal evaluation fails -orderer.example.com | [99d 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420114300 gate 1512459068345623500 evaluation fails -orderer.example.com | [99e 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420114310 gate 1512459068347668100 evaluation starts -orderer.example.com | [99f 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114310 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [9a0 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114310 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [9a1 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [ef2 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e4e8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +orderer.example.com | [ef3 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e4e8 principal evaluation fails +orderer.example.com | [ef4 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e4e8 gate 1513244128632147200 evaluation fails +orderer.example.com | [ef5 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e548 gate 1513244128632719600 evaluation starts +orderer.example.com | [ef6 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e548 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [ef7 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e548 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [ef8 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -11290,25 +17798,13 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb orderer.example.com | Xk1Xy2C2aVQjOcr++w== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [9a2 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | [9a3 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [9a4 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114310 principal matched by identity 0 -orderer.example.com | [9a5 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 1e 4f a1 f2 67 7a f5 a8 ab 8f 5f 6b 6e 6b 5b 9a |.O..gz...._knk[.| -orderer.example.com | 00000010 42 07 88 1c 05 89 70 f2 e2 e8 d2 9c f8 b5 43 ae |B.....p.......C.| -orderer.example.com | [9a6 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c3 1a 6a 3d 6e b9 42 1e 6f 07 7a |0E.!...j=n.B.o.z| -orderer.example.com | 00000010 54 6e ce 5a 01 e8 2b 26 8d be 8a ef 08 8f bb 31 |Tn.Z..+&.......1| -orderer.example.com | 00000020 50 c9 b5 dd cc 02 20 67 b2 91 a3 5c 92 d7 c1 08 |P..... g...\....| -orderer.example.com | 00000030 a6 0d 08 ee 02 d2 8b 2b 14 f7 95 8c 1e 70 30 ea |.......+.....p0.| -orderer.example.com | 00000040 49 e8 65 85 f7 cc 89 |I.e....| -orderer.example.com | [9a7 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114310 principal evaluation succeeds for identity 0 -orderer.example.com | [9a8 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420114310 gate 1512459068347668100 evaluation succeeds -orderer.example.com | [9a9 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bde0 1 [0xc420026b98 0xc420026d88]}) %!s(*policies.implicitMetaPolicy=&{0xc420389e20 1 [0xc420026e00]})]} -orderer.example.com | [9aa 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -orderer.example.com | [9ab 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [9ac 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026300 gate 1512459068350156700 evaluation starts -orderer.example.com | [9ad 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026300 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [9ae 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026300 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [9af 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [ef9 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e548 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +orderer.example.com | [efa 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e548 principal evaluation fails +orderer.example.com | [efb 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e548 gate 1513244128632719600 evaluation fails +orderer.example.com | [efc 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e578 gate 1513244128633150700 evaluation starts +orderer.example.com | [efd 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e578 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [efe 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e578 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [eff 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -11322,13 +17818,25 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb orderer.example.com | Xk1Xy2C2aVQjOcr++w== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [9b0 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026300 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | [9b1 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026300 principal evaluation fails -orderer.example.com | [9b2 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026300 gate 1512459068350156700 evaluation fails -orderer.example.com | [9b3 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026310 gate 1512459068351215300 evaluation starts -orderer.example.com | [9b4 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026310 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [9b5 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026310 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [9b6 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [f00 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | [f01 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [f02 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e578 principal matched by identity 0 +orderer.example.com | [f03 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 14 87 4d 16 f3 cc e8 80 f6 10 69 d4 6c 77 88 d8 |..M.......i.lw..| +orderer.example.com | 00000010 5c fb a0 09 b4 d2 8b 8e 3d 75 4d 50 2f a0 e9 0f |\.......=uMP/...| +orderer.example.com | [f04 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d8 f3 e1 67 96 8b de ce a1 ca fa |0E.!....g.......| +orderer.example.com | 00000010 82 03 e2 76 c4 e2 5a ad 00 e2 23 11 f2 c3 52 1a |...v..Z...#...R.| +orderer.example.com | 00000020 07 f4 4f e6 b7 02 20 2e 7b d0 d0 4c 79 cb d0 42 |..O... .{..Ly..B| +orderer.example.com | 00000030 5a 86 65 5f 1a 6d 85 22 5a 20 73 24 3b f2 bd 59 |Z.e_.m."Z s$;..Y| +orderer.example.com | 00000040 63 00 68 f8 ca 19 cd |c.h....| +orderer.example.com | [f05 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e578 principal evaluation succeeds for identity 0 +orderer.example.com | [f06 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e578 gate 1513244128633150700 evaluation succeeds +orderer.example.com | [f07 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b760 1 [0xc420026610]}) %!s(*policies.implicitMetaPolicy=&{0xc420312500 1 [0xc4200266c0 0xc420026760]})]} +orderer.example.com | [f08 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +orderer.example.com | [f09 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [f0a 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e590 gate 1513244128634263700 evaluation starts +orderer.example.com | [f0b 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e590 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [f0c 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e590 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [f0d 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -11342,55 +17850,433 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb orderer.example.com | Xk1Xy2C2aVQjOcr++w== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [9b7 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | [9b8 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [9b9 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026310 principal matched by identity 0 -orderer.example.com | [9ba 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 1e 4f a1 f2 67 7a f5 a8 ab 8f 5f 6b 6e 6b 5b 9a |.O..gz...._knk[.| -orderer.example.com | 00000010 42 07 88 1c 05 89 70 f2 e2 e8 d2 9c f8 b5 43 ae |B.....p.......C.| -orderer.example.com | [9bb 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c3 1a 6a 3d 6e b9 42 1e 6f 07 7a |0E.!...j=n.B.o.z| -orderer.example.com | 00000010 54 6e ce 5a 01 e8 2b 26 8d be 8a ef 08 8f bb 31 |Tn.Z..+&.......1| -orderer.example.com | 00000020 50 c9 b5 dd cc 02 20 67 b2 91 a3 5c 92 d7 c1 08 |P..... g...\....| -orderer.example.com | 00000030 a6 0d 08 ee 02 d2 8b 2b 14 f7 95 8c 1e 70 30 ea |.......+.....p0.| -orderer.example.com | 00000040 49 e8 65 85 f7 cc 89 |I.e....| -orderer.example.com | [9bc 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026310 principal evaluation succeeds for identity 0 -orderer.example.com | [9bd 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026310 gate 1512459068351215300 evaluation succeeds -orderer.example.com | [9bf 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [9c0 12-05 07:31:08.35 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [9be 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bde0 1 [0xc420026b98 0xc420026d88]}) %!s(*policies.implicitMetaPolicy=&{0xc420389e20 1 [0xc420026e00]})]} -orderer.example.com | [9c1 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -orderer.example.com | [9c2 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block -orderer.example.com | [9c3 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] CreateNextBlock.CreateNextBlock.Next.readBlock -> DEBU Read block 3 -orderer.example.com | [9c4 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc420363b40 chain:0xc42033eb20 cutter:0xc4202d9c70 filters:0xc42033e380 signer:0x1285450 lastConfig:0 lastConfigSeq:1} -orderer.example.com | [9c5 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} -orderer.example.com | [9c6 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [9c7 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [9c8 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [9c9 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [9ca 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...A3F5A7A447B734FA8C9A754CC5A33C0B -orderer.example.com | [9cb 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 25635EF20D1BBEAD8A2FB062DEA5749BEC8F79130C0AB672F69BFEC52B296135 -orderer.example.com | [9cc 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [9cd 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [9ce 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 0 -orderer.example.com | [9cf 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [9d0 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [9d1 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...A3F5A7A447B734FA8C9A754CC5A33C0B -orderer.example.com | [9d2 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 9468332A636B8033F8CE3BBE52DEFF92AA7757554CD17CF2F2B00CAF317309F9 -orderer.example.com | [9d3 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] WriteBlock.Append.writeBlock -> DEBU Wrote block 4 -orderer.example.com | [9d4 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 4 -orderer.example.com | [9d5 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 4 -orderer.example.com | [9d6 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4200b8ce0) -orderer.example.com | [9d7 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 4 -orderer.example.com | [9d8 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420291c60) -orderer.example.com | [9d9 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 4 -orderer.example.com | [9da 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4204e33e0) -orderer.example.com | [9db 12-05 07:31:19.56 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [9dc 12-05 07:31:19.56 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [9dd 12-05 07:31:19.56 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [9de 12-05 07:31:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [9df 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263e0 gate 1512459079570055700 evaluation starts -orderer.example.com | [9e0 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263e0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [9e1 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263e0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [9e2 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [f0e 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e590 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +orderer.example.com | [f0f 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e590 principal evaluation fails +orderer.example.com | [f10 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e590 gate 1513244128634263700 evaluation fails +orderer.example.com | [f11 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e5a0 gate 1513244128634713800 evaluation starts +orderer.example.com | [f12 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e5a0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [f13 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e5a0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [f14 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [f15 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e5a0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +orderer.example.com | [f16 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e5a0 principal evaluation fails +orderer.example.com | [f17 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e5a0 gate 1513244128634713800 evaluation fails +orderer.example.com | [f18 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e5b0 gate 1513244128635087900 evaluation starts +orderer.example.com | [f19 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e5b0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [f1a 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e5b0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [f1b 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [f1c 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | [f1d 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [f1e 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e5b0 principal matched by identity 0 +orderer.example.com | [f1f 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 14 87 4d 16 f3 cc e8 80 f6 10 69 d4 6c 77 88 d8 |..M.......i.lw..| +orderer.example.com | 00000010 5c fb a0 09 b4 d2 8b 8e 3d 75 4d 50 2f a0 e9 0f |\.......=uMP/...| +orderer.example.com | [f20 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d8 f3 e1 67 96 8b de ce a1 ca fa |0E.!....g.......| +orderer.example.com | 00000010 82 03 e2 76 c4 e2 5a ad 00 e2 23 11 f2 c3 52 1a |...v..Z...#...R.| +orderer.example.com | 00000020 07 f4 4f e6 b7 02 20 2e 7b d0 d0 4c 79 cb d0 42 |..O... .{..Ly..B| +orderer.example.com | 00000030 5a 86 65 5f 1a 6d 85 22 5a 20 73 24 3b f2 bd 59 |Z.e_.m."Z s$;..Y| +orderer.example.com | 00000040 63 00 68 f8 ca 19 cd |c.h....| +orderer.example.com | [f21 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e5b0 principal evaluation succeeds for identity 0 +orderer.example.com | [f22 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e5b0 gate 1513244128635087900 evaluation succeeds +orderer.example.com | [f23 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b760 1 [0xc420026610]}) %!s(*policies.implicitMetaPolicy=&{0xc420312500 1 [0xc4200266c0 0xc420026760]})]} +orderer.example.com | [f24 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +orderer.example.com | [f25 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [f26 12-14 09:35:28.63 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [f27 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block +orderer.example.com | [f28 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] +orderer.example.com | [f29 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39504] +orderer.example.com | [f2a 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5218], Going to peek [8] bytes +orderer.example.com | [f2b 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5216], placementInfo={fileNum=[0], startOffset=[39504], bytesOffset=[39506]} +orderer.example.com | [f2c 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42017c5a0 chain:0xc42017d3e0 cutter:0xc420137770 filters:0xc42017cc20 signer:0x128b4a8 lastConfig:2 lastConfigSeq:3} +orderer.example.com | [f2d 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +orderer.example.com | [f2e 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [f2f 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [f30 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [f31 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [f32 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...38C304E544DC625C70B50E7E31D7D25D +orderer.example.com | [f33 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 31729286761BBD55A8F65868F303A4DC5B826E72CD42997F9242E5FEA09C077D +orderer.example.com | [f34 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [f35 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [f36 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | [f37 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [f38 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [f39 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFF050A0A4F7264657265724D53...38C304E544DC625C70B50E7E31D7D25D +orderer.example.com | [f3a 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 8F061871692DF6DA6C5E613563C90E7C0D004BB58665E9F2C4D51E3A408156CC +orderer.example.com | [f3b 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0xe1, 0xaa, 0x67, 0x31, 0xdc, 0xd6, 0xb, 0x9f, 0xdb, 0x7e, 0x68, 0xf9, 0x7b, 0x5b, 0x52, 0x72, 0x93, 0x51, 0x28, 0x46, 0xf3, 0x9c, 0xb6, 0x5d, 0xd4, 0x48, 0xaf, 0x4, 0xaa, 0x49, 0xd5, 0x9b} txOffsets= +orderer.example.com | txId=d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d locPointer=offset=70, bytesLength=3388 +orderer.example.com | ] +orderer.example.com | [f3c 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49940], isChainEmpty=[false], lastBlockNumber=[4] +orderer.example.com | [f3e 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [4] +orderer.example.com | [f3f 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44722] +orderer.example.com | [f40 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5218], Going to peek [8] bytes +orderer.example.com | [f41 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5216], placementInfo={fileNum=[0], startOffset=[44722], bytesOffset=[44724]} +orderer.example.com | [f42 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42088b800) +orderer.example.com | [f43 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [4] +orderer.example.com | [f44 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44722] +orderer.example.com | [f45 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5218], Going to peek [8] bytes +orderer.example.com | [f46 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5216], placementInfo={fileNum=[0], startOffset=[44722], bytesOffset=[44724]} +orderer.example.com | [f47 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420a89be0) +orderer.example.com | [f3d 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 4 +orderer.example.com | [f48 12-14 09:35:47.15 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [f49 12-14 09:35:47.15 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +orderer.example.com | [f4a 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +orderer.example.com | [f4b 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [f4c 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e618 gate 1513244147182058600 evaluation starts +orderer.example.com | [f4d 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e618 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [f4e 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e618 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [f4f 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [f50 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e618 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +orderer.example.com | [f51 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e618 principal evaluation fails +orderer.example.com | [f52 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e618 gate 1513244147182058600 evaluation fails +orderer.example.com | [f53 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e628 gate 1513244147183121200 evaluation starts +orderer.example.com | [f54 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e628 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [f55 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e628 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [f56 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [f57 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | [f58 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [f59 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e628 principal matched by identity 0 +orderer.example.com | [f5a 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 23 4d 79 24 8f f7 6e e2 c9 f4 2d 21 6c 7c 83 7f |#My$..n...-!l|..| +orderer.example.com | 00000010 48 ff ea 49 09 48 52 b3 70 98 4f 42 60 ad fb 51 |H..I.HR.p.OB`..Q| +orderer.example.com | [f5b 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7c db ce 85 44 49 89 12 c5 61 9b fc |0D. |...DI...a..| +orderer.example.com | 00000010 29 bb b3 e3 5e a4 4d 93 a2 f4 af 77 c3 34 75 84 |)...^.M....w.4u.| +orderer.example.com | 00000020 1a d7 54 b0 02 20 24 c4 ca 12 c4 f7 ac a6 52 4b |..T.. $.......RK| +orderer.example.com | 00000030 47 06 ac 57 c7 d9 00 89 c5 9b 83 92 37 85 00 d1 |G..W........7...| +orderer.example.com | 00000040 e6 ed 8e 40 bf ab |...@..| +orderer.example.com | [f5c 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e628 principal evaluation succeeds for identity 0 +orderer.example.com | [f5d 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e628 gate 1513244147183121200 evaluation succeeds +orderer.example.com | [f5e 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b760 1 [0xc420026610]}) %!s(*policies.implicitMetaPolicy=&{0xc420312500 1 [0xc4200266c0 0xc420026760]})]} +orderer.example.com | [f5f 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +orderer.example.com | [f60 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [f61 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026248 gate 1513244147184836800 evaluation starts +orderer.example.com | [f62 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026248 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [f63 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026248 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [f64 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [f65 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026248 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +orderer.example.com | [f66 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026248 principal evaluation fails +orderer.example.com | [f67 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026248 gate 1513244147184836800 evaluation fails +orderer.example.com | [f68 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026258 gate 1513244147185541300 evaluation starts +orderer.example.com | [f69 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026258 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [f6a 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026258 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [f6b 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +orderer.example.com | TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +orderer.example.com | d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +orderer.example.com | fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +orderer.example.com | zekLSULI9G2UUYA77A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [f6c 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | [f6d 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [f6e 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026258 principal matched by identity 0 +orderer.example.com | [f6f 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 23 4d 79 24 8f f7 6e e2 c9 f4 2d 21 6c 7c 83 7f |#My$..n...-!l|..| +orderer.example.com | 00000010 48 ff ea 49 09 48 52 b3 70 98 4f 42 60 ad fb 51 |H..I.HR.p.OB`..Q| +orderer.example.com | [f70 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7c db ce 85 44 49 89 12 c5 61 9b fc |0D. |...DI...a..| +orderer.example.com | 00000010 29 bb b3 e3 5e a4 4d 93 a2 f4 af 77 c3 34 75 84 |)...^.M....w.4u.| +orderer.example.com | 00000020 1a d7 54 b0 02 20 24 c4 ca 12 c4 f7 ac a6 52 4b |..T.. $.......RK| +orderer.example.com | 00000030 47 06 ac 57 c7 d9 00 89 c5 9b 83 92 37 85 00 d1 |G..W........7...| +orderer.example.com | 00000040 e6 ed 8e 40 bf ab |...@..| +orderer.example.com | [f71 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026258 principal evaluation succeeds for identity 0 +orderer.example.com | [f72 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026258 gate 1513244147185541300 evaluation succeeds +orderer.example.com | [f73 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b760 1 [0xc420026610]}) %!s(*policies.implicitMetaPolicy=&{0xc420312500 1 [0xc4200266c0 0xc420026760]})]} +orderer.example.com | [f74 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +orderer.example.com | [f75 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [f76 12-14 09:35:47.18 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [f77 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block +orderer.example.com | [f78 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [4] +orderer.example.com | [f79 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44722] +orderer.example.com | [f7a 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5218], Going to peek [8] bytes +orderer.example.com | [f7b 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5216], placementInfo={fileNum=[0], startOffset=[44722], bytesOffset=[44724]} +orderer.example.com | [f7c 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42017c5a0 chain:0xc42017d3e0 cutter:0xc420137770 filters:0xc42017cc20 signer:0x128b4a8 lastConfig:2 lastConfigSeq:3} +orderer.example.com | [f7d 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +orderer.example.com | [f7e 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [f7f 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [f80 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [f81 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [f82 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...B7E713A4F7E97C0611A222FC68E1EFFA +orderer.example.com | [f83 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 22A98DFB686BB4E9C76F2AED6119476B7287AC2AFD5096A663CE4508338968E4 +orderer.example.com | [f84 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [f85 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [f86 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | [f87 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [f88 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [f89 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFF050A0A4F7264657265724D53...B7E713A4F7E97C0611A222FC68E1EFFA +orderer.example.com | [f8a 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: F5CD37305862390477D9FDC865CC988406AB901F3197E0DF50435DC97F6639FC +orderer.example.com | [f8b 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x9b, 0x95, 0xb3, 0x7b, 0x11, 0xfd, 0xc9, 0x9e, 0x30, 0x1a, 0xb0, 0x98, 0x35, 0x8, 0x41, 0x3a, 0x5c, 0x97, 0x3e, 0x83, 0xb, 0x3f, 0xe5, 0xfb, 0xd3, 0xaf, 0x9a, 0x1f, 0x2c, 0x58, 0x50, 0x1f} txOffsets= +orderer.example.com | txId=c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442 locPointer=offset=70, bytesLength=2848 +orderer.example.com | ] +orderer.example.com | [f8c 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54617], isChainEmpty=[false], lastBlockNumber=[5] +orderer.example.com | [f8e 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [5] +orderer.example.com | [f8f 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49940] +orderer.example.com | [f90 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4677], Going to peek [8] bytes +orderer.example.com | [f92 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4675], placementInfo={fileNum=[0], startOffset=[49940], bytesOffset=[49942]} +orderer.example.com | [f93 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42088b800) +orderer.example.com | [f91 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [5] +orderer.example.com | [f94 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49940] +orderer.example.com | [f95 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4677], Going to peek [8] bytes +orderer.example.com | [f96 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4675], placementInfo={fileNum=[0], startOffset=[49940], bytesOffset=[49942]} +orderer.example.com | [f8d 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 5 +orderer.example.com | [f97 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420a89be0) +orderer.example.com | [f98 12-14 09:36:05.85 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [f99 12-14 09:36:05.85 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +orderer.example.com | [f9a 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +orderer.example.com | [f9b 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [f9c 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262d0 gate 1513244165876459800 evaluation starts +orderer.example.com | [f9d 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262d0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [f9e 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262d0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [f9f 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [fa0 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262d0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +orderer.example.com | [fa1 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262d0 principal evaluation fails +orderer.example.com | [fa2 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262d0 gate 1513244165876459800 evaluation fails +orderer.example.com | [fa3 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262e0 gate 1513244165876970100 evaluation starts +orderer.example.com | [fa4 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262e0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [fa5 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262e0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [fa6 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [fa7 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262e0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +orderer.example.com | [fa8 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262e0 principal evaluation fails +orderer.example.com | [fa9 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262e0 gate 1513244165876970100 evaluation fails +orderer.example.com | [faa 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262f0 gate 1513244165877367400 evaluation starts +orderer.example.com | [fab 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [fac 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [fad 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [fae 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | [faf 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [fb0 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f0 principal matched by identity 0 +orderer.example.com | [fb1 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 34 06 f8 bc 14 a7 d8 85 93 5b ef 16 33 79 f7 24 |4........[..3y.$| +orderer.example.com | 00000010 a8 e7 5a f5 65 ce c3 ab c5 0a fd c2 c9 04 38 ad |..Z.e.........8.| +orderer.example.com | [fb2 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f1 44 ec d1 06 a1 db 5a 1d bd 1a |0E.!..D.....Z...| +orderer.example.com | 00000010 3d d4 c3 2e d1 90 8d 62 7b e0 92 33 83 d9 ec ed |=......b{..3....| +orderer.example.com | 00000020 6b 8a 3e 06 d4 02 20 04 62 f0 bf eb ac f0 4d 15 |k.>... .b.....M.| +orderer.example.com | 00000030 2a 40 d4 17 3f 6d 2e f2 e0 f6 d5 57 a1 9b 91 c4 |*@..?m.....W....| +orderer.example.com | 00000040 5d 5f 53 09 07 80 3e |]_S...>| +orderer.example.com | [fb3 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f0 principal evaluation succeeds for identity 0 +orderer.example.com | [fb4 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262f0 gate 1513244165877367400 evaluation succeeds +orderer.example.com | [fb5 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b760 1 [0xc420026610]}) %!s(*policies.implicitMetaPolicy=&{0xc420312500 1 [0xc4200266c0 0xc420026760]})]} +orderer.example.com | [fb6 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +orderer.example.com | [fb7 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [fb8 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026308 gate 1513244165878314200 evaluation starts +orderer.example.com | [fb9 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026308 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [fba 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026308 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [fbb 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [fbc 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026308 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +orderer.example.com | [fbd 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026308 principal evaluation fails +orderer.example.com | [fbe 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026308 gate 1513244165878314200 evaluation fails +orderer.example.com | [fbf 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026318 gate 1513244165878724700 evaluation starts +orderer.example.com | [fc0 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026318 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [fc1 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026318 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [fc2 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [fc3 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026318 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +orderer.example.com | [fc4 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026318 principal evaluation fails +orderer.example.com | [fc5 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026318 gate 1513244165878724700 evaluation fails +orderer.example.com | [fc6 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026328 gate 1513244165879539200 evaluation starts +orderer.example.com | [fc7 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026328 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [fc8 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026328 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [fc9 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +orderer.example.com | ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +orderer.example.com | G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +orderer.example.com | BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +orderer.example.com | Xk1Xy2C2aVQjOcr++w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [fca 12-14 09:36:05.88 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | [fcb 12-14 09:36:05.88 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [fcc 12-14 09:36:05.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026328 principal matched by identity 0 +orderer.example.com | [fcd 12-14 09:36:05.88 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 34 06 f8 bc 14 a7 d8 85 93 5b ef 16 33 79 f7 24 |4........[..3y.$| +orderer.example.com | 00000010 a8 e7 5a f5 65 ce c3 ab c5 0a fd c2 c9 04 38 ad |..Z.e.........8.| +orderer.example.com | [fce 12-14 09:36:05.88 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f1 44 ec d1 06 a1 db 5a 1d bd 1a |0E.!..D.....Z...| +orderer.example.com | 00000010 3d d4 c3 2e d1 90 8d 62 7b e0 92 33 83 d9 ec ed |=......b{..3....| +orderer.example.com | 00000020 6b 8a 3e 06 d4 02 20 04 62 f0 bf eb ac f0 4d 15 |k.>... .b.....M.| +orderer.example.com | 00000030 2a 40 d4 17 3f 6d 2e f2 e0 f6 d5 57 a1 9b 91 c4 |*@..?m.....W....| +orderer.example.com | 00000040 5d 5f 53 09 07 80 3e |]_S...>| +orderer.example.com | [fcf 12-14 09:36:05.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026328 principal evaluation succeeds for identity 0 +orderer.example.com | [fd0 12-14 09:36:05.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026328 gate 1513244165879539200 evaluation succeeds +orderer.example.com | [fd1 12-14 09:36:05.88 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b760 1 [0xc420026610]}) %!s(*policies.implicitMetaPolicy=&{0xc420312500 1 [0xc4200266c0 0xc420026760]})]} +orderer.example.com | [fd2 12-14 09:36:05.88 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +orderer.example.com | [fd3 12-14 09:36:05.88 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [fd4 12-14 09:36:05.88 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [fd5 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block +orderer.example.com | [fd6 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [5] +orderer.example.com | [fd7 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49940] +orderer.example.com | [fd8 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4677], Going to peek [8] bytes +orderer.example.com | [fd9 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4675], placementInfo={fileNum=[0], startOffset=[49940], bytesOffset=[49942]} +orderer.example.com | [fda 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42017c5a0 chain:0xc42017d3e0 cutter:0xc420137770 filters:0xc42017cc20 signer:0x128b4a8 lastConfig:2 lastConfigSeq:3} +orderer.example.com | [fdb 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +orderer.example.com | [fdc 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [fdd 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [fde 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [fdf 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [fe0 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...AEE2A6368FA76B17A581FAB01514BFAB +orderer.example.com | [fe1 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 81D6AB9D8F78FE63FFCAF3F17FF1DF59A2B53829FD9FD1EB11B71F64CF0AB71E +orderer.example.com | [fe2 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [fe3 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [fe4 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | [fe5 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [fe6 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [fe7 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFF050A0A4F7264657265724D53...AEE2A6368FA76B17A581FAB01514BFAB +orderer.example.com | [fe8 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: FBDFC6552BA07C920B8EAE29AAEA4603D1E5AB39789E318FA271C9AF964A3816 +orderer.example.com | [fe9 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xb7, 0x3b, 0x85, 0x60, 0xf5, 0x69, 0xc2, 0xb5, 0x50, 0x9c, 0x93, 0x37, 0x5a, 0x3d, 0x62, 0xc7, 0x7a, 0xcb, 0xad, 0x7e, 0x85, 0x6, 0x13, 0x31, 0x8b, 0xad, 0x29, 0x6d, 0x1a, 0x93, 0xe0, 0x1d} txOffsets= +orderer.example.com | txId=8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1 locPointer=offset=70, bytesLength=2850 +orderer.example.com | ] +orderer.example.com | [fea 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59298], isChainEmpty=[false], lastBlockNumber=[6] +orderer.example.com | [feb 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 6 +orderer.example.com | [fec 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [6] +orderer.example.com | [fed 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54617] +orderer.example.com | [fef 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4681], Going to peek [8] bytes +orderer.example.com | [ff0 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4679], placementInfo={fileNum=[0], startOffset=[54617], bytesOffset=[54619]} +orderer.example.com | [ff1 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42088b800) +orderer.example.com | [fee 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [6] +orderer.example.com | [ff2 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54617] +orderer.example.com | [ff3 12-14 09:36:07.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4681], Going to peek [8] bytes +orderer.example.com | [ff4 12-14 09:36:07.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4679], placementInfo={fileNum=[0], startOffset=[54617], bytesOffset=[54619]} +orderer.example.com | [ff5 12-14 09:36:07.89 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420a89be0) +orderer.example.com | [ff6 12-14 09:36:07.97 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [ff7 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +orderer.example.com | [ff8 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [ff9 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [ffa 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026368 gate 1513244167980968200 evaluation starts +orderer.example.com | [ffb 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026368 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [ffc 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026368 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [ffd 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -11403,13 +18289,37 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [9e3 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263e0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [9e4 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263e0 principal evaluation fails -orderer.example.com | [9e5 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263e0 gate 1512459079570055700 evaluation fails -orderer.example.com | [9e6 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263f0 gate 1512459079572213700 evaluation starts -orderer.example.com | [9e7 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263f0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [9e8 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [9e9 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [ffe 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [fff 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [1000 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026368 principal matched by identity 0 +orderer.example.com | [1001 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 37 5b c6 1c e5 61 8c bf ea 4d 61 ec 33 5a 50 8d |7[...a...Ma.3ZP.| +orderer.example.com | 00000010 76 2f 9a 77 2e 08 c4 58 a9 b1 75 d9 d7 68 cb 47 |v/.w...X..u..h.G| +orderer.example.com | [1002 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 67 5f e0 f0 cd aa f3 58 e1 75 22 a9 |0D. g_.....X.u".| +orderer.example.com | 00000010 fa 6d 78 fb b6 56 75 62 c7 cc a2 49 5a e7 bf de |.mx..Vub...IZ...| +orderer.example.com | 00000020 66 b8 8d ee 02 20 0f ad 8f a4 a8 80 64 e8 2e 66 |f.... ......d..f| +orderer.example.com | 00000030 8f b6 12 fe a5 5f 53 ce cd 33 7b c6 b4 2a 2f 55 |....._S..3{..*/U| +orderer.example.com | 00000040 44 65 8d cf 67 eb |De..g.| +orderer.example.com | [1003 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026368 principal evaluation succeeds for identity 0 +orderer.example.com | [1004 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026368 gate 1513244167980968200 evaluation succeeds +orderer.example.com | [1005 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b600 1 [0xc420026660]}) %!s(*policies.implicitMetaPolicy=&{0xc420312280 1 [0xc420026710 0xc4200267b0]})]} +orderer.example.com | [1006 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420afe120) start: > stop: > +orderer.example.com | [1007 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +orderer.example.com | [1008 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +orderer.example.com | [1009 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[59298], Going to peek [8] bytes +orderer.example.com | [100a 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[11943], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | [100b 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420afe120) +orderer.example.com | [100c 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc420afe120), waiting for new SeekInfo +orderer.example.com | [100d 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [100e 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [100f 12-14 09:36:07.98 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [1010 12-14 09:36:08.07 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [1011 12-14 09:36:08.07 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +orderer.example.com | [1012 12-14 09:36:08.07 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [1013 12-14 09:36:08.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [1014 12-14 09:36:08.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263b0 gate 1513244168079108000 evaluation starts +orderer.example.com | [1015 12-14 09:36:08.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263b0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [1016 12-14 09:36:08.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263b0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [1017 12-14 09:36:08.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -11422,13 +18332,37 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [9ea 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263f0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [9eb 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263f0 principal evaluation fails -orderer.example.com | [9ec 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263f0 gate 1512459079572213700 evaluation fails -orderer.example.com | [9ed 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026400 gate 1512459079573945100 evaluation starts -orderer.example.com | [9ee 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026400 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [9ef 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026400 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [9f0 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [1018 12-14 09:36:08.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [1019 12-14 09:36:08.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [101a 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263b0 principal matched by identity 0 +orderer.example.com | [101b 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 59 49 52 de f9 4c 9e 81 81 f9 0d 87 71 e2 fb 0e |YIR..L......q...| +orderer.example.com | 00000010 cc 4a 7b ba c6 3a 01 23 2b 6b 15 e5 85 45 f2 20 |.J{..:.#+k...E. | +orderer.example.com | [101c 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 a6 e4 30 4d 6f e9 f6 ec 82 69 92 |0E.!...0Mo....i.| +orderer.example.com | 00000010 ed e7 25 27 48 e1 7e 10 a3 07 9a 02 af a9 aa 2f |..%'H.~......../| +orderer.example.com | 00000020 cf c5 f4 fe db 02 20 22 53 cd d9 51 0c 70 d7 b3 |...... "S..Q.p..| +orderer.example.com | 00000030 3c 57 0d 0a 49 75 ad cf 64 1b 4b 73 f1 b1 e5 82 | DEBU 0xc4200263b0 principal evaluation succeeds for identity 0 +orderer.example.com | [101e 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263b0 gate 1513244168079108000 evaluation succeeds +orderer.example.com | [101f 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b600 1 [0xc420026660]}) %!s(*policies.implicitMetaPolicy=&{0xc420312280 1 [0xc420026710 0xc4200267b0]})]} +orderer.example.com | [1020 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420836be0) start: > stop: > +orderer.example.com | [1021 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | [1022 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11945] +orderer.example.com | [1023 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[47353], Going to peek [8] bytes +orderer.example.com | [1024 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13749], placementInfo={fileNum=[0], startOffset=[11945], bytesOffset=[11947]} +orderer.example.com | [1025 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420836be0) +orderer.example.com | [1026 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc420836be0), waiting for new SeekInfo +orderer.example.com | [1027 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [1028 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [1029 12-14 09:36:08.08 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [102a 12-14 09:36:08.17 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [102b 12-14 09:36:08.17 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +orderer.example.com | [102c 12-14 09:36:08.17 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [102d 12-14 09:36:08.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [102e 12-14 09:36:08.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263f8 gate 1513244168178901500 evaluation starts +orderer.example.com | [102f 12-14 09:36:08.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263f8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [1030 12-14 09:36:08.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [1031 12-14 09:36:08.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -11441,34 +18375,37 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [9f1 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [9f2 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [9f3 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026400 principal matched by identity 0 -orderer.example.com | [9f4 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d9 31 34 01 d4 f0 a2 68 f2 11 35 c1 50 b9 83 f0 |.14....h..5.P...| -orderer.example.com | 00000010 06 ac 24 db d5 88 ca a5 b1 59 7f 4c 72 aa f7 7c |..$......Y.Lr..|| -orderer.example.com | [9f5 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 84 de c5 8c 62 e4 89 d8 2f 9f e6 |0E.!.....b.../..| -orderer.example.com | 00000010 7a 67 39 8c 53 84 66 08 52 43 59 c3 2d ea 9b e7 |zg9.S.f.RCY.-...| -orderer.example.com | 00000020 06 cf 14 09 9c 02 20 4a f2 d0 56 29 ad 82 7c 8c |...... J..V)..|.| -orderer.example.com | 00000030 50 3d 49 26 2e dc 9b 44 d7 3d 49 11 f7 05 03 1f |P=I&...D.=I.....| -orderer.example.com | 00000040 e8 c7 c7 4b af 76 5a |...K.vZ| -orderer.example.com | [9f6 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026400 principal evaluation succeeds for identity 0 -orderer.example.com | [9f7 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026400 gate 1512459079573945100 evaluation succeeds -orderer.example.com | [9f8 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bf20 1 [0xc420026cb8 0xc420026d60]}) %!s(*policies.implicitMetaPolicy=&{0xc42037c280 1 [0xc420026dd8]})]} -orderer.example.com | [9f9 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc4204e2960) start: > stop: > -orderer.example.com | [9fa 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 0 -orderer.example.com | [9fb 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4204e2960) -orderer.example.com | [9fc 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc4204e2960), waiting for new SeekInfo -orderer.example.com | [9fd 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [9fe 12-05 07:31:19.58 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [9ff 12-05 07:31:19.58 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [a00 12-05 07:31:19.69 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [a01 12-05 07:31:19.69 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [a02 12-05 07:31:19.69 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [a03 12-05 07:31:19.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [a04 12-05 07:31:19.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201144a8 gate 1512459079698964000 evaluation starts -orderer.example.com | [a05 12-05 07:31:19.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201144a8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a06 12-05 07:31:19.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201144a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [a07 12-05 07:31:19.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [1032 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [1033 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [1034 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263f8 principal matched by identity 0 +orderer.example.com | [1035 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 52 9d 80 2d a4 14 72 9d ba 7b 70 7f 9a 14 18 76 |R..-..r..{p....v| +orderer.example.com | 00000010 97 46 b8 d8 dd f6 e0 17 93 f2 41 12 be 97 93 d1 |.F........A.....| +orderer.example.com | [1036 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ad 35 fb 9b 61 a4 e4 e9 a4 f0 bf |0E.!..5..a......| +orderer.example.com | 00000010 e3 8a 51 0a 31 18 ed f6 fe f6 fe 2b 88 fb ba f3 |..Q.1......+....| +orderer.example.com | 00000020 0b 51 20 2c 3d 02 20 7f 68 85 f5 44 07 6d 66 3a |.Q ,=. .h..D.mf:| +orderer.example.com | 00000030 a5 60 33 28 bb 4a 81 44 91 92 e9 12 b0 85 18 57 |.`3(.J.D.......W| +orderer.example.com | 00000040 99 9d ac c7 7b a8 ca |....{..| +orderer.example.com | [1037 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263f8 principal evaluation succeeds for identity 0 +orderer.example.com | [1038 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263f8 gate 1513244168178901500 evaluation succeeds +orderer.example.com | [1039 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b600 1 [0xc420026660]}) %!s(*policies.implicitMetaPolicy=&{0xc420312280 1 [0xc420026710 0xc4200267b0]})]} +orderer.example.com | [103a 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420988400) start: > stop: > +orderer.example.com | [103b 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +orderer.example.com | [103c 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25696] +orderer.example.com | [103d 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[33602], Going to peek [8] bytes +orderer.example.com | [103e 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13806], placementInfo={fileNum=[0], startOffset=[25696], bytesOffset=[25698]} +orderer.example.com | [103f 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420988400) +orderer.example.com | [1040 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc420988400), waiting for new SeekInfo +orderer.example.com | [1041 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [1042 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [1043 12-14 09:36:08.18 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [1044 12-14 09:36:08.28 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [1045 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +orderer.example.com | [1046 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [1047 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [1048 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e828 gate 1513244168285260700 evaluation starts +orderer.example.com | [1049 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e828 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [104a 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e828 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [104b 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -11481,13 +18418,37 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a08 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201144a8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [a09 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201144a8 principal evaluation fails -orderer.example.com | [a0a 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201144a8 gate 1512459079698964000 evaluation fails -orderer.example.com | [a0b 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201144d8 gate 1512459079700331000 evaluation starts -orderer.example.com | [a0c 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201144d8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a0d 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201144d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [a0e 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [104c 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [104d 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [104e 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e828 principal matched by identity 0 +orderer.example.com | [104f 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 5a c1 b1 ca 3b 36 33 62 c9 97 ec 1d d8 8f c8 e8 |Z...;63b........| +orderer.example.com | 00000010 52 bb cb 46 e7 37 2e 95 c6 6e 3f d9 ae c6 2c 8e |R..F.7...n?...,.| +orderer.example.com | [1050 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 07 41 fe 8b a3 f6 24 51 d9 5b c4 1b |0D. .A....$Q.[..| +orderer.example.com | 00000010 0e 34 c2 95 78 ff bd 8c 3c 4c ba 34 97 94 29 29 |.4..x... DEBU 0xc42018e828 principal evaluation succeeds for identity 0 +orderer.example.com | [1052 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e828 gate 1513244168285260700 evaluation succeeds +orderer.example.com | [1053 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b600 1 [0xc420026660]}) %!s(*policies.implicitMetaPolicy=&{0xc420312280 1 [0xc420026710 0xc4200267b0]})]} +orderer.example.com | [1054 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420bc6920) start: > stop: > +orderer.example.com | [1055 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] +orderer.example.com | [1056 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39504] +orderer.example.com | [1057 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[19794], Going to peek [8] bytes +orderer.example.com | [1058 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5216], placementInfo={fileNum=[0], startOffset=[39504], bytesOffset=[39506]} +orderer.example.com | [1059 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420bc6920) +orderer.example.com | [105a 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc420bc6920), waiting for new SeekInfo +orderer.example.com | [105b 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [105c 12-14 09:36:08.29 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [105d 12-14 09:36:08.29 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [105e 12-14 09:36:08.40 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [105f 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +orderer.example.com | [1060 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [1061 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [1062 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026448 gate 1513244168403593900 evaluation starts +orderer.example.com | [1063 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026448 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [1064 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026448 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [1065 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -11500,13 +18461,37 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a0f 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201144d8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [a10 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201144d8 principal evaluation fails -orderer.example.com | [a11 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201144d8 gate 1512459079700331000 evaluation fails -orderer.example.com | [a12 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420114030 gate 1512459079704404000 evaluation starts -orderer.example.com | [a13 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114030 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a14 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114030 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [a15 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [1066 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [1067 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [1068 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026448 principal matched by identity 0 +orderer.example.com | [1069 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d2 79 99 80 56 d4 bb 7e 76 3b 4f 05 f3 5e ba c6 |.y..V..~v;O..^..| +orderer.example.com | 00000010 1a 47 54 37 2e 06 a8 44 35 30 85 28 e4 e1 07 f2 |.GT7...D50.(....| +orderer.example.com | [106a 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 90 23 7c fe 91 a8 cb 0b a0 a2 e3 |0E.!..#|........| +orderer.example.com | 00000010 40 36 e1 66 26 58 31 e0 91 38 92 8e 40 82 2e a5 |@6.f&X1..8..@...| +orderer.example.com | 00000020 f1 4e a8 c2 02 02 20 10 71 b2 54 f3 17 b0 73 08 |.N.... .q.T...s.| +orderer.example.com | 00000030 7e 82 8c 44 5a da 40 bb bf 95 ae 7d cc ef 93 86 |~..DZ.@....}....| +orderer.example.com | 00000040 30 92 2c 45 05 59 f4 |0.,E.Y.| +orderer.example.com | [106b 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026448 principal evaluation succeeds for identity 0 +orderer.example.com | [106c 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026448 gate 1513244168403593900 evaluation succeeds +orderer.example.com | [106d 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b600 1 [0xc420026660]}) %!s(*policies.implicitMetaPolicy=&{0xc420312280 1 [0xc420026710 0xc4200267b0]})]} +orderer.example.com | [106e 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc42092bc60) start: > stop: > +orderer.example.com | [106f 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [4] +orderer.example.com | [1070 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44722] +orderer.example.com | [1071 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14576], Going to peek [8] bytes +orderer.example.com | [1072 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5216], placementInfo={fileNum=[0], startOffset=[44722], bytesOffset=[44724]} +orderer.example.com | [1073 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42092bc60) +orderer.example.com | [1074 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc42092bc60), waiting for new SeekInfo +orderer.example.com | [1075 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [1076 12-14 09:36:08.41 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [1077 12-14 09:36:08.41 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [1078 12-14 09:36:08.55 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [1079 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +orderer.example.com | [107a 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [107b 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [107c 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e918 gate 1513244168553930400 evaluation starts +orderer.example.com | [107d 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e918 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [107e 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e918 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [107f 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -11519,34 +18504,37 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a16 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [a17 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [a18 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114030 principal matched by identity 0 -orderer.example.com | [a19 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 56 b1 15 66 8d 7c 6e b1 6c 10 70 f1 07 7b 52 31 |V..f.|n.l.p..{R1| -orderer.example.com | 00000010 17 22 88 b7 26 73 4f b3 69 52 7c 52 14 66 76 aa |."..&sO.iR|R.fv.| -orderer.example.com | [a1a 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 64 fd d1 4d 20 24 af 00 04 26 4f 43 |0D. d..M $...&OC| -orderer.example.com | 00000010 c6 9c 9e 88 38 db 95 1b d7 28 61 1b b6 d7 cd 58 |....8....(a....X| -orderer.example.com | 00000020 31 99 40 be 02 20 37 6e a5 95 ba 6b 83 83 84 bd |1.@.. 7n...k....| -orderer.example.com | 00000030 34 6b 25 8a 7a 33 70 29 49 4f e5 2f 3a 4d fc 5c |4k%.z3p)IO./:M.\| -orderer.example.com | 00000040 ef 0f 33 04 92 20 |..3.. | -orderer.example.com | [a1b 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114030 principal evaluation succeeds for identity 0 -orderer.example.com | [a1c 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420114030 gate 1512459079704404000 evaluation succeeds -orderer.example.com | [a1d 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bf20 1 [0xc420026cb8 0xc420026d60]}) %!s(*policies.implicitMetaPolicy=&{0xc42037c280 1 [0xc420026dd8]})]} -orderer.example.com | [a1e 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc4200e1f20) start: > stop: > -orderer.example.com | [a1f 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 1 -orderer.example.com | [a20 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4200e1f20) -orderer.example.com | [a21 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc4200e1f20), waiting for new SeekInfo -orderer.example.com | [a22 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [a23 12-05 07:31:19.71 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [a24 12-05 07:31:19.71 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [a25 12-05 07:31:19.82 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [a26 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [a27 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [a28 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [a29 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260e8 gate 1512459079824524600 evaluation starts -orderer.example.com | [a2a 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260e8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a2b 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [a2c 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [1080 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [1081 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [1082 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e918 principal matched by identity 0 +orderer.example.com | [1083 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 91 b8 4d 91 27 98 34 6b 05 54 85 f1 ab f4 80 f5 |..M.'.4k.T......| +orderer.example.com | 00000010 2e 9e 31 18 f3 44 94 ac ab 7b cb 44 49 1c 29 85 |..1..D...{.DI.).| +orderer.example.com | [1084 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 86 bd 49 a1 9e f9 97 51 88 01 2a |0E.!...I....Q..*| +orderer.example.com | 00000010 1d 29 37 17 4d 86 f3 52 93 79 df d2 51 74 12 c7 |.)7.M..R.y..Qt..| +orderer.example.com | 00000020 42 f3 40 00 52 02 20 7b ce 57 f6 94 8b f4 e7 1e |B.@.R. {.W......| +orderer.example.com | 00000030 ea 90 2a 7f 50 c9 78 75 21 3f 29 9d 1a 9f b7 86 |..*.P.xu!?).....| +orderer.example.com | 00000040 d2 0f 5c 81 4d 70 79 |..\.Mpy| +orderer.example.com | [1085 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e918 principal evaluation succeeds for identity 0 +orderer.example.com | [1086 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e918 gate 1513244168553930400 evaluation succeeds +orderer.example.com | [1087 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [Readers %!s(*policies.implicitMetaPolicy=&{0xc42039c700 1 [0xc420026080]})]} +orderer.example.com | [1088 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Received seekInfo (0xc420c36720) start: > stop: > +orderer.example.com | [1089 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +orderer.example.com | [108a 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +orderer.example.com | [108b 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[23720], Going to peek [8] bytes +orderer.example.com | [108c 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9084], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | [108d 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Delivering block for (0xc420c36720) +orderer.example.com | [108e 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Done delivering for (0xc420c36720), waiting for new SeekInfo +orderer.example.com | [108f 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [1090 12-14 09:36:08.56 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [1091 12-14 09:36:08.56 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [1092 12-14 09:36:08.64 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [1093 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +orderer.example.com | [1094 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [1095 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [1096 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260f8 gate 1513244168645520600 evaluation starts +orderer.example.com | [1097 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260f8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [1098 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [1099 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -11559,297 +18547,26 @@ Attaching to peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example. orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a2d 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260e8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [a2e 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260e8 principal evaluation fails -orderer.example.com | [a2f 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260e8 gate 1512459079824524600 evaluation fails -orderer.example.com | [a30 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200261e8 gate 1512459079826983000 evaluation starts -orderer.example.com | [a31 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261e8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a32 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [a33 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a34 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261e8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [a35 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261e8 principal evaluation fails -orderer.example.com | [a36 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200261e8 gate 1512459079826983000 evaluation fails -orderer.example.com | [a37 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262c0 gate 1512459079828209300 evaluation starts -orderer.example.com | [a38 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262c0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a39 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262c0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [a3a 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a3b 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [a3c 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [a3d 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262c0 principal matched by identity 0 -orderer.example.com | [a3e 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 a1 72 73 23 28 0d 38 3c 60 27 80 04 bc 06 1f 81 |.rs#(.8<`'......| -orderer.example.com | 00000010 bf 8f 79 07 99 be 33 02 60 b5 b0 5d c1 84 6f 3f |..y...3.`..]..o?| -orderer.example.com | [a3f 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7e 8e b6 ad 02 11 bb c7 28 8e d7 f3 |0D. ~.......(...| -orderer.example.com | 00000010 e4 cf b0 d8 4b 26 9f 3f 82 26 21 39 68 67 22 01 |....K&.?.&!9hg".| -orderer.example.com | 00000020 21 69 d7 68 02 20 66 df 68 99 a8 02 1a e4 dd 8e |!i.h. f.h.......| -orderer.example.com | 00000030 08 3c 9f ca f9 f0 45 15 72 5f 5b 9e 5f c3 e9 38 |.<....E.r_[._..8| -orderer.example.com | 00000040 fc 89 be 88 7e 8d |....~.| -orderer.example.com | [a40 12-05 07:31:19.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262c0 principal evaluation succeeds for identity 0 -orderer.example.com | [a41 12-05 07:31:19.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262c0 gate 1512459079828209300 evaluation succeeds -orderer.example.com | [a42 12-05 07:31:19.83 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bf20 1 [0xc420026cb8 0xc420026d60]}) %!s(*policies.implicitMetaPolicy=&{0xc42037c280 1 [0xc420026dd8]})]} -orderer.example.com | [a43 12-05 07:31:19.83 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc42036c9c0) start: > stop: > -orderer.example.com | [a44 12-05 07:31:19.83 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 2 -orderer.example.com | [a45 12-05 07:31:19.83 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42036c9c0) -orderer.example.com | [a46 12-05 07:31:19.83 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc42036c9c0), waiting for new SeekInfo -orderer.example.com | [a47 12-05 07:31:19.83 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [a48 12-05 07:31:19.83 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [a49 12-05 07:31:19.83 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [a4a 12-05 07:31:19.94 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [a4b 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [a4c 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [a4d 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [a4e 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201142a0 gate 1512459079941483300 evaluation starts -orderer.example.com | [a4f 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201142a0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a50 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201142a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [a51 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a52 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201142a0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [a53 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201142a0 principal evaluation fails -orderer.example.com | [a54 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201142a0 gate 1512459079941483300 evaluation fails -orderer.example.com | [a55 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201142b0 gate 1512459079943312400 evaluation starts -orderer.example.com | [a56 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201142b0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a57 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201142b0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [a58 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a59 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201142b0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [a5a 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201142b0 principal evaluation fails -orderer.example.com | [a5b 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201142b0 gate 1512459079943312400 evaluation fails -orderer.example.com | [a5c 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201142d8 gate 1512459079944663200 evaluation starts -orderer.example.com | [a5d 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201142d8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a5e 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201142d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [a5f 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a60 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [a61 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [a62 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201142d8 principal matched by identity 0 -orderer.example.com | [a63 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 6f c7 da 4f e6 34 de 72 6a 60 83 23 9b 4f f6 57 |o..O.4.rj`.#.O.W| -orderer.example.com | 00000010 86 ed 31 02 77 28 ce c1 e1 1b 1e 3b 14 c5 9b c2 |..1.w(.....;....| -orderer.example.com | [a64 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 75 cd 59 77 4e 1b 52 4c ac c4 7a d2 |0D. u.YwN.RL..z.| -orderer.example.com | 00000010 03 89 43 ae c2 d9 ca 41 a3 3f d8 3d 17 69 02 d5 |..C....A.?.=.i..| -orderer.example.com | 00000020 23 53 f6 8c 02 20 3f e6 e3 5e 55 8a fb b6 f3 8f |#S... ?..^U.....| -orderer.example.com | 00000030 14 15 c6 16 81 06 12 38 b3 74 b6 27 94 67 6b 7d |.......8.t.'.gk}| -orderer.example.com | 00000040 ec e3 97 6a 83 6b |...j.k| -orderer.example.com | [a65 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201142d8 principal evaluation succeeds for identity 0 -orderer.example.com | [a66 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201142d8 gate 1512459079944663200 evaluation succeeds -orderer.example.com | [a67 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bf20 1 [0xc420026cb8 0xc420026d60]}) %!s(*policies.implicitMetaPolicy=&{0xc42037c280 1 [0xc420026dd8]})]} -orderer.example.com | [a68 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc42021a1e0) start: > stop: > -orderer.example.com | [a69 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 3 -orderer.example.com | [a6a 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42021a1e0) -orderer.example.com | [a6b 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc42021a1e0), waiting for new SeekInfo -orderer.example.com | [a6c 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [a6d 12-05 07:31:19.95 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [a6e 12-05 07:31:19.95 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [a6f 12-05 07:31:20.04 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [a70 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [a71 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [a72 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [a73 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420114410 gate 1512459080048590900 evaluation starts -orderer.example.com | [a74 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114410 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a75 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114410 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [a76 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a77 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114410 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [a78 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114410 principal evaluation fails -orderer.example.com | [a79 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420114410 gate 1512459080048590900 evaluation fails -orderer.example.com | [a7a 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420114420 gate 1512459080049815700 evaluation starts -orderer.example.com | [a7b 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114420 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a7c 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114420 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [a7d 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a7e 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114420 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [a7f 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114420 principal evaluation fails -orderer.example.com | [a80 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420114420 gate 1512459080049815700 evaluation fails -orderer.example.com | [a81 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420114430 gate 1512459080050881600 evaluation starts -orderer.example.com | [a82 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114430 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a83 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114430 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [a84 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a85 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [a86 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [a87 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114430 principal matched by identity 0 -orderer.example.com | [a88 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 0f da 8a d0 81 0a fd 31 64 e9 65 ba 77 11 9e 90 |.......1d.e.w...| -orderer.example.com | 00000010 dc eb 52 6d c2 2c 23 2d 4d 68 80 91 07 17 1f d0 |..Rm.,#-Mh......| -orderer.example.com | [a89 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 26 9a d3 e2 dd 7f 75 7d ed 53 93 37 |0D. &.....u}.S.7| -orderer.example.com | 00000010 27 d3 49 7f 28 72 46 f9 64 59 1c 9b 31 9d cf 8e |'.I.(rF.dY..1...| -orderer.example.com | 00000020 ce d4 86 8f 02 20 15 56 27 1d 34 65 24 39 6b ec |..... .V'.4e$9k.| -orderer.example.com | 00000030 fb 9a aa 71 17 8c 40 b8 cb 15 c4 fa a2 da 48 d1 |...q..@.......H.| -orderer.example.com | 00000040 22 43 b8 62 45 4a |"C.bEJ| -orderer.example.com | [a8a 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114430 principal evaluation succeeds for identity 0 -orderer.example.com | [a8b 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420114430 gate 1512459080050881600 evaluation succeeds -orderer.example.com | [a8c 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bf20 1 [0xc420026cb8 0xc420026d60]}) %!s(*policies.implicitMetaPolicy=&{0xc42037c280 1 [0xc420026dd8]})]} -orderer.example.com | [a8d 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420291060) start: > stop: > -orderer.example.com | [a8e 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 4 -orderer.example.com | [a8f 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420291060) -orderer.example.com | [a90 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc420291060), waiting for new SeekInfo -orderer.example.com | [a91 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [a92 12-05 07:31:20.06 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [a93 12-05 07:31:20.06 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [a94 12-05 07:31:20.15 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [a95 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [a96 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [a97 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [a98 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201144f8 gate 1512459080155989300 evaluation starts -orderer.example.com | [a99 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201144f8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a9a 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201144f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [a9b 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a9c 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [a9d 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [a9e 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201144f8 principal matched by identity 0 -orderer.example.com | [a9f 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 67 61 8a c7 c5 c1 44 6e d8 fa 18 ec 5d 32 66 64 |ga....Dn....]2fd| -orderer.example.com | 00000010 6d cc 81 3c db e1 62 d8 a6 23 bc 2f 51 64 14 c0 |m..<..b..#./Qd..| -orderer.example.com | [aa0 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 14 d0 09 4e cd a1 7d 57 5a 49 a6 c7 |0D. ...N..}WZI..| -orderer.example.com | 00000010 38 4f 52 fa f9 31 9e 26 9c b7 d7 37 e4 f4 a0 16 |8OR..1.&...7....| -orderer.example.com | 00000020 68 9c 04 7a 02 20 3d ad ae da 68 17 af 51 68 cd |h..z. =...h..Qh.| -orderer.example.com | 00000030 c6 33 22 f0 20 26 ce 33 dd 43 9c 58 9e ce a2 7d |.3". &.3.C.X...}| -orderer.example.com | 00000040 d0 b6 f7 50 f0 29 |...P.)| -orderer.example.com | [aa1 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201144f8 principal evaluation succeeds for identity 0 -orderer.example.com | [aa2 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201144f8 gate 1512459080155989300 evaluation succeeds -orderer.example.com | [aa3 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [Readers %!s(*policies.implicitMetaPolicy=&{0xc42039a200 1 [0xc4201146d0]})]} -orderer.example.com | [aa4 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Received seekInfo (0xc4201ef5a0) start: > stop: > -orderer.example.com | [aa5 12-05 07:31:20.16 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 0 -orderer.example.com | [aa6 12-05 07:31:20.16 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Delivering block for (0xc4201ef5a0) -orderer.example.com | [aa7 12-05 07:31:20.16 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Done delivering for (0xc4201ef5a0), waiting for new SeekInfo -orderer.example.com | [aa8 12-05 07:31:20.16 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [aa9 12-05 07:31:20.16 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [aaa 12-05 07:31:20.16 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [aab 12-05 07:31:20.26 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [aac 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [aad 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [aae 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [aaf 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262d0 gate 1512459080264577100 evaluation starts -orderer.example.com | [ab0 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262d0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [ab1 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262d0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [ab2 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -orderer.example.com | EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -orderer.example.com | 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -orderer.example.com | 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [ab3 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [ab4 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [ab5 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262d0 principal matched by identity 0 -orderer.example.com | [ab6 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 07 5e 48 46 21 ba 5d 6c 28 19 0b 53 b9 cd ea 20 |.^HF!.]l(..S... | -orderer.example.com | 00000010 62 16 6f 91 cb f1 c0 68 17 3f 9e 62 d8 3b 00 a7 |b.o....h.?.b.;..| -orderer.example.com | [ab7 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 55 ad 62 c1 e7 62 a9 20 e6 bb f6 d8 |0D. U.b..b. ....| -orderer.example.com | 00000010 8d e7 f7 61 6d 43 71 d9 16 03 92 09 6b d8 76 e2 |...amCq.....k.v.| -orderer.example.com | 00000020 48 05 3d b3 02 20 25 90 0c 37 1e 97 8c ff 2a a2 |H.=.. %..7....*.| -orderer.example.com | 00000030 0c 5a b1 6a 78 33 2f 29 cd 76 6a df eb 35 a6 c6 |.Z.jx3/).vj..5..| -orderer.example.com | 00000040 5e 2f be 76 a1 a8 |^/.v..| -orderer.example.com | [ab8 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262d0 principal evaluation succeeds for identity 0 -orderer.example.com | [ab9 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262d0 gate 1512459080264577100 evaluation succeeds -orderer.example.com | [aba 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [Readers %!s(*policies.implicitMetaPolicy=&{0xc42039a200 1 [0xc4201146d0]})]} -orderer.example.com | [abb 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Received seekInfo (0xc4203a58c0) start: > stop: > -orderer.example.com | [abc 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 1 -orderer.example.com | [abd 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Delivering block for (0xc4203a58c0) -orderer.example.com | [abe 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Done delivering for (0xc4203a58c0), waiting for new SeekInfo -orderer.example.com | [abf 12-05 07:31:20.27 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [ac0 12-05 07:31:20.27 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [ac1 12-05 07:31:20.27 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [109a 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [109b 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [109c 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260f8 principal matched by identity 0 +orderer.example.com | [109d 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d2 60 7e e2 36 a7 e4 f1 90 91 75 14 ed 80 b1 20 |.`~.6.....u.... | +orderer.example.com | 00000010 03 49 94 b3 4f a0 93 4b dc 6d 39 10 25 51 ee 75 |.I..O..K.m9.%Q.u| +orderer.example.com | [109e 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 32 d2 2c 0d 1c 76 22 46 a4 22 bf be |0D. 2.,..v"F."..| +orderer.example.com | 00000010 b3 5f 0e 24 8a 48 6d 87 0a ce 29 a5 cd b5 9b 27 |._.$.Hm...)....'| +orderer.example.com | 00000020 40 4e 4b ee 02 20 1e 6e 2a d6 ec 10 0d 04 b8 39 |@NK.. .n*......9| +orderer.example.com | 00000030 ce a2 ce 09 bb 83 b6 0e b7 b2 86 b7 4f af cb 69 |............O..i| +orderer.example.com | 00000040 2e d8 07 36 fe 41 |...6.A| +orderer.example.com | [109f 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260f8 principal evaluation succeeds for identity 0 +orderer.example.com | [10a0 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260f8 gate 1513244168645520600 evaluation succeeds +orderer.example.com | [10a1 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [Readers %!s(*policies.implicitMetaPolicy=&{0xc42039c700 1 [0xc420026080]})]} +orderer.example.com | [10a2 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Received seekInfo (0xc42092a440) start: > stop: > +orderer.example.com | [10a3 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | [10a4 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9086] +orderer.example.com | [10a5 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14634], Going to peek [8] bytes +orderer.example.com | [10a6 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14632], placementInfo={fileNum=[0], startOffset=[9086], bytesOffset=[9088]} +orderer.example.com | [10a7 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Delivering block for (0xc42092a440) +orderer.example.com | [10a8 12-14 09:36:08.65 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Done delivering for (0xc42092a440), waiting for new SeekInfo +orderer.example.com | [10a9 12-14 09:36:08.65 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [10aa 12-14 09:36:08.65 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [10ab 12-14 09:36:08.65 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream diff --git a/hyperledger_fabric/v1.0.5/solo/logs/dev_orderer.log b/hyperledger_fabric/v1.0.5/solo/logs/dev_orderer.log index c5a42234..94fc6c0b 100644 --- a/hyperledger_fabric/v1.0.5/solo/logs/dev_orderer.log +++ b/hyperledger_fabric/v1.0.5/solo/logs/dev_orderer.log @@ -1,29 +1,29 @@ -2017-12-05 07:29:40.130 UTC [orderer/main] main -> INFO 001 Starting orderer: - Version: 1.0.4 +2017-12-14 09:34:34.201 UTC [orderer/main] main -> INFO 001 Starting orderer: + Version: 1.0.5 Go version: go1.7.5 OS/Arch: linux/amd64 -[002 12-05 07:29:40.13 UTC] [main] main.initializeGrpcServer.initializeSecureServerConfig -> INFO Starting orderer with TLS enabled -[003 12-05 07:29:40.17 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.setFactories.initBCCSP.Get.NewFileBasedKeyStore.Init.openKeyStore -> DEBU KeyStore opened at [/var/hyperledger/orderer/msp/keystore]...done -[004 12-05 07:29:40.17 UTC] [github.com/hyperledger/fabric/bccsp/factory] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.setFactories.initBCCSP -> DEBU Initialize BCCSP [SW] -[005 12-05 07:29:40.17 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/signcerts -[006 12-05 07:29:40.17 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem -[007 12-05 07:29:40.18 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/cacerts -[008 12-05 07:29:40.18 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem -[009 12-05 07:29:40.18 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/admincerts -[00a 12-05 07:29:40.18 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem -[00b 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/intermediatecerts -[00c 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] -[00d 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlscacerts -[00e 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem -[00f 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts -[010 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/var/hyperledger/orderer/msp/tlsintermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/tlsintermediatecerts: no such file or directory] -[011 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/crls -[012 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/var/hyperledger/orderer/msp/crls]. Skipping. [stat /var/hyperledger/orderer/msp/crls: no such file or directory] -[013 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] -[014 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[015 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP -> DEBU Created new local MSP -[016 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup -> DEBU Setting up MSP instance OrdererMSP -[017 12-05 07:29:40.19 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[002 12-14 09:34:34.22 UTC] [main] main.initializeGrpcServer.initializeSecureServerConfig -> INFO Starting orderer with TLS enabled +[003 12-14 09:34:34.29 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.setFactories.initBCCSP.Get.NewFileBasedKeyStore.Init.openKeyStore -> DEBU KeyStore opened at [/var/hyperledger/orderer/msp/keystore]...done +[004 12-14 09:34:34.29 UTC] [github.com/hyperledger/fabric/bccsp/factory] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.setFactories.initBCCSP -> DEBU Initialize BCCSP [SW] +[005 12-14 09:34:34.29 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/signcerts +[006 12-14 09:34:34.30 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem +[007 12-14 09:34:34.30 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/cacerts +[008 12-14 09:34:34.31 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem +[009 12-14 09:34:34.31 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/admincerts +[00a 12-14 09:34:34.32 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem +[00b 12-14 09:34:34.32 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/intermediatecerts +[00c 12-14 09:34:34.32 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] +[00d 12-14 09:34:34.32 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlscacerts +[00e 12-14 09:34:34.32 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem +[00f 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts +[010 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/var/hyperledger/orderer/msp/tlsintermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/tlsintermediatecerts: no such file or directory] +[011 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/crls +[012 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/var/hyperledger/orderer/msp/crls]. Skipping. [stat /var/hyperledger/orderer/msp/crls: no such file or directory] +[013 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] +[014 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[015 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP -> DEBU Created new local MSP +[016 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup -> DEBU Setting up MSP instance OrdererMSP +[017 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -37,7 +37,7 @@ AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= -----END CERTIFICATE----- -[018 12-05 07:29:40.20 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[018 12-14 09:34:34.33 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -50,7 +50,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[019 12-05 07:29:40.20 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[019 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -63,7 +63,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[01a 12-05 07:29:40.20 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[01a 12-14 09:34:34.34 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -77,8 +77,8 @@ KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv Tg== -----END CERTIFICATE----- -[01b 12-05 07:29:40.20 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [de469e87081a65c13df76f2cc650d87e44f666f558897af7e2b194d67d48549b] at [/var/hyperledger/orderer/msp/keystore/de469e87081a65c13df76f2cc650d87e44f666f558897af7e2b194d67d48549b_sk]... -[01c 12-05 07:29:40.20 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[01b 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [de469e87081a65c13df76f2cc650d87e44f666f558897af7e2b194d67d48549b] at [/var/hyperledger/orderer/msp/keystore/de469e87081a65c13df76f2cc650d87e44f666f558897af7e2b194d67d48549b_sk]... +[01c 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -92,95 +92,116 @@ KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv Tg== -----END CERTIFICATE----- -[01d 12-05 07:29:40.20 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[01e 12-05 07:29:40.20 UTC] [main] main.initializeMultiChainManager.createLedgerFactory -> DEBU Ledger dir: /var/hyperledger/production/orderer -[01f 12-05 07:29:40.20 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] main.initializeMultiChainManager.createLedgerFactory.New -> DEBU Initializing ledger at: /var/hyperledger/production/orderer -[020 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate -> DEBU Initializing chain testchainid at: /var/hyperledger/production/orderer/chain_testchainid -[021 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.newChain -> DEBU Initialized to block height 18446744073709551615 with hash -[022 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] main.initializeMultiChainManager.initializeBootstrapChannel.Append.writeBlock -> DEBU Wrote block 0 -[023 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.readBlock -> DEBU Read block 0 -[024 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.readBlock -> DEBU Read block 0 -[025 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[026 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[027 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[028 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[029 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[02a 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[02b 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums -[02c 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium -[02d 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org2MSP -[02e 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP -[02f 12-05 07:29:40.21 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins -[030 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers -[031 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers -[032 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org1MSP -[033 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP -[034 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers -[035 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers -[036 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins -[037 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy -[038 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/Admins -[039 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[03a 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[03b 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[03c 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[03d 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[03e 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[03f 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[040 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[041 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[042 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[043 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[044 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[045 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[046 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[047 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[048 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[049 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[04a 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[04b 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[04c 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[04d 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig -> DEBU Beginning new config for channel testchainid -[04e 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[04f 12-05 07:29:40.22 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[050 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[051 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[052 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[053 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[054 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[055 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[056 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Consortiums -[057 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.BeginValueProposals.Allocate.NewConsortiumConfig.NewStandardValues -> DEBU Initializing protos for *config.ConsortiumProtos -[058 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.BeginValueProposals.Allocate.NewConsortiumConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelCreationPolicy -[059 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[05a 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[05b 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[05c 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[05d 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[05e 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[05f 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[060 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[061 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[062 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[063 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[064 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[065 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[066 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[067 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[068 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[069 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[06a 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[06b 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[06c 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[06d 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[06e 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[06f 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[070 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[071 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[072 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[073 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[074 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[075 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[01d 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[01e 12-14 09:34:34.35 UTC] [main] main.initializeMultiChainManager.createLedgerFactory -> DEBU Ledger dir: /var/hyperledger/production/orderer +[01f 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/index/] +[020 12-14 09:34:34.35 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/index/] does not exist +[021 12-14 09:34:34.93 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/index/] exists +[022 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: testchainid +[023 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/testchainid/] +[024 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] does not exist +[025 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] exists +[026 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +[027 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +[028 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +[029 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +[02a 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +[02b 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +[02c 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4203ba780)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +[02d 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] +[02e 12-14 09:34:35.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x3f, 0x49, 0xd1, 0xc, 0x1a, 0x11, 0x10, 0x17, 0x73, 0x55, 0x3c, 0xb9, 0x1b, 0x7, 0x1c, 0x86, 0x74, 0x3a, 0xc8, 0x6f, 0xa1, 0x91, 0x5f, 0x0, 0x71, 0x3, 0xe3, 0x9, 0x92, 0xa4, 0x56, 0x14} txOffsets= +txId=d8a16e3a703f1e3b77880d94d15bdbb9db3899ac6817d959660f658bb9543aef locPointer=offset=38, bytesLength=9043 +] +[02f 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[9086], isChainEmpty=[false], lastBlockNumber=[0] +[030 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +[031 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +[032 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9086], Going to peek [8] bytes +[033 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9084], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[034 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +[035 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +[036 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9086], Going to peek [8] bytes +[037 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9084], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[038 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[039 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[03a 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[03b 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[03c 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[03d 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[03e 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums +[03f 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium +[040 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org1MSP +[041 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP +[042 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins +[043 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers +[044 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers +[045 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org2MSP +[046 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP +[047 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers +[048 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers +[049 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins +[04a 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy +[04b 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/Admins +[04c 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[04d 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[04e 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[04f 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[050 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[051 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[052 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[053 12-14 09:34:35.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[054 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[055 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[056 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[057 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[058 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[059 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[05a 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[05b 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[05c 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[05d 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[05e 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[05f 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[060 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig -> DEBU Beginning new config for channel testchainid +[061 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[062 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[063 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[064 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[065 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[066 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[067 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[068 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[069 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Consortiums +[06a 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.BeginValueProposals.Allocate.NewConsortiumConfig.NewStandardValues -> DEBU Initializing protos for *config.ConsortiumProtos +[06b 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.BeginValueProposals.Allocate.NewConsortiumConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelCreationPolicy +[06c 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[06d 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[06e 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[06f 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[070 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[071 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[072 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[073 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[074 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[075 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[076 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[077 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[078 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[079 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[07a 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[07b 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[07c 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[07d 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[07e 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[07f 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[080 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[081 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[082 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[083 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[084 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[085 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[086 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[087 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[088 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -195,7 +216,7 @@ wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL liPpNxLSsBU= -----END CERTIFICATE----- -[076 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[089 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -209,7 +230,7 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[077 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[08a 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -223,11 +244,11 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[078 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[079 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[07a 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[07b 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[07c 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[08b 12-14 09:34:35.20 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[08c 12-14 09:34:35.21 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[08d 12-14 09:34:35.21 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[08e 12-14 09:34:35.21 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[08f 12-14 09:34:35.21 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -242,7 +263,7 @@ kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq VA7fF8MfGA== -----END CERTIFICATE----- -[07d 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[090 12-14 09:34:35.21 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -256,7 +277,7 @@ G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb Xk1Xy2C2aVQjOcr++w== -----END CERTIFICATE----- -[07e 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[091 12-14 09:34:35.22 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -270,11 +291,11 @@ G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb Xk1Xy2C2aVQjOcr++w== -----END CERTIFICATE----- -[07f 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[080 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[081 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[082 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[083 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[092 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[093 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[094 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[095 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[096 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -288,7 +309,7 @@ AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= -----END CERTIFICATE----- -[084 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[097 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -301,7 +322,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[085 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[098 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -314,188 +335,239 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[086 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[087 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[088 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[089 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[08a 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to SampleConsortium -[08b 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[08c 12-05 07:29:40.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to SampleConsortium -[08d 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[08e 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to SampleConsortium -[08f 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[090 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to SampleConsortium -[091 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[092 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to SampleConsortium -[093 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[094 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to SampleConsortium -[095 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -[096 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org1MSP/Admins to Consortiums -[097 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -[098 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org1MSP/Readers to Consortiums -[099 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -[09a 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org1MSP/Writers to Consortiums -[09b 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -[09c 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org2MSP/Readers to Consortiums -[09d 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -[09e 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org2MSP/Writers to Consortiums -[09f 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -[0a0 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org2MSP/Admins to Consortiums -[0a1 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[0a2 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -[0a3 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[0a4 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -[0a5 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[0a6 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -[0a7 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[0a8 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[0a9 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[0aa 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[0ab 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[0ac 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/Admins to Channel -[0ad 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org1MSP/Admins for evaluation -[0ae 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Admins to Channel -[0af 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org1MSP/Readers for evaluation -[0b0 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Readers to Channel -[0b1 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org1MSP/Writers for evaluation -[0b2 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Writers to Channel -[0b3 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org2MSP/Readers for evaluation -[0b4 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Readers to Channel -[0b5 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org2MSP/Writers for evaluation -[0b6 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Writers to Channel -[0b7 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org2MSP/Admins for evaluation -[0b8 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Admins to Channel -[0b9 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[0ba 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -[0bb 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[0bc 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -[0bd 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[0be 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -[0bf 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -[0c0 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -[0c1 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -[0c2 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -[0c3 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -[0c4 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -[0c5 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -[0c6 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -[0c7 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Consortiums/Writers -[0c8 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[0c9 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[0ca 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[0cb 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Consortiums/Readers -[0cc 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[0cd 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[0ce 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -[0cf 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[0d0 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -[0d1 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -[0d2 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[0d3 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.readBlock -> DEBU Read block 0 -[0d4 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/orderer/multichain] main.initializeMultiChainManager.NewManagerImpl.newChainSupport -> DEBU [channel: testchainid] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=0): -[0d5 12-05 07:29:40.24 UTC] [github.com/hyperledger/fabric/orderer/multichain] main.initializeMultiChainManager.NewManagerImpl -> INFO Starting with system channel testchainid and orderer type solo -[0d6 12-05 07:29:40.24 UTC] [main] main -> INFO Beginning to serve requests -[0d7 12-05 07:29:42.88 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[0d8 12-05 07:29:42.88 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[0d9 12-05 07:29:42.88 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[0da 12-05 07:29:42.89 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[0db 12-05 07:29:42.89 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop -[0dc 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Preprocessing CONFIG_UPDATE -[0dd 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/orderer/configupdate] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process -> DEBU Processing channel creation request for channel businesschannel -[0de 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[0df 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[0e0 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[0e1 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[0e2 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0ABC060A1B08011A0608E69599D10522...07526561646572731A0641646D696E73 -[0e3 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 6341964D25188EC88D1EA7AEFF9175472DF2D75686EA120C7123CC8D9FE22A8F -[0e4 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[0e5 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[0e6 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[0e7 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[0e8 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[0e9 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[0ea 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[0eb 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[0ec 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[0ed 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[0ee 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[0ef 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[0f0 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[0f1 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[0f2 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[0f3 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[0f4 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[0f5 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[0f6 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[0f7 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[0f8 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[0f9 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[0fa 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[0fb 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[0fc 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[0fd 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[0fe 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[0ff 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[100 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[101 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[102 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[103 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -[104 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[105 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[106 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[107 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[108 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[109 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[10a 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[10b 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -[10c 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[10d 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[10e 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[10f 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[110 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[111 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[112 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[113 12-05 07:29:42.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[114 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[115 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy ChannelCreationPolicy for Application -[116 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[117 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[118 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[119 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[11a 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[11b 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[11c 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[11d 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[11e 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[11f 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[120 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[121 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[122 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[123 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[124 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[125 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[126 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[127 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[128 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[129 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[12a 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[12b 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[12c 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[12d 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[12e 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[12f 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[130 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[131 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[132 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[133 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[134 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[135 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[136 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[137 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[138 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[139 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[13a 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[13b 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[099 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[09a 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[09b 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[09c 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[09d 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to SampleConsortium +[09e 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[09f 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to SampleConsortium +[0a0 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[0a1 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to SampleConsortium +[0a2 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[0a3 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to SampleConsortium +[0a4 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[0a5 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to SampleConsortium +[0a6 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[0a7 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to SampleConsortium +[0a8 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +[0a9 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org2MSP/Admins to Consortiums +[0aa 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +[0ab 12-14 09:34:35.23 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org2MSP/Readers to Consortiums +[0ac 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +[0ad 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org2MSP/Writers to Consortiums +[0ae 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +[0af 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org1MSP/Readers to Consortiums +[0b0 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +[0b1 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org1MSP/Writers to Consortiums +[0b2 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +[0b3 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org1MSP/Admins to Consortiums +[0b4 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[0b5 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +[0b6 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[0b7 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +[0b8 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[0b9 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +[0ba 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[0bb 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[0bc 12-14 09:34:35.24 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[0bd 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[0be 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org2MSP/Writers for evaluation +[0bf 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Writers to Channel +[0c0 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org1MSP/Readers for evaluation +[0c1 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Readers to Channel +[0c2 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org1MSP/Writers for evaluation +[0c3 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Writers to Channel +[0c4 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org1MSP/Admins for evaluation +[0c5 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Admins to Channel +[0c6 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[0c7 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/Admins to Channel +[0c8 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org2MSP/Admins for evaluation +[0c9 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Admins to Channel +[0ca 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org2MSP/Readers for evaluation +[0cb 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Readers to Channel +[0cc 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +[0cd 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +[0ce 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +[0cf 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +[0d0 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[0d1 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +[0d2 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[0d3 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +[0d4 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[0d5 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +[0d6 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +[0d7 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +[0d8 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +[0d9 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +[0da 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Consortiums/Readers +[0db 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[0dc 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[0dd 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Consortiums/Writers +[0de 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[0df 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[0e0 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[0e1 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +[0e2 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[0e3 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +[0e4 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +[0e5 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[0e6 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +[0e7 12-14 09:34:35.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +[0e8 12-14 09:34:35.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9086], Going to peek [8] bytes +[0e9 12-14 09:34:35.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9084], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[0ea 12-14 09:34:35.26 UTC] [github.com/hyperledger/fabric/orderer/multichain] main.initializeMultiChainManager.NewManagerImpl.newChainSupport -> DEBU [channel: testchainid] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=0): +[0eb 12-14 09:34:35.26 UTC] [github.com/hyperledger/fabric/orderer/multichain] main.initializeMultiChainManager.NewManagerImpl -> INFO Starting with system channel testchainid and orderer type solo +[0ec 12-14 09:34:35.26 UTC] [main] main -> INFO Beginning to serve requests +[0ed 12-14 09:34:39.42 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[0ee 12-14 09:34:39.42 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +[0ef 12-14 09:34:39.42 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[0f0 12-14 09:34:39.43 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[0f1 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +[0f2 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Preprocessing CONFIG_UPDATE +[0f3 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/orderer/configupdate] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process -> DEBU Processing channel creation request for channel businesschannel +[0f4 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[0f5 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[0f6 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[0f7 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[0f8 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0ABC060A1B08011A0608AF8BC9D10522...07526561646572731A0641646D696E73 +[0f9 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: FA3F397C865F02C52B0917571010CACECC5B982475982ADE4C97BF56DA96E18B +[0fa 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[0fb 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[0fc 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[0fd 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[0fe 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[0ff 12-14 09:34:39.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[100 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[101 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[102 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[103 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[104 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[105 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[106 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[107 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[108 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[109 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[10a 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[10b 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[10c 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[10d 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[10e 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[10f 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[110 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[111 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[112 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[113 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[114 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[115 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[116 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[117 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[118 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[119 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +[11a 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[11b 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[11c 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[11d 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[11e 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[11f 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[120 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[121 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +[122 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[123 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[124 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[125 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[126 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[127 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[128 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[129 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[12a 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[12b 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy ChannelCreationPolicy for Application +[12c 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[12d 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[12e 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[12f 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[130 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[131 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[132 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[133 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[134 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[135 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[136 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[137 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[138 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[139 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[13a 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[13b 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[13c 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[13d 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[13e 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[13f 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[140 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[141 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[142 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[143 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[144 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[145 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[146 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[147 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[148 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[149 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[14a 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[14b 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[14c 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[14d 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[14e 12-14 09:34:39.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[14f 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[150 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[151 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +VA7fF8MfGA== +-----END CERTIFICATE----- +[152 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[153 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[154 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[155 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[156 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[157 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[158 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[159 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -510,7 +582,7 @@ wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL liPpNxLSsBU= -----END CERTIFICATE----- -[13c 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[15a 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -524,7 +596,7 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[13d 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[15b 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -538,59 +610,11 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[13e 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[13f 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[140 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[141 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[142 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[143 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W -RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ -kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc -8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq -VA7fF8MfGA== ------END CERTIFICATE----- -[144 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -Xk1Xy2C2aVQjOcr++w== ------END CERTIFICATE----- -[145 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -Xk1Xy2C2aVQjOcr++w== ------END CERTIFICATE----- -[146 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[147 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[148 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[149 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[14a 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[15c 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[15d 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[15e 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[15f 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[160 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -604,7 +628,7 @@ AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= -----END CERTIFICATE----- -[14b 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[161 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -617,7 +641,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[14c 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[162 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -630,85 +654,85 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[14d 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[14e 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[14f 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[150 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[151 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -[152 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[153 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -[154 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[155 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -[156 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[157 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -[158 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[159 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -[15a 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[15b 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -[15c 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[15d 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[15e 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[15f 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -[160 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[161 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -[162 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[163 12-05 07:29:42.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -[164 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[165 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[166 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[167 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[168 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -[169 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -[16a 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -[16b 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -[16c 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -[16d 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel -[16e 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -[16f 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -[170 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -[171 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -[172 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -[173 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -[174 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -[175 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -[176 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -[177 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -[178 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[179 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -[17a 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[17b 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -[17c 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[17d 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -[17e 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -[17f 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -[180 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -[181 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -[182 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -[183 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -[184 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Application/Writers -[185 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[186 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in /Application/Admins -[187 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[188 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Application/Readers -[189 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[18a 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[18b 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[18c 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[18d 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[18e 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[18f 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[190 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[191 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[192 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[193 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[194 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[195 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[196 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[197 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -[198 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026530 gate 1512458982923420400 evaluation starts -[199 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026530 signed by 0 principal evaluation starts (used [false]) -[19a 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026530 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[19b 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[163 12-14 09:34:39.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[164 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[165 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[166 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[167 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +[168 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[169 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +[16a 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[16b 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +[16c 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[16d 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +[16e 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[16f 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +[170 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[171 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +[172 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[173 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[174 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[175 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +[176 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[177 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +[178 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[179 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +[17a 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[17b 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[17c 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[17d 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[17e 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +[17f 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +[180 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +[181 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +[182 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +[183 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +[184 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +[185 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel +[186 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +[187 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +[188 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +[189 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +[18a 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +[18b 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +[18c 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +[18d 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +[18e 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +[18f 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +[190 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +[191 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +[192 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[193 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +[194 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +[195 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +[196 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[197 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +[198 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[199 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +[19a 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Application/Writers +[19b 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[19c 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in /Application/Admins +[19d 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[19e 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Application/Readers +[19f 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[1a0 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[1a1 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[1a2 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[1a3 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[1a4 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[1a5 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[1a6 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[1a7 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[1a8 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[1a9 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[1aa 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[1ab 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[1ac 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[1ad 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +[1ae 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026780 gate 1513244079467343100 evaluation starts +[1af 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026780 signed by 0 principal evaluation starts (used [false]) +[1b0 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026780 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[1b1 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -722,86 +746,106 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[19c 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[19d 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026530 principal matched by identity 0 -[19e 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ae 28 16 e2 b4 c0 28 fc ec b8 21 99 cc 79 d5 ca |.(....(...!..y..| -00000010 0c c3 c5 7d 6c 4c a4 5e 5b f0 d9 e1 fc 81 42 d3 |...}lL.^[.....B.| -[19f 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c6 67 e4 46 8f 27 7d 42 29 de cc |0E.!..g.F.'}B)..| -00000010 9c a3 e4 5f 14 cf b8 f7 91 1a 74 6d 1d 16 70 7e |..._......tm..p~| -00000020 a8 2b 59 3a cd 02 20 32 eb 46 8a 5f b4 2a 47 89 |.+Y:.. 2.F._.*G.| -00000030 ba 35 49 5c 46 f0 9d 2c 46 88 c2 00 b1 2c a2 cb |.5I\F..,F....,..| -00000040 6f 17 55 34 96 5e b9 |o.U4.^.| -[1a0 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026530 principal evaluation succeeds for identity 0 -[1a1 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026530 gate 1512458982923420400 evaluation succeeds -[1a2 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[1a3 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[1a4 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[1a5 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[1a6 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[1a7 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[1a8 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[1a9 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[1aa 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[1ab 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[1ac 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[1ad 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[1ae 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[1af 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[1b0 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[1b1 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[1b2 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[1b3 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[1b4 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[1b5 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel -[1b6 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[1b7 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[1b8 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[1b9 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[1ba 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[1bb 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[1bc 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[1bd 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[1be 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[1bf 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[1c0 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[1c1 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[1c2 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[1c3 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[1c4 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[1c5 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[1c6 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[1c7 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[1c8 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[1c9 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[1ca 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[1cb 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[1cc 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[1cd 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[1ce 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -[1cf 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -[1d0 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -[1d1 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[1d2 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[1d3 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[1d4 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[1d5 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[1d6 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[1d7 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[1d8 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[1d9 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[1da 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[1db 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[1dc 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[1dd 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[1de 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[1df 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[1e0 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[1e1 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[1e2 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[1e3 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[1e4 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[1e5 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[1e6 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[1b2 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026780 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +[1b3 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026780 principal evaluation fails +[1b4 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026780 gate 1513244079467343100 evaluation fails +[1b5 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026790 gate 1513244079468693500 evaluation starts +[1b6 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026790 signed by 0 principal evaluation starts (used [false]) +[1b7 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026790 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[1b8 12-14 09:34:39.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[1b9 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[1ba 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026790 principal matched by identity 0 +[1bb 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 da dd 74 a9 35 9f 1f 14 e0 3c dd 86 1f 57 bf ba |..t.5....<...W..| +00000010 5e 42 96 9e e3 02 d8 b0 af 35 ce ae 94 24 39 56 |^B.......5...$9V| +[1bc 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c8 49 2b 30 49 6a be d9 eb a3 c9 |0E.!..I+0Ij.....| +00000010 b1 d7 c2 5c db 7d 7f 01 f0 f4 c5 4c a2 2a 38 b4 |...\.}.....L.*8.| +00000020 03 c8 6f ec f5 02 20 26 98 0f ec d7 1d 2d b0 ca |..o... &.....-..| +00000030 7b 73 23 a7 15 35 c6 37 da c7 d0 f8 5a 99 85 fc |{s#..5.7....Z...| +00000040 5a f7 c3 eb b0 dd b3 |Z......| +[1bd 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026790 principal evaluation succeeds for identity 0 +[1be 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026790 gate 1513244079468693500 evaluation succeeds +[1bf 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[1c0 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[1c1 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[1c2 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[1c3 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[1c4 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[1c5 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[1c6 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[1c7 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[1c8 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[1c9 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[1ca 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[1cb 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[1cc 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[1cd 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[1ce 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[1cf 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[1d0 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[1d1 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[1d2 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel +[1d3 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[1d4 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[1d5 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[1d6 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[1d7 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[1d8 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[1d9 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[1da 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[1db 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[1dc 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[1dd 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[1de 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[1df 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[1e0 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[1e1 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[1e2 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[1e3 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[1e4 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[1e5 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[1e6 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[1e7 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[1e8 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[1e9 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[1ea 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[1eb 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[1ec 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[1ed 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[1ee 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[1ef 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[1f0 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[1f1 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[1f2 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[1f3 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[1f4 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[1f5 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[1f6 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[1f7 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[1f8 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[1f9 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[1fa 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[1fb 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[1fc 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[1fd 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[1fe 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[1ff 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[200 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[201 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[202 12-14 09:34:39.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[203 12-14 09:34:39.48 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -815,7 +859,7 @@ AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= -----END CERTIFICATE----- -[1e7 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[204 12-14 09:34:39.48 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -828,7 +872,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[1e8 12-05 07:29:42.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[205 12-14 09:34:39.48 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -841,12 +885,12 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[1e9 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[1ea 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[1eb 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[1ec 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[1ed 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[1ee 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[206 12-14 09:34:39.48 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[207 12-14 09:34:39.48 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[208 12-14 09:34:39.48 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[209 12-14 09:34:39.48 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[20a 12-14 09:34:39.48 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[20b 12-14 09:34:39.49 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -861,7 +905,7 @@ wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL liPpNxLSsBU= -----END CERTIFICATE----- -[1ef 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[20c 12-14 09:34:39.49 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -875,7 +919,7 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[1f0 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[20d 12-14 09:34:39.49 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -889,12 +933,12 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[1f1 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[1f2 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[1f3 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[1f4 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[1f5 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[1f6 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[20e 12-14 09:34:39.49 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[20f 12-14 09:34:39.49 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[210 12-14 09:34:39.49 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[211 12-14 09:34:39.49 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[212 12-14 09:34:39.49 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[213 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -909,7 +953,7 @@ kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq VA7fF8MfGA== -----END CERTIFICATE----- -[1f7 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[214 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -923,7 +967,7 @@ G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb Xk1Xy2C2aVQjOcr++w== -----END CERTIFICATE----- -[1f8 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[215 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -937,27 +981,27 @@ G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb Xk1Xy2C2aVQjOcr++w== -----END CERTIFICATE----- -[1f9 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[1fa 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[1fb 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[1fc 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[1fd 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[1fe 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[1ff 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[200 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0ABC060A1B08011A0608E69599D10522...3417B5D60666CE4356C05C9F9FCC828F -[201 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 82B1DD956B330869CE03081F2D6F6C89E561BC4A39EE9EBCBC8D1DC5A7204967 -[202 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[203 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[204 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[205 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[206 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB8060A1708041A0608E69599D10522...6E61C4F3D3971204A86246FB87DA4242 -[207 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 6D75B099A863213FA7FE150A7E4736F5744C2696DEB47B82AD9A81EAB363C944 -[208 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: testchainid] Broadcast is filtering message of type ORDERER_TRANSACTION -[209 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -[20a 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026420 gate 1512458982936110200 evaluation starts -[20b 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026420 signed by 0 principal evaluation starts (used [false]) -[20c 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026420 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[20d 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[216 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[217 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[218 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[219 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[21a 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[21b 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[21c 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[21d 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0ABC060A1B08011A0608AF8BC9D10522...E403282EB40CB99880D99DB842278535 +[21e 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 6A99E7C7491B251F27EC762282A87AF2637E6E892D685D7AEB5D0EB656502DBC +[21f 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[220 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[221 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[222 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[223 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB8060A1708041A0608AF8BC9D10522...25827A242B10315F4C19B4B8C92AE251 +[224 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 035F04490B5723AD511EEEC2FC317C3964D2BD411F6DD4CA141AB9D1F627CFBC +[225 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: testchainid] Broadcast is filtering message of type ORDERER_TRANSACTION +[226 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[227 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026400 gate 1513244079506153900 evaluation starts +[228 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026400 signed by 0 principal evaluation starts (used [false]) +[229 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026400 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[22a 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -971,112 +1015,112 @@ KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv Tg== -----END CERTIFICATE----- -[20e 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[20f 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[210 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026420 principal matched by identity 0 -[211 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 6d 75 b0 99 a8 63 21 3f a7 fe 15 0a 7e 47 36 f5 |mu...c!?....~G6.| -00000010 74 4c 26 96 de b4 7b 82 ad 9a 81 ea b3 63 c9 44 |tL&...{......c.D| -[212 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 10 a5 d6 86 81 97 78 8b 88 a8 7d 2d |0D. ......x...}-| -00000010 6c 9f 6c 4c 0b c2 15 bb 8c ca f2 a1 cd 6e a8 5e |l.lL.........n.^| -00000020 78 93 e0 f5 02 20 53 c5 d3 0c 38 c4 0f 41 23 e4 |x.... S...8..A#.| -00000030 a9 94 6a 0d db 0f e3 2b c9 53 a9 a9 44 94 d4 a3 |..j....+.S..D...| -00000040 4c cb d3 11 45 f1 |L...E.| -[213 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026420 principal evaluation succeeds for identity 0 -[214 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026420 gate 1512458982936110200 evaluation succeeds -[215 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [Writers %!s(*policies.implicitMetaPolicy=&{0xc42039a2a0 1 [0xc420114708]})]} -[216 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[217 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[218 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[219 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[21a 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0ABC060A1B08011A0608E69599D10522...07577269746572731A0641646D696E73 -[21b 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: E4064934CAEA7521FEE5A6A6425A075A2CADB8C8145D00094ED58E6E1DD01749 -[21c 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[21d 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[21e 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[21f 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[220 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[221 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[222 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[223 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[224 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[225 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[226 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[227 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[228 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[229 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[22a 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[22b 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[22c 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[22d 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -[22e 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[22f 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[230 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[231 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[232 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[233 12-05 07:29:42.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[234 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[235 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[236 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[237 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[238 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[239 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[23a 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[23b 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[23c 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[23d 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[23e 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[23f 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[240 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[241 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[242 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[243 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -[244 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[245 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[246 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[247 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[248 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[249 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[24a 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[24b 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[24c 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[24d 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[24e 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[24f 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[250 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[251 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[252 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[253 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[254 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[255 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[256 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[257 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[258 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[259 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[25a 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[25b 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[25c 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy ChannelCreationPolicy for Application -[25d 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[25e 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[25f 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[260 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[261 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[262 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[263 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[264 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[265 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[266 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[267 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[268 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[269 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[26a 12-05 07:29:42.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[26b 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[26c 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[26d 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[26e 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[26f 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[270 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[271 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[272 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[22b 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[22c 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[22d 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026400 principal matched by identity 0 +[22e 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 03 5f 04 49 0b 57 23 ad 51 1e ee c2 fc 31 7c 39 |._.I.W#.Q....1|9| +00000010 64 d2 bd 41 1f 6d d4 ca 14 1a b9 d1 f6 27 cf bc |d..A.m.......'..| +[22f 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 dd 5a 0a 25 0c 82 20 b7 21 51 93 |0E.!..Z.%.. .!Q.| +00000010 a1 37 19 10 ec 44 b7 c7 ce a6 cb 34 eb fc 13 96 |.7...D.....4....| +00000020 15 74 2f f3 87 02 20 51 4b 63 57 4c b6 9a 92 07 |.t/... QKcWL....| +00000030 61 df a6 56 65 9b e5 4a b2 f9 58 cd aa 11 cd 5f |a..Ve..J..X...._| +00000040 3f c9 1a 4b 5e 75 3c |?..K^u<| +[230 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026400 principal evaluation succeeds for identity 0 +[231 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026400 gate 1513244079506153900 evaluation succeeds +[232 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039c7e0 1 [0xc4200260b0]}) Writers]} +[233 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[234 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[235 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[236 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[237 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0ABC060A1B08011A0608AF8BC9D10522...07526561646572731A0641646D696E73 +[238 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: E68BC6A015CC161275F6604AFB22B0AF73A68DF184AF7B05B60ADE1749C8C900 +[239 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[23a 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[23b 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[23c 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[23d 12-14 09:34:39.50 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[23e 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[23f 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[240 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[241 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[242 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[243 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[244 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[245 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[246 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[247 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[248 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[249 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[24a 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[24b 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[24c 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[24d 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[24e 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[24f 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[250 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[251 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[252 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[253 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[254 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[255 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[256 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[257 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[258 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +[259 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[25a 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[25b 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[25c 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[25d 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[25e 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[25f 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[260 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +[261 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[262 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[263 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[264 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[265 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[266 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[267 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[268 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[269 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[26a 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[26b 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[26c 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[26d 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[26e 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[26f 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[270 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[271 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[272 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[273 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[274 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[275 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[276 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[277 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[278 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[279 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy ChannelCreationPolicy for Application +[27a 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[27b 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[27c 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[27d 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[27e 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[27f 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[280 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[281 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[282 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[283 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[284 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[285 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[286 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[287 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[288 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[289 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[28a 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[28b 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[28c 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[28d 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[28e 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[28f 12-14 09:34:39.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -1090,7 +1134,7 @@ AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= -----END CERTIFICATE----- -[273 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[290 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -1103,7 +1147,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[274 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[291 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -1116,12 +1160,12 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[275 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[276 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[277 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[278 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[279 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[27a 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[292 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[293 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[294 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[295 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[296 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[297 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1136,7 +1180,7 @@ wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL liPpNxLSsBU= -----END CERTIFICATE----- -[27b 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[298 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1150,7 +1194,7 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[27c 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[299 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1164,12 +1208,12 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[27d 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[27e 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[27f 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[280 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[281 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[282 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[29a 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[29b 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[29c 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[29d 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[29e 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[29f 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1184,7 +1228,7 @@ kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq VA7fF8MfGA== -----END CERTIFICATE----- -[283 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[2a0 12-14 09:34:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1198,7 +1242,7 @@ G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb Xk1Xy2C2aVQjOcr++w== -----END CERTIFICATE----- -[284 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[2a1 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1212,85 +1256,85 @@ G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb Xk1Xy2C2aVQjOcr++w== -----END CERTIFICATE----- -[285 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[286 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[287 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[288 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[289 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -[28a 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[28b 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -[28c 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[28d 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -[28e 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[28f 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[290 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[291 12-05 07:29:42.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[292 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[293 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -[294 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[295 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -[296 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[297 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -[298 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[299 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -[29a 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[29b 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -[29c 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[29d 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -[29e 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[29f 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[2a0 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[2a1 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -[2a2 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[2a3 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -[2a4 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -[2a5 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -[2a6 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[2a7 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -[2a8 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -[2a9 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -[2aa 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -[2ab 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -[2ac 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -[2ad 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -[2ae 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -[2af 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -[2b0 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -[2b1 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel -[2b2 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -[2b3 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -[2b4 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -[2b5 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -[2b6 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -[2b7 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -[2b8 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -[2b9 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -[2ba 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -[2bb 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -[2bc 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[2bd 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Application/Writers -[2be 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[2bf 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in /Application/Admins -[2c0 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[2c1 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Application/Readers -[2c2 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[2c3 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[2c4 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[2c5 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[2c6 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[2c7 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[2c8 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[2c9 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[2ca 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[2cb 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[2cc 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[2cd 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[2ce 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[2cf 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -[2d0 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026730 gate 1512458982968918000 evaluation starts -[2d1 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026730 signed by 0 principal evaluation starts (used [false]) -[2d2 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026730 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[2d3 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[2a2 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[2a3 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[2a4 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[2a5 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[2a6 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +[2a7 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[2a8 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +[2a9 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[2aa 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +[2ab 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[2ac 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[2ad 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[2ae 12-14 09:34:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[2af 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[2b0 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +[2b1 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[2b2 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +[2b3 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[2b4 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +[2b5 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[2b6 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +[2b7 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[2b8 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +[2b9 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[2ba 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +[2bb 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[2bc 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[2bd 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +[2be 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +[2bf 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[2c0 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +[2c1 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +[2c2 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +[2c3 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[2c4 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +[2c5 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[2c6 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +[2c7 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +[2c8 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +[2c9 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +[2ca 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +[2cb 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +[2cc 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel +[2cd 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +[2ce 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +[2cf 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +[2d0 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +[2d1 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +[2d2 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +[2d3 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +[2d4 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +[2d5 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +[2d6 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +[2d7 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +[2d8 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +[2d9 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[2da 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Application/Writers +[2db 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[2dc 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in /Application/Admins +[2dd 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[2de 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Application/Readers +[2df 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[2e0 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[2e1 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[2e2 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[2e3 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[2e4 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[2e5 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[2e6 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[2e7 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[2e8 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[2e9 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[2ea 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[2eb 12-14 09:34:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[2ec 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +[2ed 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026058 gate 1513244079553994600 evaluation starts +[2ee 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026058 signed by 0 principal evaluation starts (used [false]) +[2ef 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026058 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[2f0 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1304,86 +1348,86 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[2d4 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[2d5 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026730 principal matched by identity 0 -[2d6 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ae 28 16 e2 b4 c0 28 fc ec b8 21 99 cc 79 d5 ca |.(....(...!..y..| -00000010 0c c3 c5 7d 6c 4c a4 5e 5b f0 d9 e1 fc 81 42 d3 |...}lL.^[.....B.| -[2d7 12-05 07:29:42.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c6 67 e4 46 8f 27 7d 42 29 de cc |0E.!..g.F.'}B)..| -00000010 9c a3 e4 5f 14 cf b8 f7 91 1a 74 6d 1d 16 70 7e |..._......tm..p~| -00000020 a8 2b 59 3a cd 02 20 32 eb 46 8a 5f b4 2a 47 89 |.+Y:.. 2.F._.*G.| -00000030 ba 35 49 5c 46 f0 9d 2c 46 88 c2 00 b1 2c a2 cb |.5I\F..,F....,..| -00000040 6f 17 55 34 96 5e b9 |o.U4.^.| -[2d8 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026730 principal evaluation succeeds for identity 0 -[2d9 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026730 gate 1512458982968918000 evaluation succeeds -[2da 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[2db 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[2dc 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[2dd 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[2de 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[2df 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[2e0 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[2e1 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[2e2 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[2e3 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[2e4 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[2e5 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[2e6 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[2e7 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[2e8 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[2e9 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[2ea 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[2eb 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[2ec 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[2ed 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel -[2ee 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[2ef 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[2f0 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[2f1 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[2f2 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[2f3 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[2f4 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[2f5 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[2f6 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[2f7 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[2f8 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[2f9 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[2fa 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[2fb 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[2fc 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[2fd 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[2fe 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[2ff 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[300 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[301 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[302 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[303 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[304 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[305 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[306 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -[307 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -[308 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -[309 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[30a 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[30b 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[30c 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[30d 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[30e 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[30f 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[310 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[311 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[312 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[313 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[314 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[315 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[316 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[317 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[318 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[319 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[31a 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[31b 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[31c 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[31d 12-05 07:29:42.97 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[31e 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[2f1 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[2f2 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026058 principal matched by identity 0 +[2f3 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 da dd 74 a9 35 9f 1f 14 e0 3c dd 86 1f 57 bf ba |..t.5....<...W..| +00000010 5e 42 96 9e e3 02 d8 b0 af 35 ce ae 94 24 39 56 |^B.......5...$9V| +[2f4 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c8 49 2b 30 49 6a be d9 eb a3 c9 |0E.!..I+0Ij.....| +00000010 b1 d7 c2 5c db 7d 7f 01 f0 f4 c5 4c a2 2a 38 b4 |...\.}.....L.*8.| +00000020 03 c8 6f ec f5 02 20 26 98 0f ec d7 1d 2d b0 ca |..o... &.....-..| +00000030 7b 73 23 a7 15 35 c6 37 da c7 d0 f8 5a 99 85 fc |{s#..5.7....Z...| +00000040 5a f7 c3 eb b0 dd b3 |Z......| +[2f5 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026058 principal evaluation succeeds for identity 0 +[2f6 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026058 gate 1513244079553994600 evaluation succeeds +[2f7 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[2f8 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[2f9 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[2fa 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[2fb 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[2fc 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[2fd 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[2fe 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[2ff 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[300 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[301 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[302 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[303 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[304 12-14 09:34:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[305 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[306 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[307 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[308 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[309 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[30a 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel +[30b 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[30c 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[30d 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[30e 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[30f 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[310 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[311 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[312 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[313 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[314 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[315 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[316 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[317 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[318 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[319 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[31a 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[31b 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[31c 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[31d 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[31e 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[31f 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[320 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[321 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[322 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[323 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[324 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[325 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[326 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[327 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[328 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[329 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[32a 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[32b 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[32c 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[32d 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[32e 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[32f 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[330 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[331 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[332 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[333 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[334 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[335 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[336 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[337 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[338 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[339 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[33a 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[33b 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -1397,7 +1441,7 @@ AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= -----END CERTIFICATE----- -[31f 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[33c 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -1410,7 +1454,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[320 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[33d 12-14 09:34:39.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -1423,12 +1467,12 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[321 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[322 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[323 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[324 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[325 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[326 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[33e 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[33f 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[340 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[341 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[342 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[343 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1443,7 +1487,7 @@ wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL liPpNxLSsBU= -----END CERTIFICATE----- -[327 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[344 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1457,7 +1501,7 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[328 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[345 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1471,12 +1515,12 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[329 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[32a 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[32b 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[32c 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[32d 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[32e 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[346 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[347 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[348 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[349 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[34a 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[34b 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1491,7 +1535,7 @@ kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq VA7fF8MfGA== -----END CERTIFICATE----- -[32f 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[34c 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1505,7 +1549,7 @@ G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb Xk1Xy2C2aVQjOcr++w== -----END CERTIFICATE----- -[330 12-05 07:29:42.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[34d 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1519,63 +1563,63 @@ G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb Xk1Xy2C2aVQjOcr++w== -----END CERTIFICATE----- -[331 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[332 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[333 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[334 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[335 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[336 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[337 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[338 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[339 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[33a 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[33b 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[33c 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[33d 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[33e 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[33f 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[340 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[341 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[342 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[343 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[344 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[345 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[346 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[347 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[348 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[349 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[34a 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[34b 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[34c 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[34d 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[34e 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[34f 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[350 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[351 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[352 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[353 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[354 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[355 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[356 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[357 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[358 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[359 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[35a 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[35b 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[35c 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[35d 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[35e 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[35f 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[360 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[361 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[362 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[363 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[364 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[365 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -[366 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200266f8 gate 1512458982998320800 evaluation starts -[367 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200266f8 signed by 0 principal evaluation starts (used [false]) -[368 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200266f8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[369 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[34e 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[34f 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[350 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[351 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[352 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[353 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[354 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[355 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[356 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[357 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[358 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[359 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[35a 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[35b 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[35c 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[35d 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[35e 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[35f 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[360 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[361 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[362 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[363 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[364 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[365 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[366 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[367 12-14 09:34:39.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[368 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[369 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[36a 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[36b 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[36c 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[36d 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[36e 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[36f 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[370 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[371 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[372 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[373 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[374 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[375 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[376 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[377 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[378 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[379 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[37a 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[37b 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[37c 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[37d 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[37e 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[37f 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[380 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[381 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[382 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +[383 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200268a0 gate 1513244079586774500 evaluation starts +[384 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200268a0 signed by 0 principal evaluation starts (used [false]) +[385 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200268a0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[386 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1589,86 +1633,86 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[36a 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[36b 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200266f8 principal matched by identity 0 -[36c 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ae 28 16 e2 b4 c0 28 fc ec b8 21 99 cc 79 d5 ca |.(....(...!..y..| -00000010 0c c3 c5 7d 6c 4c a4 5e 5b f0 d9 e1 fc 81 42 d3 |...}lL.^[.....B.| -[36d 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c6 67 e4 46 8f 27 7d 42 29 de cc |0E.!..g.F.'}B)..| -00000010 9c a3 e4 5f 14 cf b8 f7 91 1a 74 6d 1d 16 70 7e |..._......tm..p~| -00000020 a8 2b 59 3a cd 02 20 32 eb 46 8a 5f b4 2a 47 89 |.+Y:.. 2.F._.*G.| -00000030 ba 35 49 5c 46 f0 9d 2c 46 88 c2 00 b1 2c a2 cb |.5I\F..,F....,..| -00000040 6f 17 55 34 96 5e b9 |o.U4.^.| -[36e 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200266f8 principal evaluation succeeds for identity 0 -[36f 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200266f8 gate 1512458982998320800 evaluation succeeds -[370 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[371 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[372 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[373 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[374 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[375 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[376 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[377 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[378 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[379 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[37a 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[37b 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[37c 12-05 07:29:42.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[37d 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[37e 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[37f 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[380 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[381 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[382 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[383 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -[384 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[385 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[386 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[387 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[388 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[389 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[38a 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[38b 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[38c 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[38d 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[38e 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[38f 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[390 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[391 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[392 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[393 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[394 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[395 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[396 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[397 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[398 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[399 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[39a 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[39b 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[39c 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -[39d 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -[39e 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -[39f 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[3a0 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3a1 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[3a2 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[3a3 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[3a4 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3a5 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[3a6 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[3a7 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[3a8 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[3a9 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3aa 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[3ab 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[3ac 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[3ad 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3ae 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[3af 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[3b0 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[3b1 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[3b2 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[3b3 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[3b4 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[387 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[388 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200268a0 principal matched by identity 0 +[389 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 da dd 74 a9 35 9f 1f 14 e0 3c dd 86 1f 57 bf ba |..t.5....<...W..| +00000010 5e 42 96 9e e3 02 d8 b0 af 35 ce ae 94 24 39 56 |^B.......5...$9V| +[38a 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c8 49 2b 30 49 6a be d9 eb a3 c9 |0E.!..I+0Ij.....| +00000010 b1 d7 c2 5c db 7d 7f 01 f0 f4 c5 4c a2 2a 38 b4 |...\.}.....L.*8.| +00000020 03 c8 6f ec f5 02 20 26 98 0f ec d7 1d 2d b0 ca |..o... &.....-..| +00000030 7b 73 23 a7 15 35 c6 37 da c7 d0 f8 5a 99 85 fc |{s#..5.7....Z...| +00000040 5a f7 c3 eb b0 dd b3 |Z......| +[38b 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200268a0 principal evaluation succeeds for identity 0 +[38c 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200268a0 gate 1513244079586774500 evaluation succeeds +[38d 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[38e 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[38f 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[390 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[391 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[392 12-14 09:34:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[393 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[394 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[395 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[396 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[397 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[398 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[399 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[39a 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[39b 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[39c 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[39d 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[39e 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[39f 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3a0 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +[3a1 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[3a2 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[3a3 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[3a4 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[3a5 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[3a6 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[3a7 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[3a8 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[3a9 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[3aa 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[3ab 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[3ac 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[3ad 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[3ae 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[3af 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[3b0 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[3b1 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[3b2 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[3b3 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[3b4 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3b5 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[3b6 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[3b7 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[3b8 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[3b9 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[3ba 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[3bb 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[3bc 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[3bd 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3be 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[3bf 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[3c0 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[3c1 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3c2 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[3c3 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[3c4 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[3c5 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[3c6 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3c7 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[3c8 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[3c9 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[3ca 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3cb 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[3cc 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[3cd 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[3ce 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[3cf 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[3d0 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[3d1 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -1682,7 +1726,7 @@ AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= -----END CERTIFICATE----- -[3b5 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[3d2 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -1695,7 +1739,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[3b6 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[3d3 12-14 09:34:39.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -1708,12 +1752,60 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[3b7 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[3b8 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[3b9 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[3ba 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[3bb 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[3bc 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[3d4 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[3d5 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[3d6 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[3d7 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[3d8 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[3d9 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +VA7fF8MfGA== +-----END CERTIFICATE----- +[3da 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[3db 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[3dc 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[3dd 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[3de 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[3df 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[3e0 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[3e1 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1728,7 +1820,7 @@ wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL liPpNxLSsBU= -----END CERTIFICATE----- -[3bd 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[3e2 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1742,7 +1834,7 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[3be 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[3e3 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1756,227 +1848,223 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[3bf 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[3c0 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[3c1 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[3c2 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[3c3 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[3c4 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +[3e4 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[3e5 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[3e6 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[3e7 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[3e8 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +[3e9 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[3ea 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +[3eb 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[3ec 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +[3ed 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[3ee 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[3ef 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[3f0 12-14 09:34:39.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[3f1 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[3f2 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +[3f3 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[3f4 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +[3f5 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[3f6 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +[3f7 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[3f8 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +[3f9 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[3fa 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +[3fb 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[3fc 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +[3fd 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[3fe 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[3ff 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[400 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[401 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[402 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[403 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +[404 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +[405 12-14 09:34:39.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +[406 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +[407 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +[408 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +[409 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +[40a 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +[40b 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[40c 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +[40d 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[40e 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +[40f 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[410 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +[411 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +[412 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +[413 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +[414 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +[415 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +[416 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +[417 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[418 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +[419 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[41a 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +[41b 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +[41c 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +[41d 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[41e 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +[41f 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +[420 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +[421 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +[422 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +[423 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[424 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[425 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[426 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[427 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[428 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[429 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[42a 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +[42b 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[42c 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +[42d 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +[42e 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[42f 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +[430 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[431 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +[432 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[433 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +[434 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[435 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[436 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[437 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[438 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[439 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[43a 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[43b 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[43c 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[43d 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[43e 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[43f 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[440 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[441 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[442 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[443 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[444 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[445 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[446 12-14 09:34:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[447 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[448 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[449 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[44a 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[44b 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[44c 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[44d 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[44e 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[44f 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[450 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[451 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[452 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[453 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[454 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[455 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[456 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[457 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[458 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[459 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[45a 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[45b 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[45c 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[45d 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[45e 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +[45f 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[460 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[461 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[462 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[463 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[464 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[465 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[466 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[467 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[468 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[469 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[46a 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[46b 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[46c 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[46d 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[46e 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[46f 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[470 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[471 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[472 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[473 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[474 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[475 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[476 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[477 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[478 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[479 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[47a 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[47b 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[47c 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[47d 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[47e 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[47f 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[480 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[481 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[482 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[483 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[484 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[485 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[486 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[487 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[488 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[489 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[48a 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[48b 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[48c 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[48d 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[48e 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[48f 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W -RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ -kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc -8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq -VA7fF8MfGA== +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= -----END CERTIFICATE----- -[3c5 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +[490 12-14 09:34:39.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -Xk1Xy2C2aVQjOcr++w== +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[3c6 12-05 07:29:43.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +[491 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -Xk1Xy2C2aVQjOcr++w== +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[3c7 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[3c8 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[3c9 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[3ca 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[3cb 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -[3cc 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[3cd 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -[3ce 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[3cf 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -[3d0 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[3d1 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[3d2 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[3d3 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[3d4 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[3d5 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -[3d6 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[3d7 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -[3d8 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[3d9 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -[3da 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[3db 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -[3dc 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[3dd 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -[3de 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[3df 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -[3e0 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[3e1 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[3e2 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[3e3 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[3e4 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[3e5 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[3e6 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[3e7 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel -[3e8 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[3e9 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel -[3ea 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -[3eb 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -[3ec 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -[3ed 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -[3ee 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -[3ef 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -[3f0 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[3f1 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel -[3f2 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -[3f3 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -[3f4 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -[3f5 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -[3f6 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -[3f7 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -[3f8 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[3f9 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -[3fa 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[3fb 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -[3fc 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -[3fd 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -[3fe 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -[3ff 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -[400 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -[401 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -[402 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -[403 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -[404 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[405 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -[406 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[407 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[408 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[409 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[40a 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[40b 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[40c 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[40d 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -[40e 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[40f 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -[410 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation -[411 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[412 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation -[413 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[414 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation -[415 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[416 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -[417 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[418 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[419 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[41a 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[41b 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[41c 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[41d 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[41e 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[41f 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[420 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[421 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[422 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[423 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[424 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[425 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[426 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[427 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[428 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[429 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[42a 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[42b 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[42c 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[42d 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[42e 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[42f 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[430 12-05 07:29:43.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[431 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[432 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[433 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[434 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[435 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[436 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[437 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[438 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[439 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[43a 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[43b 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[43c 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[43d 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[43e 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[43f 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[440 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[441 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -[442 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[443 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[444 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[445 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[446 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[447 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[448 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[449 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[44a 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[44b 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -[44c 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -[44d 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -[44e 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[44f 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[450 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[451 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[452 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[453 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[454 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[455 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[456 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[457 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[458 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[459 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[45a 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[45b 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[45c 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[45d 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[45e 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[45f 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[460 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[461 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[462 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[463 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[464 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[465 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[466 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[467 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[468 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[469 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[46a 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[46b 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[46c 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[46d 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[46e 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[46f 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[470 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[471 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[472 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[473 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[492 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[493 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[494 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[495 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[496 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[497 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1991,7 +2079,7 @@ wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL liPpNxLSsBU= -----END CERTIFICATE----- -[474 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[498 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2005,7 +2093,7 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[475 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[499 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2019,12 +2107,12 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[476 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[477 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[478 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[479 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[47a 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[47b 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[49a 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[49b 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[49c 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[49d 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[49e 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[49f 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2039,7 +2127,7 @@ kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq VA7fF8MfGA== -----END CERTIFICATE----- -[47c 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[4a0 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2053,7 +2141,7 @@ G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb Xk1Xy2C2aVQjOcr++w== -----END CERTIFICATE----- -[47d 12-05 07:29:43.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[4a1 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2067,141 +2155,93 @@ G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb Xk1Xy2C2aVQjOcr++w== -----END CERTIFICATE----- -[47e 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[47f 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[480 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[481 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[482 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR -h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK -BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf -FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= ------END CERTIFICATE----- -[483 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== ------END CERTIFICATE----- -[484 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== ------END CERTIFICATE----- -[485 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[486 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[487 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[488 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[489 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -[48a 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[48b 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -[48c 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[48d 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -[48e 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[48f 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -[490 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[491 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -[492 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[493 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -[494 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[495 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[496 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[497 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[498 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[499 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[49a 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[49b 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -[49c 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[49d 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -[49e 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[49f 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -[4a0 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[4a1 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[4a2 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[4a3 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[4a4 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[4a5 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -[4a6 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -[4a7 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -[4a8 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -[4a9 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -[4aa 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -[4ab 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -[4ac 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -[4ad 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -[4ae 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[4af 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -[4b0 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[4b1 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -[4b2 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -[4b3 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -[4b4 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -[4b5 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -[4b6 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -[4b7 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -[4b8 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -[4b9 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -[4ba 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -[4bb 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -[4bc 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[4bd 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel -[4be 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[4bf 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel -[4c0 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[4c1 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel -[4c2 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -[4c3 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -[4c4 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[4c5 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[4c6 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[4c7 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[4c8 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[4c9 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[4ca 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[4cb 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -[4cc 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[4cd 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -[4ce 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation -[4cf 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[4d0 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation -[4d1 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[4d2 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation -[4d3 12-05 07:29:43.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[4d4 12-05 07:29:43.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -[4d5 12-05 07:29:43.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[4d6 12-05 07:29:43.04 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: testchainid] Broadcast has successfully enqueued message of type ORDERER_TRANSACTION -[4d7 12-05 07:29:43.04 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[4d8 12-05 07:29:43.04 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[4d9 12-05 07:29:43.04 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Rejecting deliver because channel businesschannel not found -[4db 12-05 07:29:43.04 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[4da 12-05 07:29:43.04 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -[4dc 12-05 07:29:43.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260b8 gate 1512458983047828200 evaluation starts -[4dd 12-05 07:29:43.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260b8 signed by 0 principal evaluation starts (used [false]) -[4de 12-05 07:29:43.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[4df 12-05 07:29:43.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[4a2 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[4a3 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[4a4 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[4a5 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[4a6 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +[4a7 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[4a8 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +[4a9 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[4aa 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +[4ab 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[4ac 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[4ad 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[4ae 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[4af 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[4b0 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +[4b1 12-14 09:34:39.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[4b2 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +[4b3 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[4b4 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +[4b5 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[4b6 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +[4b7 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[4b8 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +[4b9 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[4ba 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +[4bb 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[4bc 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[4bd 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[4be 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[4bf 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[4c0 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[4c1 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[4c2 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +[4c3 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +[4c4 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +[4c5 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +[4c6 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +[4c7 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +[4c8 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +[4c9 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[4ca 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +[4cb 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +[4cc 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +[4cd 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[4ce 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +[4cf 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[4d0 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +[4d1 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +[4d2 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +[4d3 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +[4d4 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +[4d5 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[4d6 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +[4d7 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[4d8 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +[4d9 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +[4da 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +[4db 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +[4dc 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +[4dd 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +[4de 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +[4df 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +[4e0 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +[4e1 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[4e2 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[4e3 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[4e4 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[4e5 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[4e6 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[4e7 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[4e8 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +[4e9 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[4ea 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +[4eb 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +[4ec 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[4ed 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +[4ee 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[4ef 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +[4f0 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[4f1 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +[4f2 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[4f3 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: testchainid] Broadcast has successfully enqueued message of type ORDERER_TRANSACTION +[4f4 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[4f5 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e128 gate 1513244079657284300 evaluation starts +[4f6 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e128 signed by 0 principal evaluation starts (used [false]) +[4f7 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e128 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[4f8 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -2215,116 +2255,161 @@ KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv Tg== -----END CERTIFICATE----- -[4e0 12-05 07:29:43.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[4e1 12-05 07:29:43.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[4e2 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260b8 principal matched by identity 0 -[4e3 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 6d 75 b0 99 a8 63 21 3f a7 fe 15 0a 7e 47 36 f5 |mu...c!?....~G6.| -00000010 74 4c 26 96 de b4 7b 82 ad 9a 81 ea b3 63 c9 44 |tL&...{......c.D| -[4e4 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 10 a5 d6 86 81 97 78 8b 88 a8 7d 2d |0D. ......x...}-| -00000010 6c 9f 6c 4c 0b c2 15 bb 8c ca f2 a1 cd 6e a8 5e |l.lL.........n.^| -00000020 78 93 e0 f5 02 20 53 c5 d3 0c 38 c4 0f 41 23 e4 |x.... S...8..A#.| -00000030 a9 94 6a 0d db 0f e3 2b c9 53 a9 a9 44 94 d4 a3 |..j....+.S..D...| -00000040 4c cb d3 11 45 f1 |L...E.| -[4e5 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260b8 principal evaluation succeeds for identity 0 -[4e6 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260b8 gate 1512458983047828200 evaluation succeeds -[4e7 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [Writers %!s(*policies.implicitMetaPolicy=&{0xc42039a2a0 1 [0xc420114708]})]} -[4e8 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/msp/mgmt] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[4e9 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[4ea 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/msp/mgmt] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[4eb 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[4ec 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0ABC060A1B08011A0608E79599D10522...07577269746572731A0641646D696E73 -[4ed 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: EA5FB7E305667A845A3393F712CDE1476F2FECE68C23CFAE4E390E89292A0D27 -[4ee 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[4ef 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[4f0 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[4f1 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[4f2 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[4f3 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[4f4 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[4f5 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[4f6 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[4f7 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[4f8 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[4f9 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[4fa 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[4fb 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[4fc 12-05 07:29:43.05 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[4fd 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[4fe 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[4ff 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[500 12-05 07:29:43.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[501 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[502 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -[503 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[504 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[505 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[506 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[507 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[508 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[509 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[50a 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[50b 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[50c 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[50d 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[50e 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[50f 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[510 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[511 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[512 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[513 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[514 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[515 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[516 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[517 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[518 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -[519 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[51a 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[51b 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[51c 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[51d 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[51e 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[51f 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[520 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[521 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[522 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy ChannelCreationPolicy for Application -[523 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[524 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[525 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[526 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[527 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[528 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[529 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[52a 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[52b 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[52c 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[52d 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[52e 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[52f 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[530 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[531 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[532 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[533 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[534 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[535 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[536 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[537 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[538 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[539 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[53a 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[53b 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[53c 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[53d 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[53e 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[53f 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[540 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[541 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[542 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[543 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[544 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[545 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[546 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[547 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[548 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[4f9 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[4fa 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[4fb 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e128 principal matched by identity 0 +[4fc 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 03 5f 04 49 0b 57 23 ad 51 1e ee c2 fc 31 7c 39 |._.I.W#.Q....1|9| +00000010 64 d2 bd 41 1f 6d d4 ca 14 1a b9 d1 f6 27 cf bc |d..A.m.......'..| +[4fd 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 dd 5a 0a 25 0c 82 20 b7 21 51 93 |0E.!..Z.%.. .!Q.| +00000010 a1 37 19 10 ec 44 b7 c7 ce a6 cb 34 eb fc 13 96 |.7...D.....4....| +00000020 15 74 2f f3 87 02 20 51 4b 63 57 4c b6 9a 92 07 |.t/... QKcWL....| +00000030 61 df a6 56 65 9b e5 4a b2 f9 58 cd aa 11 cd 5f |a..Ve..J..X...._| +00000040 3f c9 1a 4b 5e 75 3c |?..K^u<| +[4fe 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e128 principal evaluation succeeds for identity 0 +[4ff 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e128 gate 1513244079657284300 evaluation succeeds +[500 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039c7e0 1 [0xc4200260b0]}) Writers]} +[501 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/msp/mgmt] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[502 12-14 09:34:39.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[503 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[504 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[505 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0ABC060A1B08011A0608AF8BC9D10522...07577269746572731A0641646D696E73 +[506 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 668D84387FB3FA816B545B35C1A946ECB951477F879FDA3C91494B35C1B38768 +[507 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[508 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[509 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[50a 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[50b 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[50c 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[50d 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[50e 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[50f 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[510 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[511 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[512 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[513 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[514 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[515 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[516 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[517 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[518 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +[519 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[51a 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[51b 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[51c 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[51d 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[51e 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[51f 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[520 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[521 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[522 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[523 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[524 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[525 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[526 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[527 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[528 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[529 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[52a 12-14 09:34:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[52b 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[52c 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[52f 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[530 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +[531 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[532 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[533 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[534 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[535 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[536 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[537 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[538 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[539 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[53a 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[53b 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[53c 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[53d 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[53e 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[53f 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[540 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[541 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[542 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[543 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[544 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[545 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[546 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[547 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[548 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[549 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy ChannelCreationPolicy for Application +[54a 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[54b 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[54c 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[54d 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[54e 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[54f 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[550 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[551 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[552 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[553 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[554 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[555 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[556 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[557 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[52d 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Rejecting deliver because channel businesschannel not found +[558 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[559 12-14 09:34:39.67 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[55a 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[55b 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[55c 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[55d 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[55e 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[55f 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[560 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +-----END CERTIFICATE----- +[52e 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[561 12-14 09:34:39.67 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[562 12-14 09:34:39.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +-----END CERTIFICATE----- +[563 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +-----END CERTIFICATE----- +[564 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[565 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[566 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[567 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[568 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[569 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2339,7 +2424,7 @@ wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL liPpNxLSsBU= -----END CERTIFICATE----- -[549 12-05 07:29:43.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[56a 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2353,7 +2438,7 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[54a 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[56b 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2367,12 +2452,12 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[54b 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[54c 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[54d 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[54e 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[54f 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[550 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[56c 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[56d 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[56e 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[56f 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[570 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[571 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2387,7 +2472,7 @@ kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq VA7fF8MfGA== -----END CERTIFICATE----- -[551 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[572 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2401,7 +2486,8 @@ G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb Xk1Xy2C2aVQjOcr++w== -----END CERTIFICATE----- -[552 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[573 12-14 09:34:39.68 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[575 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2415,129 +2501,87 @@ G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb Xk1Xy2C2aVQjOcr++w== -----END CERTIFICATE----- -[553 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[554 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[555 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[556 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[557 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR -h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK -BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf -FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= ------END CERTIFICATE----- -[558 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== ------END CERTIFICATE----- -[559 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== ------END CERTIFICATE----- -[55a 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[55b 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[55c 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[55d 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[55e 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -[55f 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[560 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -[561 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[562 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -[563 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[564 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -[565 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[566 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -[567 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[568 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -[569 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[56a 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[56b 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[56c 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -[56d 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[56e 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -[56f 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[570 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -[571 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[572 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[573 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[574 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[575 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -[576 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel -[577 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -[578 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -[579 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -[57a 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -[57b 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -[57c 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -[57d 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -[57e 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -[57f 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -[580 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -[581 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -[582 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -[583 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[584 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -[585 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -[586 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -[587 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -[588 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -[589 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -[58a 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -[58b 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -[58c 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -[58d 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[58e 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -[58f 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[590 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -[591 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in /Application/Admins -[592 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[593 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Application/Readers -[594 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[595 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Application/Writers -[596 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[597 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[598 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[599 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[59a 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[59b 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[59c 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[59d 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[59e 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[59f 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[5a0 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[5a1 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[5a2 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[5a3 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[5a4 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -[5a5 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200262e8 gate 1512458983079866100 evaluation starts -[5a6 12-05 07:29:43.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200262e8 signed by 0 principal evaluation starts (used [false]) -[5a7 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200262e8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[5a8 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[576 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[574 12-14 09:34:39.68 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +[577 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[578 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[579 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[57a 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[57b 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +[57c 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[57d 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +[57e 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[57f 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +[580 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[581 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[582 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[583 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[584 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[585 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +[586 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[587 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +[588 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[589 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +[58a 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[58b 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +[58c 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[58d 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +[58e 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[58f 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +[590 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[591 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[592 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +[593 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +[594 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +[595 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +[596 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[597 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +[598 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[599 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +[59a 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[59b 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +[59c 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +[59d 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +[59e 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +[59f 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +[5a0 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +[5a1 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +[5a2 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +[5a3 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +[5a4 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +[5a5 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +[5a6 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +[5a7 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +[5a8 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +[5a9 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +[5aa 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +[5ab 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel +[5ac 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +[5ad 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +[5ae 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[5af 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Application/Writers +[5b0 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[5b1 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in /Application/Admins +[5b2 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[5b3 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Application/Readers +[5b4 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[5b5 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[5b6 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[5b7 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[5b8 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[5b9 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[5ba 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[5bb 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[5bc 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[5bd 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[5be 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[5bf 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[5c0 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[5c1 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +[5c2 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026500 gate 1513244079697946400 evaluation starts +[5c3 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026500 signed by 0 principal evaluation starts (used [false]) +[5c4 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026500 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[5c5 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2551,87 +2595,135 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[5a9 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[5aa 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200262e8 principal matched by identity 0 -[5ab 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ae 28 16 e2 b4 c0 28 fc ec b8 21 99 cc 79 d5 ca |.(....(...!..y..| -00000010 0c c3 c5 7d 6c 4c a4 5e 5b f0 d9 e1 fc 81 42 d3 |...}lL.^[.....B.| -[5ac 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c6 67 e4 46 8f 27 7d 42 29 de cc |0E.!..g.F.'}B)..| -00000010 9c a3 e4 5f 14 cf b8 f7 91 1a 74 6d 1d 16 70 7e |..._......tm..p~| -00000020 a8 2b 59 3a cd 02 20 32 eb 46 8a 5f b4 2a 47 89 |.+Y:.. 2.F._.*G.| -00000030 ba 35 49 5c 46 f0 9d 2c 46 88 c2 00 b1 2c a2 cb |.5I\F..,F....,..| -00000040 6f 17 55 34 96 5e b9 |o.U4.^.| -[5ad 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200262e8 principal evaluation succeeds for identity 0 -[5ae 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200262e8 gate 1512458983079866100 evaluation succeeds -[5af 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[5b0 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[5b1 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[5b2 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[5b3 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[5b4 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[5b5 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[5b6 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[5b7 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[5b8 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[5b9 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[5ba 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[5bb 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[5bc 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[5bd 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[5be 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[5bf 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[5c0 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[5c1 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[5c2 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel -[5c3 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[5c4 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[5c5 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[5c6 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[5c7 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[5c8 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[5c9 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[5ca 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[5cb 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[5cc 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -[5cd 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -[5ce 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -[5cf 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[5d0 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[5d1 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[5d2 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[5d3 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[5d4 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[5d5 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[5d6 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[5d7 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[5d8 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[5d9 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[5da 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[5db 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[5dc 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[5dd 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[5de 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[5df 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[5e0 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[5e1 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[5e2 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[5e3 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[5e4 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[5e5 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[5e6 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[5e7 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[5e8 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[5e9 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[5ea 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[5eb 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[5ec 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[5ed 12-05 07:29:43.08 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[5ee 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[5ef 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[5f0 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[5f1 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[5f2 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[5f3 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[5f4 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[5c6 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[5c7 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026500 principal matched by identity 0 +[5c8 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 da dd 74 a9 35 9f 1f 14 e0 3c dd 86 1f 57 bf ba |..t.5....<...W..| +00000010 5e 42 96 9e e3 02 d8 b0 af 35 ce ae 94 24 39 56 |^B.......5...$9V| +[5c9 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c8 49 2b 30 49 6a be d9 eb a3 c9 |0E.!..I+0Ij.....| +00000010 b1 d7 c2 5c db 7d 7f 01 f0 f4 c5 4c a2 2a 38 b4 |...\.}.....L.*8.| +00000020 03 c8 6f ec f5 02 20 26 98 0f ec d7 1d 2d b0 ca |..o... &.....-..| +00000030 7b 73 23 a7 15 35 c6 37 da c7 d0 f8 5a 99 85 fc |{s#..5.7....Z...| +00000040 5a f7 c3 eb b0 dd b3 |Z......| +[5ca 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026500 principal evaluation succeeds for identity 0 +[5cb 12-14 09:34:39.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026500 gate 1513244079697946400 evaluation succeeds +[5cc 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[5cd 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[5ce 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[5cf 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[5d0 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[5d1 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[5d2 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[5d3 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[5d4 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[5d5 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[5d6 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[5d7 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[5d8 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[5d9 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[5da 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[5db 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[5dc 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[5dd 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[5de 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[5df 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel +[5e0 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[5e1 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[5e2 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[5e3 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[5e4 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[5e5 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[5e6 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[5e7 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[5e8 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[5e9 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[5ea 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[5eb 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[5ec 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[5ed 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[5ee 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[5ef 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[5f0 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[5f1 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[5f2 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[5f3 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[5f4 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[5f5 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[5f6 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[5f7 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[5f8 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[5f9 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[5fa 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[5fb 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[5fc 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[5fd 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[5fe 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[5ff 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[600 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[601 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[602 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[603 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[604 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[605 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[606 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[607 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[608 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[609 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[60a 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[60b 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[60c 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[60d 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[60e 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[60f 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[610 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[611 12-14 09:34:39.70 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +VA7fF8MfGA== +-----END CERTIFICATE----- +[612 12-14 09:34:39.71 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[613 12-14 09:34:39.71 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[614 12-14 09:34:39.71 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[615 12-14 09:34:39.71 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[616 12-14 09:34:39.71 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[617 12-14 09:34:39.71 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[618 12-14 09:34:39.71 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[619 12-14 09:34:39.71 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2646,7 +2738,7 @@ wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL liPpNxLSsBU= -----END CERTIFICATE----- -[5f5 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[61a 12-14 09:34:39.71 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2660,7 +2752,7 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[5f6 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[61b 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2674,59 +2766,11 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[5f7 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[5f8 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[5f9 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[5fa 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[5fb 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[5fc 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W -RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ -kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc -8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq -VA7fF8MfGA== ------END CERTIFICATE----- -[5fd 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -Xk1Xy2C2aVQjOcr++w== ------END CERTIFICATE----- -[5fe 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -Xk1Xy2C2aVQjOcr++w== ------END CERTIFICATE----- -[5ff 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[600 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[601 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[602 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[603 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[61c 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[61d 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[61e 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[61f 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[620 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -2740,7 +2784,7 @@ AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= -----END CERTIFICATE----- -[604 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[621 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -2753,7 +2797,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[605 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[622 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -2766,63 +2810,63 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[606 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[607 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[608 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[609 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[60a 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[60b 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[60c 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[60d 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[60e 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[60f 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[610 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[611 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[612 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[613 12-05 07:29:43.09 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[614 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[615 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[616 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[617 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[618 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[619 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[61a 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[61b 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[61c 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[61d 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[61e 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[61f 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[620 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[621 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[622 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[623 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[624 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[625 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[626 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[627 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[628 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[629 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[62a 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[62b 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[62c 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[62d 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[62e 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[62f 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[630 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[631 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[632 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[633 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[634 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[635 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[636 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[637 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[638 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[639 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[63a 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -[63b 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200266d0 gate 1512458983106218000 evaluation starts -[63c 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200266d0 signed by 0 principal evaluation starts (used [false]) -[63d 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200266d0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[63e 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[623 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[624 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[625 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[626 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[627 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[628 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[629 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[62a 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[62b 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[62c 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[62d 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[62e 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[62f 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[630 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[631 12-14 09:34:39.72 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[632 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[633 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[634 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[635 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[636 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[637 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[638 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[639 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[63a 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[63b 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[63c 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[63d 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[63e 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[63f 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[640 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[641 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[642 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[643 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[644 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[645 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[646 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[647 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[648 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[649 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[64a 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[64b 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[64c 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[64d 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[64e 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[64f 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[650 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[651 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[652 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[653 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[654 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[655 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[656 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[657 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +[658 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026c10 gate 1513244079737977900 evaluation starts +[659 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026c10 signed by 0 principal evaluation starts (used [false]) +[65a 12-14 09:34:39.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026c10 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[65b 12-14 09:34:39.74 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2836,87 +2880,87 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[63f 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[640 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200266d0 principal matched by identity 0 -[641 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ae 28 16 e2 b4 c0 28 fc ec b8 21 99 cc 79 d5 ca |.(....(...!..y..| -00000010 0c c3 c5 7d 6c 4c a4 5e 5b f0 d9 e1 fc 81 42 d3 |...}lL.^[.....B.| -[642 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c6 67 e4 46 8f 27 7d 42 29 de cc |0E.!..g.F.'}B)..| -00000010 9c a3 e4 5f 14 cf b8 f7 91 1a 74 6d 1d 16 70 7e |..._......tm..p~| -00000020 a8 2b 59 3a cd 02 20 32 eb 46 8a 5f b4 2a 47 89 |.+Y:.. 2.F._.*G.| -00000030 ba 35 49 5c 46 f0 9d 2c 46 88 c2 00 b1 2c a2 cb |.5I\F..,F....,..| -00000040 6f 17 55 34 96 5e b9 |o.U4.^.| -[643 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200266d0 principal evaluation succeeds for identity 0 -[644 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200266d0 gate 1512458983106218000 evaluation succeeds -[645 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[646 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[647 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[648 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[649 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[64a 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[64b 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[64c 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[64d 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[64e 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[64f 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[650 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[651 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[652 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[653 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[654 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[655 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[656 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[657 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[658 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -[659 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[65a 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[65b 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[65c 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[65d 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[65e 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[65f 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[660 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[661 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[662 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -[663 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -[664 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -[665 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[666 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[667 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[668 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[669 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[66a 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[66b 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[66c 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[66d 12-05 07:29:43.10 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[66e 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[66f 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[670 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[671 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[672 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[673 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[674 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[675 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[676 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[677 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[678 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[679 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[67a 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[67b 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[67c 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[67d 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[67e 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[67f 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[680 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[681 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[682 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[683 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[684 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[685 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[686 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[687 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[688 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[689 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[68a 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[65c 12-14 09:34:39.74 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[65d 12-14 09:34:39.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026c10 principal matched by identity 0 +[65e 12-14 09:34:39.74 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 da dd 74 a9 35 9f 1f 14 e0 3c dd 86 1f 57 bf ba |..t.5....<...W..| +00000010 5e 42 96 9e e3 02 d8 b0 af 35 ce ae 94 24 39 56 |^B.......5...$9V| +[65f 12-14 09:34:39.74 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c8 49 2b 30 49 6a be d9 eb a3 c9 |0E.!..I+0Ij.....| +00000010 b1 d7 c2 5c db 7d 7f 01 f0 f4 c5 4c a2 2a 38 b4 |...\.}.....L.*8.| +00000020 03 c8 6f ec f5 02 20 26 98 0f ec d7 1d 2d b0 ca |..o... &.....-..| +00000030 7b 73 23 a7 15 35 c6 37 da c7 d0 f8 5a 99 85 fc |{s#..5.7....Z...| +00000040 5a f7 c3 eb b0 dd b3 |Z......| +[660 12-14 09:34:39.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420026c10 principal evaluation succeeds for identity 0 +[661 12-14 09:34:39.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420026c10 gate 1513244079737977900 evaluation succeeds +[662 12-14 09:34:39.74 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[663 12-14 09:34:39.74 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[664 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[665 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[666 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[667 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[668 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[669 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[66a 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[66b 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[66c 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[66d 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[66e 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[66f 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[670 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[671 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[672 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[673 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[674 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[675 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +[676 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[677 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[678 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[679 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[67a 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[67b 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[67c 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[67d 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[67e 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[67f 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[680 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[681 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[682 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[683 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[684 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[685 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[686 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[687 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[688 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[689 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[68a 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[68b 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[68c 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[68d 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[68e 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[68f 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[690 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[691 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[692 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[693 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[694 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[695 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[696 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[697 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[698 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[699 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[69a 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[69b 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[69c 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[69d 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[69e 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[69f 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[6a0 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[6a1 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[6a2 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[6a3 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[6a4 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[6a5 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[6a6 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[6a7 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2931,7 +2975,7 @@ wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL liPpNxLSsBU= -----END CERTIFICATE----- -[68b 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[6a8 12-14 09:34:39.75 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2945,7 +2989,7 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[68c 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[6a9 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2959,12 +3003,12 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[68d 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[68e 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[68f 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[690 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[691 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[692 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[6aa 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[6ab 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[6ac 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[6ad 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[6ae 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[6af 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2979,7 +3023,7 @@ kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq VA7fF8MfGA== -----END CERTIFICATE----- -[693 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[6b0 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2993,7 +3037,7 @@ G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb Xk1Xy2C2aVQjOcr++w== -----END CERTIFICATE----- -[694 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[6b1 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -3007,11 +3051,11 @@ G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb Xk1Xy2C2aVQjOcr++w== -----END CERTIFICATE----- -[695 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[696 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[697 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[698 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[699 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[6b2 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[6b3 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[6b4 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[6b5 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[6b6 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -3025,7 +3069,7 @@ AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= -----END CERTIFICATE----- -[69a 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[6b7 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -3038,7 +3082,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[69b 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[6b8 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -3051,179 +3095,223 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[69c 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[69d 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[69e 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[69f 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[6a0 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -[6a1 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[6a2 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -[6a3 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[6a4 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -[6a5 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[6a6 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -[6a7 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[6a8 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -[6a9 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[6aa 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -[6ab 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[6ac 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[6ad 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[6ae 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[6af 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[6b0 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[6b1 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[6b2 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -[6b3 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[6b4 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -[6b5 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[6b6 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -[6b7 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[6b8 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[6b9 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[6ba 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[6bb 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -[6bc 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -[6bd 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[6be 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel -[6bf 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -[6c0 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -[6c1 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -[6c2 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -[6c3 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -[6c4 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -[6c5 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -[6c6 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -[6c7 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -[6c8 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -[6c9 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[6ca 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel -[6cb 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[6cc 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel -[6cd 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -[6ce 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -[6cf 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[6d0 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -[6d1 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[6d2 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -[6d3 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[6d4 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -[6d5 12-05 07:29:43.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -[6d6 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -[6d7 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -[6d8 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -[6d9 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -[6da 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -[6db 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[6dc 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[6dd 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[6de 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[6df 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[6e0 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[6e1 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[6e2 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -[6e3 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[6e4 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -[6e5 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation -[6e6 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[6e7 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation -[6e8 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[6e9 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation -[6ea 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[6eb 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -[6ec 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[6ed 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[6ee 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[6ef 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[6f0 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[6f1 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[6f2 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[6f3 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[6f4 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[6f5 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[6f6 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[6f7 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[6f8 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[6f9 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[6fa 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[6fb 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[6fc 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[6fd 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[6fe 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[6ff 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[700 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[701 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[702 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[703 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[704 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[705 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[706 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[707 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[708 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[709 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[70a 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[70b 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[70c 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[70d 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[70e 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[70f 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[710 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[711 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[712 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[713 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[714 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[715 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[716 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -[717 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[718 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[719 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[71a 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[71b 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[71c 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[71d 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[71e 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[71f 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[720 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -[721 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -[722 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -[723 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[724 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[725 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[726 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[727 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[728 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[729 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[72a 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[72b 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[72c 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[72d 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[72e 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[72f 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[730 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[731 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[732 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[733 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[734 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[735 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[736 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[737 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[738 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[739 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[73a 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[73b 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[73c 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[73d 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[73e 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[73f 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[740 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[741 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[742 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[743 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[744 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[745 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[746 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[747 12-05 07:29:43.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[748 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[6b9 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[6ba 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[6bb 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[6bc 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[6bd 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +[6be 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[6bf 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +[6c0 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[6c1 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +[6c2 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[6c3 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +[6c4 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[6c5 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +[6c6 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[6c7 12-14 09:34:39.76 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +[6c8 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[6c9 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[6ca 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[6cb 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[6cc 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[6cd 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[6ce 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[6cf 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +[6d0 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[6d1 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +[6d2 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[6d3 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +[6d4 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[6d5 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[6d6 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[6d7 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[6d8 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[6d9 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +[6da 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[6db 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +[6dc 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +[6dd 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +[6de 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +[6df 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +[6e0 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +[6e1 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +[6e2 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[6e3 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +[6e4 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +[6e5 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +[6e6 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +[6e7 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +[6e8 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +[6e9 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +[6ea 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +[6eb 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +[6ec 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +[6ed 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +[6ee 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +[6ef 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +[6f0 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[6f1 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +[6f2 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[6f3 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +[6f4 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[6f5 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +[6f6 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +[6f7 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +[6f8 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[6f9 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[6fa 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[6fb 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[6fc 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[6fd 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[6fe 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[6ff 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +[700 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[701 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +[702 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +[703 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[704 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +[705 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[706 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +[707 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[708 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +[709 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[70a 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[70b 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[70c 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[70d 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[70e 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[70f 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[710 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[711 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[712 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[713 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[714 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[715 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[716 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[717 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[718 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[719 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[71a 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[71b 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[71c 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[71d 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[71e 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[71f 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[720 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[721 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[722 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[723 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[724 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[725 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[726 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[727 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[728 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[729 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[72a 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[72b 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[72c 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[72d 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[72e 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[72f 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[730 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[731 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[732 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[733 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +[734 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[735 12-14 09:34:39.77 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[736 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[737 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[738 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[739 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[73a 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[73b 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[73c 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[73d 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[73e 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[73f 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[740 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[741 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[742 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[743 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[744 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[745 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[746 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[747 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[748 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[749 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[74a 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[74b 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[74c 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[74d 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[74e 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[74f 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[750 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[751 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[752 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[753 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[754 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[755 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[756 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[757 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[758 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[759 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[75a 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[75b 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[75c 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[75d 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[75e 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[75f 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[760 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[761 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[762 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[763 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[764 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +-----END CERTIFICATE----- +[765 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +-----END CERTIFICATE----- +[766 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +-----END CERTIFICATE----- +[767 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[768 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[769 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[76a 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[76b 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[76c 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3238,7 +3326,7 @@ wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL liPpNxLSsBU= -----END CERTIFICATE----- -[749 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[76d 12-14 09:34:39.78 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3252,7 +3340,7 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[74a 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[76e 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3266,12 +3354,12 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[74b 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[74c 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[74d 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[74e 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[74f 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[750 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[76f 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[770 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[771 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[772 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[773 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[774 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3286,7 +3374,7 @@ kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq VA7fF8MfGA== -----END CERTIFICATE----- -[751 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[775 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -3300,7 +3388,7 @@ G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb Xk1Xy2C2aVQjOcr++w== -----END CERTIFICATE----- -[752 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[776 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -3314,11 +3402,183 @@ G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb Xk1Xy2C2aVQjOcr++w== -----END CERTIFICATE----- -[753 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[754 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[755 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[756 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[757 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[777 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[778 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[779 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[77a 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[77b 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +[77c 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[77d 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +[77e 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[77f 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +[780 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[781 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[782 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[783 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[784 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[785 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +[786 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[787 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +[788 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[789 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +[78a 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[78b 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +[78c 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[78d 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +[78e 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[78f 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +[790 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[791 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[792 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[793 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[794 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[795 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[796 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +[797 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +[798 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[799 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +[79a 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[79b 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +[79c 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +[79d 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +[79e 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[79f 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +[7a0 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +[7a1 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +[7a2 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +[7a3 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +[7a4 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[7a5 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +[7a6 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[7a7 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +[7a8 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +[7a9 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +[7aa 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +[7ab 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +[7ac 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +[7ad 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +[7ae 12-14 09:34:39.79 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[7af 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +[7b0 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +[7b1 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +[7b2 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +[7b3 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +[7b4 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +[7b5 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +[7b6 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[7b7 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[7b8 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[7b9 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[7ba 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[7bb 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[7bc 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[7bd 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +[7be 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[7bf 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +[7c0 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +[7c1 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[7c2 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +[7c3 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[7c4 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +[7c5 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[7c6 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +[7c7 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[7c8 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Found message which requested to be isolated, cutting into its own batch +[7c9 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +[7ca 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +[7cb 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9086], Going to peek [8] bytes +[7cc 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9084], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[7cd 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[7ce 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[7cf 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[7d0 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[7d1 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[7d2 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[7d3 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[7d4 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[7d5 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[7d6 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[7d7 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[7d8 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[7d9 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[7da 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[7db 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[7dc 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[7dd 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[7de 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[7df 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[7e0 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[7e1 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[7e2 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[7e3 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[7e4 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[7e5 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[7e6 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[7e7 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[7e8 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[7e9 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[7ea 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[7eb 12-14 09:34:39.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[7ec 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[7ed 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[7ee 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[7ef 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[7f0 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[7f1 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[7f2 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[7f3 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[7f4 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[7f5 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[7f6 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +[7f7 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[7f8 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[7f9 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[7fa 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[7fb 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[7fc 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[7fd 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[7fe 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[7ff 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[800 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[801 12-14 09:34:39.81 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[802 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[803 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[804 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[805 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[806 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[807 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[808 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[809 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[80a 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[80b 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[80c 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[80d 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[80e 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[80f 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[810 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[811 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[812 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[813 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[814 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[815 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[816 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[817 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[818 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[819 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[81a 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[81b 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[81c 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[81d 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[81e 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[81f 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[820 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[821 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[822 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[823 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[824 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[825 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[826 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[827 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -3332,7 +3592,7 @@ AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= -----END CERTIFICATE----- -[758 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[828 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -3345,7 +3605,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[759 12-05 07:29:43.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[829 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -3358,181 +3618,60 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[75a 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[75b 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[75c 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[75d 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[75e 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -[75f 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[760 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -[761 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[762 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -[763 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[764 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -[765 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[766 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -[767 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[768 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -[769 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[76a 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[76b 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[76c 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[76d 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[76e 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[76f 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[770 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -[771 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[772 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -[773 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[774 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -[775 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[776 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[777 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[778 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[779 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[77a 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel -[77b 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[77c 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel -[77d 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -[77e 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -[77f 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -[780 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -[781 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[782 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel -[783 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -[784 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -[785 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -[786 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -[787 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -[788 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -[789 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -[78a 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -[78b 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[78c 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -[78d 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -[78e 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -[78f 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[790 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -[791 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -[792 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -[793 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -[794 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -[795 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -[796 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -[797 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[798 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -[799 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[79a 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[79b 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[79c 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[79d 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[79e 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[79f 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[7a0 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -[7a1 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[7a2 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -[7a3 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation -[7a4 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[7a5 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation -[7a6 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[7a7 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation -[7a8 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[7a9 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -[7aa 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[7ab 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Found message which requested to be isolated, cutting into its own batch -[7ac 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] CreateNextBlock.CreateNextBlock.Next.readBlock -> DEBU Read block 0 -[7ad 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[7ae 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[7af 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[7b0 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[7b1 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[7b2 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[7b3 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[7b4 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[7b5 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[7b6 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[7b7 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[7b8 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[7b9 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[7ba 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[7bb 12-05 07:29:43.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[7bc 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[7bd 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[7be 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[7bf 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[7c0 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[7c1 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[7c2 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[7c3 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[7c4 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[7c5 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[7c6 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[7c7 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[7c8 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[7c9 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[7ca 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[7cb 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[7cc 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[7cd 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[7ce 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[7cf 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[7d0 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[7d1 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[7d2 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[7d3 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[7d4 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[7d5 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[7d6 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -[7d7 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[7d8 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[7d9 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[7da 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[7db 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[7dc 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[7dd 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[7de 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[7df 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[7e0 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -[7e1 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -[7e2 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -[7e3 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[7e4 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[7e5 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[7e6 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[7e7 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[7e8 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[7e9 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[7ea 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[7eb 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[7ec 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[7ed 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[7ee 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[7ef 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[7f0 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[7f1 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[7f2 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[7f3 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[7f4 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[7f5 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[7f6 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[7f7 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[7f8 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[7f9 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[7fa 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[7fb 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[7fc 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[7fd 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[7fe 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[7ff 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[800 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[801 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[802 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[803 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[804 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[805 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[806 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[807 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[808 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[82a 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[82b 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[82c 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[82d 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[82e 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[82f 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +VA7fF8MfGA== +-----END CERTIFICATE----- +[830 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[831 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[832 12-14 09:34:39.82 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[833 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[834 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[835 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[836 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[837 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3547,7 +3686,7 @@ wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL liPpNxLSsBU= -----END CERTIFICATE----- -[809 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[838 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3561,7 +3700,7 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[80a 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[839 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3575,12 +3714,423 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[80b 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[80c 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[80d 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[80e 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[80f 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[810 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[83a 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[83b 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[83c 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[83d 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[83e 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +[83f 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[840 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +[841 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[842 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +[843 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[844 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[845 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[846 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[847 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[848 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +[849 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[84a 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +[84b 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[84c 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +[84d 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[84e 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +[84f 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[850 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +[851 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[852 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +[853 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[854 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[855 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[856 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[857 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[858 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[859 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +[85a 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +[85b 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +[85c 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +[85d 12-14 09:34:39.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +[85e 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +[85f 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[860 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +[861 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +[862 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +[863 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[864 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +[865 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[866 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +[867 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +[868 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +[869 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +[86a 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +[86b 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +[86c 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +[86d 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +[86e 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +[86f 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +[870 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +[871 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[872 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +[873 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +[874 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +[875 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[876 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +[877 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[878 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +[879 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[87a 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[87b 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[87c 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[87d 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[87e 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[87f 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[880 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +[881 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[882 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +[883 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +[884 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[885 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +[886 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[887 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +[888 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[889 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +[88a 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[88b 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +[88c 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] +[88d 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] does not exist +[88e 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] exists +[88f 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +[890 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +[891 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +[892 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +[893 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +[894 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +[895 12-14 09:34:39.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc42017c200)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +[896 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] +[897 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x4c, 0x27, 0x5, 0x1c, 0x84, 0xd, 0xf5, 0xe1, 0xcf, 0xca, 0xe1, 0x49, 0x4a, 0x6a, 0xa, 0x31, 0xd4, 0x1c, 0x37, 0xaa, 0xd5, 0xcf, 0xfe, 0x44, 0x8e, 0x3, 0x4b, 0xb5, 0x72, 0x19, 0x89, 0x53} txOffsets= +txId= locPointer=offset=38, bytesLength=11902 +] +[898 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11945], isChainEmpty=[false], lastBlockNumber=[0] +[899 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +[89a 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +[89b 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[11945], Going to peek [8] bytes +[89c 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[11943], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[89d 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.Commit.newChain.newChainSupport -> DEBU [channel: businesschannel] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=1): +[89e 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.Commit.newChain -> INFO Created and starting new chain businesschannel +[89f 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc4200ccfe0 chain:0xc4200cd4a0 cutter:0xc4200cfa40 filters:0xc4200cd040 signer:0x128b4a8 lastConfig:0 lastConfigSeq:0} +[8a0 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +[8a1 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[8a2 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[8a3 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[8a4 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[8a5 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...07FFAB230DFA1ECF9470FD1B926F1267 +[8a6 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 306722B36E98E83E5558B266B52927685DEDF59CA647E3022E6596AA98155312 +[8a7 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[8a8 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[8a9 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 +[8aa 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[8ab 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[8ac 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...07FFAB230DFA1ECF9470FD1B926F1267 +[8ad 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 83EA771DDF0CE3085BF972B54D78D56A74204E8D3365827C7168536EDF4FF5E7 +[8ae 12-14 09:34:39.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xae, 0xf9, 0xc1, 0xb5, 0xc1, 0xc0, 0xcb, 0x47, 0xde, 0x65, 0x3a, 0xa5, 0xa0, 0xa8, 0x72, 0x55, 0xff, 0xd5, 0x66, 0x23, 0xbf, 0xb3, 0x92, 0x76, 0xf4, 0x3f, 0x17, 0xd7, 0x78, 0xd4, 0xe9, 0x10} txOffsets= +txId= locPointer=offset=70, bytesLength=12808 +] +[8af 12-14 09:34:39.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[23720], isChainEmpty=[false], lastBlockNumber=[1] +[8b0 12-14 09:34:39.86 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: testchainid] Wrote block 1 +[8b1 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +[8b2 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026550 gate 1513244079890827500 evaluation starts +[8b3 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026550 signed by 0 principal evaluation starts (used [false]) +[8b4 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026550 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[8b5 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[8b6 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026550 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +[8b7 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026550 principal evaluation fails +[8b8 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026550 gate 1513244079890827500 evaluation fails +[8b9 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026560 gate 1513244079892988300 evaluation starts +[8ba 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026560 signed by 0 principal evaluation starts (used [false]) +[8bb 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026560 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[8bc 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[8bd 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026560 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +[8be 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026560 principal evaluation fails +[8bf 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026560 gate 1513244079892988300 evaluation fails +[8c0 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026570 gate 1513244079894323900 evaluation starts +[8c1 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026570 signed by 0 principal evaluation starts (used [false]) +[8c2 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026570 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[8c3 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[8c4 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[8c5 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +[8c6 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026570 principal matched by identity 0 +[8c7 12-14 09:34:39.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 73 1a d2 ad e7 fd 26 86 1e f4 ec b6 d6 31 f9 c1 |s.....&......1..| +00000010 3d e1 55 fb cf 5f fd b7 7c ad 8b 00 a0 02 0a 15 |=.U.._..|.......| +[8c8 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8e c9 3b 58 08 8d e4 b6 90 41 c5 |0E.!...;X.....A.| +00000010 26 1d f1 e2 9d b9 10 21 71 e6 ab 15 f7 74 3e 3b |&......!q....t>;| +00000020 d7 be 4d ec b5 02 20 0d 8d 15 6a 14 7d f9 14 aa |..M... ...j.}...| +00000030 c1 e0 71 66 b8 89 ca e0 a4 bc 9e f2 5e 4a bc 60 |..qf........^J.`| +00000040 df 9e 6e 39 cf 2a 31 |..n9.*1| +[8c9 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026570 principal evaluation succeeds for identity 0 +[8ca 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026570 gate 1513244079894323900 evaluation succeeds +[8cb 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42081f9c0 1 [0xc4200262e8]}) %!s(*policies.implicitMetaPolicy=&{0xc4209a6380 1 [0xc420026368 0xc4200263d8]})]} +[8cc 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc42015b9e0) start: > stop: > +[8cd 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +[8ce 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +[8cf 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[11945], Going to peek [8] bytes +[8d0 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[11943], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[8d1 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42015b9e0) +[8d2 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc42015b9e0), waiting for new SeekInfo +[8d3 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[8d4 12-14 09:34:39.90 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[8d5 12-14 09:34:39.90 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[8d6 12-14 09:34:41.38 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[8d7 12-14 09:34:41.38 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +[8d8 12-14 09:34:41.38 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[8d9 12-14 09:34:41.41 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[8da 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +[8db 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Preprocessing CONFIG_UPDATE +[8dc 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/orderer/configupdate] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process -> DEBU Processing channel reconfiguration request for channel businesschannel +[8dd 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[8de 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[8df 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[8e0 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[8e1 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[8e2 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[8e3 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[8e4 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[8e5 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[8e6 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[8e7 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +[8e8 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[8e9 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[8ea 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[8eb 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[8ec 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +[8ed 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42018e8e8 gate 1513244081414220700 evaluation starts +[8ee 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018e8e8 signed by 0 principal evaluation starts (used [false]) +[8ef 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018e8e8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[8f0 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[8f1 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[8f2 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018e8e8 principal matched by identity 0 +[8f3 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 90 5a de 1e c3 6f b0 aa 07 d5 13 30 e0 54 69 ca |.Z...o.....0.Ti.| +00000010 d6 99 0b c9 3d d8 4c d3 60 59 21 0a 50 37 48 7a |....=.L.`Y!.P7Hz| +[8f4 12-14 09:34:41.41 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 9a 72 56 8b 79 99 61 59 35 a5 bc |0E.!..rV.y.aY5..| +00000010 0c 70 2c f0 48 b4 0e 7e d1 bc 2b a4 6c 08 01 ee |.p,.H..~..+.l...| +00000020 6b 7b b1 19 07 02 20 65 76 52 d9 cc c2 fb 2f e4 |k{.... evR..../.| +00000030 ec 37 79 19 17 4c 1b f7 72 73 44 6f c7 8a b5 15 |.7y..L..rsDo....| +00000040 bc 3e 95 ed c0 47 73 |.>...Gs| +[8f5 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018e8e8 principal evaluation succeeds for identity 0 +[8f6 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42018e8e8 gate 1513244081414220700 evaluation succeeds +[8f7 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[8f8 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[8f9 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[8fa 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[8fb 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[8fc 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[8fd 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[8fe 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[8ff 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[900 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[901 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[902 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[903 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[904 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[905 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[906 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[907 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[908 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[909 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[90a 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel +[90b 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[90c 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[90d 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[90e 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[90f 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[910 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[911 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[912 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[913 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[914 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[915 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[916 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[917 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[918 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[919 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[91a 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[91b 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[91c 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[91d 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[91e 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[91f 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[920 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[921 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[922 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[923 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[924 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[925 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[926 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[927 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[928 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[929 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[92a 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[92b 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[92c 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[92d 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[92e 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[92f 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[930 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[931 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[932 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[933 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[934 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[935 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[936 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[937 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[938 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[939 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[93a 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[93b 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +-----END CERTIFICATE----- +[93c 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +-----END CERTIFICATE----- +[93d 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +-----END CERTIFICATE----- +[93e 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[93f 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[940 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[941 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[942 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[943 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 ++/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN +wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 +NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL +liPpNxLSsBU= +-----END CERTIFICATE----- +[944 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[945 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[946 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[947 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[948 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[949 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[94a 12-14 09:34:41.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[94b 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3595,7 +4145,7 @@ kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc 8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq VA7fF8MfGA== -----END CERTIFICATE----- -[811 12-05 07:29:43.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[94c 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -3609,7 +4159,7 @@ G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb Xk1Xy2C2aVQjOcr++w== -----END CERTIFICATE----- -[812 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[94d 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -3623,159 +4173,107 @@ G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb Xk1Xy2C2aVQjOcr++w== -----END CERTIFICATE----- -[813 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[814 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[815 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[816 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[817 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +[94e 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[94f 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[950 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[951 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[952 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[953 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[954 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[955 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0ABC060A1B08011A0608B18BC9D10522...30E00C25BFD3DA3AD44EFC2F5B4CA181 +[956 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 44F13E4F6D9AB3E1EF223D26F343D05BB159C3A662114F9D519B3BE9F3BAE404 +[957 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type CONFIG +[958 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[959 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018ecd0 gate 1513244081432853600 evaluation starts +[95a 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018ecd0 signed by 0 principal evaluation starts (used [false]) +[95b 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018ecd0 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[95c 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR -h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK -BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf -FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +Tg== -----END CERTIFICATE----- -[818 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +[95d 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018ecd0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[95e 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018ecd0 principal evaluation fails +[95f 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018ecd0 gate 1513244081432853600 evaluation fails +[960 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018ece0 gate 1513244081433381200 evaluation starts +[961 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018ece0 signed by 0 principal evaluation starts (used [false]) +[962 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018ece0 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[963 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +Tg== -----END CERTIFICATE----- -[819 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +[964 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018ece0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[965 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018ece0 principal evaluation fails +[966 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018ece0 gate 1513244081433381200 evaluation fails +[967 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018ecf0 gate 1513244081433914100 evaluation starts +[968 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018ecf0 signed by 0 principal evaluation starts (used [false]) +[969 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018ecf0 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[96a 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +Tg== -----END CERTIFICATE----- -[81a 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[81b 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[81c 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[81d 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[81e 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -[81f 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[820 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -[821 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[822 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -[823 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[824 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -[825 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[826 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -[827 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[828 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -[829 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[82a 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[82b 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[82c 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[82d 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[82e 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[82f 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[830 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -[831 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[832 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -[833 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[834 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -[835 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[836 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[837 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[838 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[839 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -[83a 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -[83b 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -[83c 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -[83d 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -[83e 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -[83f 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -[840 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -[841 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -[842 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -[843 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[844 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel -[845 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[846 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel -[847 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[848 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel -[849 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -[84a 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -[84b 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[84c 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -[84d 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[84e 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -[84f 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -[850 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -[851 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[852 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -[853 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -[854 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -[855 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -[856 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -[857 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -[858 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -[859 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[85a 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[85b 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[85c 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[85d 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[85e 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[85f 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[860 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -[861 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[862 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -[863 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation -[864 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[865 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation -[866 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[867 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation -[868 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[869 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -[86a 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[86b 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate -> DEBU Initializing chain businesschannel at: /var/hyperledger/production/orderer/chain_businesschannel -[86c 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.newChain -> DEBU Initialized to block height 18446744073709551615 with hash -[86d 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] WriteBlock.Commit.newChain.Append.writeBlock -> DEBU Wrote block 0 -[86e 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.readBlock -> DEBU Read block 0 -[86f 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.Commit.newChain.newChainSupport -> DEBU [channel: businesschannel] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=1): -[870 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.Commit.newChain -> INFO Created and starting new chain businesschannel -[871 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc4202e2820 chain:0xc4202e2d20 cutter:0xc4202d97c0 filters:0xc4202e2880 signer:0x1285450 lastConfig:0 lastConfigSeq:0} -[872 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} -[873 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[874 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[875 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[876 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[877 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...C47B95147CD8029A8EC8833F42B9E537 -[878 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: CD44DAF7FC111E81701F3CBB4DCB1CF2095DEC002521EB2C4B88D29C0FA4BB62 -[879 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[87a 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[87b 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 -[87c 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[87d 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[87e 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...C47B95147CD8029A8EC8833F42B9E537 -[87f 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 9B0519270D0FEFE396887AADD6D4655D9FFE9E920A910A95B04FB7F50D579213 -[880 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] WriteBlock.Append.writeBlock -> DEBU Wrote block 1 -[881 12-05 07:29:43.16 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: testchainid] Wrote block 1 -[882 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -[883 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263c0 gate 1512458983261164300 evaluation starts -[884 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263c0 signed by 0 principal evaluation starts (used [false]) -[885 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263c0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[886 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[96b 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[96c 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[96d 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018ecf0 principal matched by identity 0 +[96e 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 44 f1 3e 4f 6d 9a b3 e1 ef 22 3d 26 f3 43 d0 5b |D.>Om...."=&.C.[| +00000010 b1 59 c3 a6 62 11 4f 9d 51 9b 3b e9 f3 ba e4 04 |.Y..b.O.Q.;.....| +[96f 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 2c 23 29 6b e9 9e 97 f2 70 4c 72 31 |0D. ,#)k....pLr1| +00000010 2f 36 ac e6 6a d3 53 0f 21 c1 c5 40 3a 15 57 d1 |/6..j.S.!..@:.W.| +00000020 cc 02 5a 86 02 20 1d 03 80 74 5f b6 0a 01 3d ff |..Z.. ...t_...=.| +00000030 5e 27 d6 32 be ba 99 0a a9 88 e9 83 9a 8f 33 70 |^'.2..........3p| +00000040 43 6a 07 54 2e 6e |Cj.T.n| +[970 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018ecf0 principal evaluation succeeds for identity 0 +[971 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018ecf0 gate 1513244081433914100 evaluation succeeds +[972 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4209a6580 1 [0xc420026390 0xc420026400]}) %!s(*policies.implicitMetaPolicy=&{0xc42081fae0 1 [0xc420026298]})]} +[973 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[974 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[975 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[976 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[977 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[978 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[979 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[97a 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[97b 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[97c 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[97d 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +[97e 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[97f 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[980 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[981 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[982 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +[983 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420026938 gate 1513244081439228500 evaluation starts +[984 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026938 signed by 0 principal evaluation starts (used [false]) +[985 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026938 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[986 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3789,36 +4287,2258 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[887 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[888 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[889 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263c0 principal matched by identity 0 -[88a 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 03 88 f2 3a ff 73 b5 80 c8 74 6a d1 44 94 c0 be |...:.s...tj.D...| -00000010 89 19 b4 5a 26 23 14 df ae 49 f3 fd ec ed dc 7a |...Z&#...I.....z| -[88b 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 50 59 86 96 72 0f e4 5d 1a da 0c a6 |0D. PY..r..]....| -00000010 be c4 a2 d6 91 91 4f 69 e1 24 0c 7a de 57 98 48 |......Oi.$.z.W.H| -00000020 a1 04 e1 d1 02 20 11 4e 4b df e0 fb 24 7d 30 ef |..... .NK...$}0.| -00000030 03 87 99 d3 b7 05 e3 d8 9d 7c 7b 43 d3 4a fe 28 |.........|{C.J.(| -00000040 0a 43 3a 9f 96 48 |.C:..H| -[88c 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263c0 principal evaluation succeeds for identity 0 -[88d 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263c0 gate 1512458983261164300 evaluation succeeds -[88e 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bf20 1 [0xc420026cb8 0xc420026d60]}) %!s(*policies.implicitMetaPolicy=&{0xc42037c280 1 [0xc420026dd8]})]} -[88f 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420240ca0) start: > stop: > -[890 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 0 -[891 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420240ca0) -[892 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc420240ca0), waiting for new SeekInfo -[893 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[894 12-05 07:29:43.26 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[895 12-05 07:29:43.27 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[896 12-05 07:29:46.54 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[897 12-05 07:29:46.54 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop -[898 12-05 07:29:49.62 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[899 12-05 07:29:49.62 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[89a 12-05 07:29:49.62 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[89b 12-05 07:29:49.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -[89c 12-05 07:29:49.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026430 gate 1512458989628795000 evaluation starts -[89d 12-05 07:29:49.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026430 signed by 0 principal evaluation starts (used [false]) -[89e 12-05 07:29:49.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026430 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b6741774942416749514a674259424b4f4873742f2f6d66546a70557731677a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d546c61467730794e7a45784d6a6b784d7a55334d546c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414532695a455549764c674b414e736c474b52724473513637505a75764d426c44340a733058687a6a6c41724b6d745345477a6872314f3433494b7a34545238423376697954306a4f364c31525644556774644373483541614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167656a6a5a342b6e54587946330a786931744b4933444c3856796c482b76506b45464f4c6d6752533668712f6777436759494b6f5a497a6a304541774944534141775251496841504943547366350a59723262764752673247383549766567674f764b4d362b334979686a53503445337848324169425734516a4344745a6c5979474b3576696c465237687a655a560a6962486c5256315669467148627a463377773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[89f 12-05 07:29:49.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[987 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[988 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026938 principal matched by identity 0 +[989 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 90 5a de 1e c3 6f b0 aa 07 d5 13 30 e0 54 69 ca |.Z...o.....0.Ti.| +00000010 d6 99 0b c9 3d d8 4c d3 60 59 21 0a 50 37 48 7a |....=.L.`Y!.P7Hz| +[98a 12-14 09:34:41.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 9a 72 56 8b 79 99 61 59 35 a5 bc |0E.!..rV.y.aY5..| +00000010 0c 70 2c f0 48 b4 0e 7e d1 bc 2b a4 6c 08 01 ee |.p,.H..~..+.l...| +00000020 6b 7b b1 19 07 02 20 65 76 52 d9 cc c2 fb 2f e4 |k{.... evR..../.| +00000030 ec 37 79 19 17 4c 1b f7 72 73 44 6f c7 8a b5 15 |.7y..L..rsDo....| +00000040 bc 3e 95 ed c0 47 73 |.>...Gs| +[98b 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026938 principal evaluation succeeds for identity 0 +[98c 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420026938 gate 1513244081439228500 evaluation succeeds +[98d 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[98e 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[98f 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[990 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[991 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[992 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[993 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[994 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[995 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[996 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[997 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[998 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[999 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[99a 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[99b 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[99c 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[99d 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[99e 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[99f 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[9a0 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +[9a1 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[9a2 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[9a3 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[9a4 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[9a5 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[9a6 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[9a7 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[9a8 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[9a9 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[9aa 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[9ab 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[9ac 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[9ad 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[9ae 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[9af 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[9b0 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[9b1 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[9b2 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[9b3 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[9b4 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[9b5 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[9b6 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[9b7 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[9b8 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[9b9 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[9ba 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[9bb 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[9bc 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[9bd 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[9be 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[9bf 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[9c0 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[9c1 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[9c2 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[9c3 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[9c4 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[9c5 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[9c6 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[9c7 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[9c8 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[9c9 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[9ca 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[9cb 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[9cc 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[9cd 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[9ce 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[9cf 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[9d0 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[9d1 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +-----END CERTIFICATE----- +[9d2 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +-----END CERTIFICATE----- +[9d3 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +-----END CERTIFICATE----- +[9d4 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[9d5 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[9d6 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[9d7 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[9d8 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[9d9 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 ++/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN +wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 +NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL +liPpNxLSsBU= +-----END CERTIFICATE----- +[9da 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[9db 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[9dc 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[9dd 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[9de 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[9df 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[9e0 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[9e1 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +VA7fF8MfGA== +-----END CERTIFICATE----- +[9e2 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[9e3 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[9e4 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[9e5 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[9e6 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[9e7 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG +[9e8 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[9e9 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026c28 gate 1513244081448898700 evaluation starts +[9ea 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026c28 signed by 0 principal evaluation starts (used [false]) +[9eb 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026c28 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[9ec 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +Tg== +-----END CERTIFICATE----- +[9ed 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026c28 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[9ee 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026c28 principal evaluation fails +[9ef 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026c28 gate 1513244081448898700 evaluation fails +[9f0 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026c38 gate 1513244081449479700 evaluation starts +[9f1 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026c38 signed by 0 principal evaluation starts (used [false]) +[9f2 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026c38 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[9f3 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +Tg== +-----END CERTIFICATE----- +[9f4 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026c38 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[9f5 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026c38 principal evaluation fails +[9f6 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026c38 gate 1513244081449479700 evaluation fails +[9f7 12-14 09:34:41.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026c48 gate 1513244081449980200 evaluation starts +[9f8 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026c48 signed by 0 principal evaluation starts (used [false]) +[9f9 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026c48 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[9fa 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +Tg== +-----END CERTIFICATE----- +[9fb 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[9fc 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[9fd 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026c48 principal matched by identity 0 +[9fe 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 44 f1 3e 4f 6d 9a b3 e1 ef 22 3d 26 f3 43 d0 5b |D.>Om...."=&.C.[| +00000010 b1 59 c3 a6 62 11 4f 9d 51 9b 3b e9 f3 ba e4 04 |.Y..b.O.Q.;.....| +[a00 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 2c 23 29 6b e9 9e 97 f2 70 4c 72 31 |0D. ,#)k....pLr1| +00000010 2f 36 ac e6 6a d3 53 0f 21 c1 c5 40 3a 15 57 d1 |/6..j.S.!..@:.W.| +00000020 cc 02 5a 86 02 20 1d 03 80 74 5f b6 0a 01 3d ff |..Z.. ...t_...=.| +00000030 5e 27 d6 32 be ba 99 0a a9 88 e9 83 9a 8f 33 70 |^'.2..........3p| +00000040 43 6a 07 54 2e 6e |Cj.T.n| +[9ff 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[a02 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026c48 principal evaluation succeeds for identity 0 +[a03 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026c48 gate 1513244081449980200 evaluation succeeds +[a04 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4209a6580 1 [0xc420026390 0xc420026400]}) %!s(*policies.implicitMetaPolicy=&{0xc42081fae0 1 [0xc420026298]})]} +[a05 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[a06 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[a01 12-14 09:34:41.45 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[a07 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[a08 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[a09 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[a0a 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[a0b 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[a0c 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[a0d 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[a0e 12-14 09:34:41.45 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[a0f 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[a10 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[a11 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[a12 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +[a13 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[a14 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[a15 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[a16 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +[a17 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42018e590 gate 1513244081457915900 evaluation starts +[a18 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018e590 signed by 0 principal evaluation starts (used [false]) +[a19 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018e590 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[a1a 12-14 09:34:41.45 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[a1b 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[a1c 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018e590 principal matched by identity 0 +[a1d 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 90 5a de 1e c3 6f b0 aa 07 d5 13 30 e0 54 69 ca |.Z...o.....0.Ti.| +00000010 d6 99 0b c9 3d d8 4c d3 60 59 21 0a 50 37 48 7a |....=.L.`Y!.P7Hz| +[a1e 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 9a 72 56 8b 79 99 61 59 35 a5 bc |0E.!..rV.y.aY5..| +00000010 0c 70 2c f0 48 b4 0e 7e d1 bc 2b a4 6c 08 01 ee |.p,.H..~..+.l...| +00000020 6b 7b b1 19 07 02 20 65 76 52 d9 cc c2 fb 2f e4 |k{.... evR..../.| +00000030 ec 37 79 19 17 4c 1b f7 72 73 44 6f c7 8a b5 15 |.7y..L..rsDo....| +00000040 bc 3e 95 ed c0 47 73 |.>...Gs| +[a1f 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018e590 principal evaluation succeeds for identity 0 +[a20 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42018e590 gate 1513244081457915900 evaluation succeeds +[a21 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[a22 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[a23 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[a24 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[a25 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[a26 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[a27 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[a28 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[a29 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[a2a 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[a2b 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[a2c 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[a2d 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[a2e 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[a2f 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[a30 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[a31 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[a32 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[a33 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[a34 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +[a35 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[a36 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[a37 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[a38 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[a39 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[a3a 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[a3b 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[a3c 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[a3d 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[a3e 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[a3f 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[a40 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[a41 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[a42 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[a43 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[a44 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[a45 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[a46 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[a47 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[a48 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[a49 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[a4a 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[a4b 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[a4c 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[a4d 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[a4e 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[a4f 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[a50 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[a51 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[a52 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[a53 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[a54 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[a55 12-14 09:34:41.46 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[a56 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[a57 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[a58 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[a59 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[a5a 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[a5b 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[a5c 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[a5d 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[a5e 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[a5f 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[a60 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[a61 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[a62 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[a63 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[a64 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[a65 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +-----END CERTIFICATE----- +[a66 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +-----END CERTIFICATE----- +[a67 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +-----END CERTIFICATE----- +[a68 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[a69 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[a6a 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[a6b 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[a6c 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[a6d 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 ++/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN +wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 +NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL +liPpNxLSsBU= +-----END CERTIFICATE----- +[a6e 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[a6f 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[a70 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[a71 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[a72 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[a73 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[a74 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[a75 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +VA7fF8MfGA== +-----END CERTIFICATE----- +[a76 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[a77 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[a78 12-14 09:34:41.47 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[a79 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[a7a 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[a7b 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Found message which requested to be isolated, cutting into its own batch +[a7c 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +[a7d 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +[a7e 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[11945], Going to peek [8] bytes +[a7f 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[11943], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[a80 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[a81 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[a82 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[a83 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[a84 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[a85 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[a86 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[a87 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[a88 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[a89 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[a8a 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[a8b 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[a8c 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[a8d 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[a8e 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[a8f 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[a90 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[a91 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +[a92 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[a93 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[a94 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[a95 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[a96 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[a97 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[a98 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[a99 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[a9a 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[a9b 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[a9c 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[a9d 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[a9e 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[a9f 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[aa0 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[aa1 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[aa2 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[aa3 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[aa4 12-14 09:34:41.48 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[aa5 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[aa6 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[aa7 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[aa8 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[aa9 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[aaa 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[aab 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[aac 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[aad 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[aae 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[aaf 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +[ab0 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[ab1 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[ab2 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[ab3 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[ab4 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +[ab5 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42018e9d8 gate 1513244081491114300 evaluation starts +[ab6 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018e9d8 signed by 0 principal evaluation starts (used [false]) +[ab7 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018e9d8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[ab8 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[ab9 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[aba 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018e9d8 principal matched by identity 0 +[abb 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 90 5a de 1e c3 6f b0 aa 07 d5 13 30 e0 54 69 ca |.Z...o.....0.Ti.| +00000010 d6 99 0b c9 3d d8 4c d3 60 59 21 0a 50 37 48 7a |....=.L.`Y!.P7Hz| +[abc 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 9a 72 56 8b 79 99 61 59 35 a5 bc |0E.!..rV.y.aY5..| +00000010 0c 70 2c f0 48 b4 0e 7e d1 bc 2b a4 6c 08 01 ee |.p,.H..~..+.l...| +00000020 6b 7b b1 19 07 02 20 65 76 52 d9 cc c2 fb 2f e4 |k{.... evR..../.| +00000030 ec 37 79 19 17 4c 1b f7 72 73 44 6f c7 8a b5 15 |.7y..L..rsDo....| +00000040 bc 3e 95 ed c0 47 73 |.>...Gs| +[abd 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018e9d8 principal evaluation succeeds for identity 0 +[abe 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42018e9d8 gate 1513244081491114300 evaluation succeeds +[abf 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[ac0 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[ac1 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[ac2 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[ac3 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[ac4 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[ac5 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[ac6 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[ac7 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[ac8 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[ac9 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[aca 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[acb 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[acc 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[acd 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[ace 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[acf 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[ad0 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[ad1 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[ad2 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +[ad3 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[ad4 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[ad5 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[ad6 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[ad7 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[ad8 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[ad9 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[ada 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[adb 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[adc 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[add 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[ade 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[adf 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[ae0 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[ae1 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[ae2 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[ae3 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[ae4 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[ae5 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[ae6 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[ae7 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[ae8 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[ae9 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[aea 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[aeb 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[aec 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[aed 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[aee 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[aef 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[af0 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[af1 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[af2 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[af3 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[af4 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[af5 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[af6 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[af7 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[af8 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[af9 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[afa 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[afb 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[afc 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[afd 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[afe 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[aff 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[b00 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[b01 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[b02 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[b03 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[b04 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +VA7fF8MfGA== +-----END CERTIFICATE----- +[b05 12-14 09:34:41.49 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[b06 12-14 09:34:41.50 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[b07 12-14 09:34:41.50 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[b08 12-14 09:34:41.50 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[b09 12-14 09:34:41.50 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[b0a 12-14 09:34:41.50 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[b0b 12-14 09:34:41.50 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[b0c 12-14 09:34:41.50 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 ++/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN +wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 +NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL +liPpNxLSsBU= +-----END CERTIFICATE----- +[b0d 12-14 09:34:41.50 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[b0e 12-14 09:34:41.50 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[b0f 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[b10 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[b11 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[b12 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[b13 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +-----END CERTIFICATE----- +[b14 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +-----END CERTIFICATE----- +[b15 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +-----END CERTIFICATE----- +[b16 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[b17 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[b18 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[b19 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[b1a 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +[b1b 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[b1c 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +[b1d 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[b1e 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +[b1f 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[b20 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +[b21 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[b22 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +[b23 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[b24 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +[b25 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[b26 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[b27 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[b28 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[b29 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[b2a 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[b2b 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[b2c 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +[b2d 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[b2e 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +[b2f 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[b30 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +[b31 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[b32 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[b33 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[b34 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[b35 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[b36 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +[b37 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +[b38 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +[b39 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +[b3a 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +[b3b 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[b3c 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +[b3d 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[b3e 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +[b3f 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +[b40 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +[b41 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +[b42 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +[b43 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +[b44 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +[b45 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +[b46 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +[b47 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +[b48 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +[b49 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[b4a 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +[b4b 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[b4c 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +[b4d 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[b4e 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +[b4f 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +[b50 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +[b51 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +[b52 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +[b53 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +[b54 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +[b55 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[b56 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[b57 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[b58 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[b59 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[b5a 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[b5b 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[b5c 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +[b5d 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[b5e 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +[b5f 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +[b60 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[b61 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +[b62 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[b63 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +[b64 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[b65 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +[b66 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[b67 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42017c5a0 chain:0xc42017d3e0 cutter:0xc420137770 filters:0xc42017cc20 signer:0x128b4a8 lastConfig:0 lastConfigSeq:1} +[b68 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +[b69 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[b6a 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[b6b 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[b6c 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[b6d 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...ED125D33D1C63C03B459F95BD7DB8918 +[b6e 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: C4A5BEA04D9DE3C051EA7DF847C7EC80A1A0994764B022BD1DD6F16570ADA062 +[b6f 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 1 to 2, setting lastConfig from 0 to 1 +[b70 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[b71 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[b72 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 +[b73 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[b74 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[b75 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08010AFF050A0A4F7264657265724D53...ED125D33D1C63C03B459F95BD7DB8918 +[b76 12-14 09:34:41.51 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 9DF1ED580466FF6CC4626D623B3BBFDEF892146814197FAB1BDFE68FC6D95E9A +[b77 12-14 09:34:41.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x81, 0xc1, 0xf4, 0xbc, 0xce, 0xfe, 0xcf, 0xba, 0xa, 0x88, 0xde, 0x5c, 0x57, 0x53, 0xcf, 0x5d, 0xef, 0xb6, 0x4c, 0x49, 0x24, 0x89, 0xc2, 0x64, 0x6c, 0x98, 0xc7, 0xd6, 0x74, 0x70, 0xc, 0xfa} txOffsets= +txId= locPointer=offset=70, bytesLength=11922 +] +[b78 12-14 09:34:41.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25696], isChainEmpty=[false], lastBlockNumber=[1] +[b79 12-14 09:34:41.52 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 1 +[b7a 12-14 09:34:43.56 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[b7b 12-14 09:34:43.56 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +[b7c 12-14 09:34:43.56 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[b7d 12-14 09:34:43.57 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[b7e 12-14 09:34:43.57 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +[b7f 12-14 09:34:43.57 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Preprocessing CONFIG_UPDATE +[b80 12-14 09:34:43.57 UTC] [github.com/hyperledger/fabric/orderer/configupdate] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process -> DEBU Processing channel reconfiguration request for channel businesschannel +[b81 12-14 09:34:43.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[b82 12-14 09:34:43.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[b83 12-14 09:34:43.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[b84 12-14 09:34:43.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[b85 12-14 09:34:43.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[b86 12-14 09:34:43.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[b87 12-14 09:34:43.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[b88 12-14 09:34:43.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[b89 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[b8a 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[b8b 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +[b8c 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[b8d 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[b8e 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[b8f 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[b90 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +[b91 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42018ef30 gate 1513244083581560900 evaluation starts +[b92 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018ef30 signed by 0 principal evaluation starts (used [false]) +[b93 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018ef30 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[b94 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[b95 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +[b96 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018ef30 principal matched by identity 0 +[b97 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d2 ba f2 a4 c3 1b 91 92 0e 64 66 67 64 a7 0f 77 |.........dfgd..w| +00000010 ed 7a 7d c5 58 d4 74 7d 17 68 d1 a7 a2 89 fd 08 |.z}.X.t}.h......| +[b98 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 37 a8 7f d4 d5 17 8a 7a 65 3e ab 40 |0D. 7......ze>.@| +00000010 3e 3c d7 0f 7f a6 fd f2 65 8f d7 e8 b0 f0 b1 90 |><......e.......| +00000020 32 5e 45 13 02 20 17 06 a2 3b dd bb 92 61 e1 50 |2^E.. ...;...a.P| +00000030 f0 a8 2d 00 69 42 4c 32 dd 87 c4 3e 8e ce 6e 51 |..-.iBL2...>..nQ| +00000040 a7 09 a2 65 71 14 |...eq.| +[b99 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018ef30 principal evaluation succeeds for identity 0 +[b9a 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42018ef30 gate 1513244083581560900 evaluation succeeds +[b9b 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[b9c 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[b9d 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[b9e 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[b9f 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[ba0 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[ba1 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[ba2 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[ba3 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[ba4 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[ba5 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[ba6 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[ba7 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[ba8 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[ba9 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[baa 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[bab 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[bac 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[bad 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[bae 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel +[baf 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[bb0 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[bb1 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[bb2 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[bb3 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[bb4 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[bb5 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[bb6 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[bb7 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[bb8 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[bb9 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[bba 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[bbb 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[bbc 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[bbd 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[bbe 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[bbf 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[bc0 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[bc1 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[bc2 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[bc3 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[bc4 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[bc5 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[bc6 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[bc7 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[bc8 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[bc9 12-14 09:34:43.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[bca 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[bcb 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[bcc 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[bcd 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[bce 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[bcf 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[bd0 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[bd1 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[bd2 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[bd3 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[bd4 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[bd5 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[bd6 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[bd7 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[bd8 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[bd9 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[bda 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[bdb 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[bdc 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[bdd 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[bde 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[bdf 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +-----END CERTIFICATE----- +[be0 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +-----END CERTIFICATE----- +[be1 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +-----END CERTIFICATE----- +[be2 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[be3 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[be4 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[be5 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[be6 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[be7 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 ++/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN +wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 +NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL +liPpNxLSsBU= +-----END CERTIFICATE----- +[be8 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[be9 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[bea 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[beb 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[bec 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[bed 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[bee 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[bef 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +VA7fF8MfGA== +-----END CERTIFICATE----- +[bf0 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[bf1 12-14 09:34:43.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[bf2 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[bf3 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[bf4 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[bf5 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[bf6 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[bf7 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[bf8 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[bf9 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0ABC060A1B08011A0608B38BC9D10522...D7EC6FFBFB37B18FE0097AE915C87AB9 +[bfa 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 5283948D3A2645488D26EE5C19E63B88F593A7016E26F6B7B62AAE04CEC1EA7F +[bfb 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type CONFIG +[bfc 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[bfd 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026288 gate 1513244083605662100 evaluation starts +[bfe 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026288 signed by 0 principal evaluation starts (used [false]) +[bff 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026288 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[c00 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +Tg== +-----END CERTIFICATE----- +[c01 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026288 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[c02 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026288 principal evaluation fails +[c03 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026288 gate 1513244083605662100 evaluation fails +[c04 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026298 gate 1513244083606452200 evaluation starts +[c05 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026298 signed by 0 principal evaluation starts (used [false]) +[c06 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026298 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[c07 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +Tg== +-----END CERTIFICATE----- +[c08 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026298 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[c09 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026298 principal evaluation fails +[c0a 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026298 gate 1513244083606452200 evaluation fails +[c0b 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262a8 gate 1513244083608139700 evaluation starts +[c0c 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262a8 signed by 0 principal evaluation starts (used [false]) +[c0d 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[c0e 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +Tg== +-----END CERTIFICATE----- +[c0f 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[c10 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[c11 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262a8 principal matched by identity 0 +[c12 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 52 83 94 8d 3a 26 45 48 8d 26 ee 5c 19 e6 3b 88 |R...:&EH.&.\..;.| +00000010 f5 93 a7 01 6e 26 f6 b7 b6 2a ae 04 ce c1 ea 7f |....n&...*......| +[c13 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5f bb 39 a1 5f 4d f7 1c 20 53 b2 dc |0D. _.9._M.. S..| +00000010 ee ea ff 5e 3c d3 45 01 64 f9 2f ad 40 94 67 10 |...^<.E.d./.@.g.| +00000020 13 d3 d7 6b 02 20 76 a2 63 11 f5 1f 6f da 5c ce |...k. v.c...o.\.| +00000030 28 8b 07 0c 6f 00 3f cf 08 00 27 47 e2 84 3b 26 |(...o.?...'G..;&| +00000040 72 c9 69 ed e1 b9 |r.i...| +[c14 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262a8 principal evaluation succeeds for identity 0 +[c15 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262a8 gate 1513244083608139700 evaluation succeeds +[c16 12-14 09:34:43.60 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4203d3ac0 1 [0xc42018ea98 0xc42018eb38]}) %!s(*policies.implicitMetaPolicy=&{0xc4203ba9c0 1 [0xc42018ec00]})]} +[c17 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[c18 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[c19 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[c1a 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[c1b 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[c1c 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[c1d 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[c1e 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[c1f 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[c20 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[c21 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +[c22 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[c23 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[c24 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[c25 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[c26 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +[c27 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc4200268a0 gate 1513244083611543300 evaluation starts +[c28 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200268a0 signed by 0 principal evaluation starts (used [false]) +[c29 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200268a0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[c2a 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[c2b 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +[c2c 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200268a0 principal matched by identity 0 +[c2d 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d2 ba f2 a4 c3 1b 91 92 0e 64 66 67 64 a7 0f 77 |.........dfgd..w| +00000010 ed 7a 7d c5 58 d4 74 7d 17 68 d1 a7 a2 89 fd 08 |.z}.X.t}.h......| +[c2e 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 37 a8 7f d4 d5 17 8a 7a 65 3e ab 40 |0D. 7......ze>.@| +00000010 3e 3c d7 0f 7f a6 fd f2 65 8f d7 e8 b0 f0 b1 90 |><......e.......| +00000020 32 5e 45 13 02 20 17 06 a2 3b dd bb 92 61 e1 50 |2^E.. ...;...a.P| +00000030 f0 a8 2d 00 69 42 4c 32 dd 87 c4 3e 8e ce 6e 51 |..-.iBL2...>..nQ| +00000040 a7 09 a2 65 71 14 |...eq.| +[c2f 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200268a0 principal evaluation succeeds for identity 0 +[c30 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc4200268a0 gate 1513244083611543300 evaluation succeeds +[c31 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[c32 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[c33 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[c34 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[c35 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[c36 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[c37 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[c38 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[c39 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[c3a 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[c3b 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[c3c 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[c3d 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[c3e 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[c3f 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[c40 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[c41 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[c42 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[c43 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[c44 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +[c45 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[c46 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[c47 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[c48 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[c49 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[c4a 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[c4b 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[c4c 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[c4d 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[c4e 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[c4f 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[c50 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[c51 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[c52 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[c53 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[c54 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[c55 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[c56 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[c57 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[c58 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[c59 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[c5a 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[c5b 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[c5c 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[c5d 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[c5e 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[c5f 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[c60 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[c61 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[c62 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[c63 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[c64 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[c65 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[c66 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[c67 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[c68 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[c69 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[c6a 12-14 09:34:43.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[c6b 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[c6c 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[c6d 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[c6e 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[c6f 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[c70 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[c71 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[c72 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[c73 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[c74 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[c75 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +-----END CERTIFICATE----- +[c76 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +-----END CERTIFICATE----- +[c77 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +-----END CERTIFICATE----- +[c78 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[c79 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[c7a 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[c7b 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[c7c 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[c7d 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 ++/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN +wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 +NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL +liPpNxLSsBU= +-----END CERTIFICATE----- +[c7e 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[c7f 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[c80 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[c81 12-14 09:34:43.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[c82 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[c83 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[c84 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[c85 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +VA7fF8MfGA== +-----END CERTIFICATE----- +[c86 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[c87 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[c88 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[c89 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[c8a 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[c8c 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[c8d 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e0b8 gate 1513244083633376700 evaluation starts +[c8e 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e0b8 signed by 0 principal evaluation starts (used [false]) +[c8f 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e0b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[c90 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +Tg== +-----END CERTIFICATE----- +[c91 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e0b8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[c92 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e0b8 principal evaluation fails +[c93 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e0b8 gate 1513244083633376700 evaluation fails +[c94 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e1b8 gate 1513244083635094200 evaluation starts +[c95 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e1b8 signed by 0 principal evaluation starts (used [false]) +[c96 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e1b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[c97 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +Tg== +-----END CERTIFICATE----- +[c98 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e1b8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[c99 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e1b8 principal evaluation fails +[c9a 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e1b8 gate 1513244083635094200 evaluation fails +[c9b 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e390 gate 1513244083636257000 evaluation starts +[c9c 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e390 signed by 0 principal evaluation starts (used [false]) +[c9d 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e390 processing identity 0 with bytes of 0a0a4f7264657265724d535012f0052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434454434341624f674177494241674952414e4e395975767450576d2f627874443441307a51433077436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456f61546177566e623677494a47762f4d6b4b585774446d366334396b4578616837552f556f69384a304974524545424c0a6756735a5851506d654c63684a6d455166424a654f62433844554a693969576b676d777634614e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652580a4b685437332f505a7362423661683477436759494b6f5a497a6a304541774944534141775251496841506249576f764a6a6445566251655a6c72576133432b550a69586d6b6e4b394749453572755a6b3238702f4e4169426d6937685854425a2f644f2f47544f6c386277644145636a6f566b744a6e3239546c5a55546f5268760a54673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[c9e 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDTCCAbOgAwIBAgIRANN9YuvtPWm/bxtD4A0zQC0wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMFgxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +KoZIzj0DAQcDQgAEoaTawVnb6wIJGv/MkKXWtDm6c49kExah7U/Uoi8J0ItREEBL +gVsZXQPmeLchJmEQfBJeObC8DUJi9iWkgmwv4aNNMEswDgYDVR0PAQH/BAQDAgeA +MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRX +KhT73/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhAPbIWovJjdEVbQeZlrWa3C+U +iXmknK9GIE5ruZk28p/NAiBmi7hXTBZ/dO/GTOl8bwdAEcjoVktJn29TlZUToRhv +Tg== +-----END CERTIFICATE----- +[c9f 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[ca0 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[ca1 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e390 principal matched by identity 0 +[ca2 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 52 83 94 8d 3a 26 45 48 8d 26 ee 5c 19 e6 3b 88 |R...:&EH.&.\..;.| +00000010 f5 93 a7 01 6e 26 f6 b7 b6 2a ae 04 ce c1 ea 7f |....n&...*......| +[ca3 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5f bb 39 a1 5f 4d f7 1c 20 53 b2 dc |0D. _.9._M.. S..| +00000010 ee ea ff 5e 3c d3 45 01 64 f9 2f ad 40 94 67 10 |...^<.E.d./.@.g.| +00000020 13 d3 d7 6b 02 20 76 a2 63 11 f5 1f 6f da 5c ce |...k. v.c...o.\.| +00000030 28 8b 07 0c 6f 00 3f cf 08 00 27 47 e2 84 3b 26 |(...o.?...'G..;&| +00000040 72 c9 69 ed e1 b9 |r.i...| +[ca4 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e390 principal evaluation succeeds for identity 0 +[ca5 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e390 gate 1513244083636257000 evaluation succeeds +[ca6 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4203d3ac0 1 [0xc42018ea98 0xc42018eb38]}) %!s(*policies.implicitMetaPolicy=&{0xc4203ba9c0 1 [0xc42018ec00]})]} +[ca7 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[ca8 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[ca9 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[caa 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[cab 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[cac 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[cad 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[cae 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[caf 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[cb0 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[cb1 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +[cb2 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[cb3 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[cb4 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[cb5 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[cb6 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +[cb7 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42018ee80 gate 1513244083639876400 evaluation starts +[cb8 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018ee80 signed by 0 principal evaluation starts (used [false]) +[cb9 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018ee80 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[cba 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[cbb 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +[cbc 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018ee80 principal matched by identity 0 +[cbd 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d2 ba f2 a4 c3 1b 91 92 0e 64 66 67 64 a7 0f 77 |.........dfgd..w| +00000010 ed 7a 7d c5 58 d4 74 7d 17 68 d1 a7 a2 89 fd 08 |.z}.X.t}.h......| +[cbe 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 37 a8 7f d4 d5 17 8a 7a 65 3e ab 40 |0D. 7......ze>.@| +00000010 3e 3c d7 0f 7f a6 fd f2 65 8f d7 e8 b0 f0 b1 90 |><......e.......| +00000020 32 5e 45 13 02 20 17 06 a2 3b dd bb 92 61 e1 50 |2^E.. ...;...a.P| +00000030 f0 a8 2d 00 69 42 4c 32 dd 87 c4 3e 8e ce 6e 51 |..-.iBL2...>..nQ| +00000040 a7 09 a2 65 71 14 |...eq.| +[cbf 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42018ee80 principal evaluation succeeds for identity 0 +[cc0 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42018ee80 gate 1513244083639876400 evaluation succeeds +[cc1 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[cc2 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[cc3 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[cc4 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[cc5 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[cc6 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[cc7 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[cc8 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[cc9 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[c8b 12-14 09:34:43.63 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG +[cca 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[ccb 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[ccc 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[ccd 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[cce 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[ccf 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[cd0 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[cd1 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[cd3 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[cd4 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[cd5 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +[cd6 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[cd7 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[cd8 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[cd9 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[cd2 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[cdb 12-14 09:34:43.64 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[cda 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[cdc 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[cdd 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[cde 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[cdf 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[ce0 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[ce1 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[ce2 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[ce3 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[ce4 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[ce5 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[ce6 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[ce7 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[ce8 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[ce9 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[cea 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[ceb 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[cec 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[ced 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[cee 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[cef 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[cf0 12-14 09:34:43.64 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[cf1 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[cf2 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[cf3 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[cf4 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[cf5 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[cf6 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[cf7 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[cf8 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[cf9 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[cfa 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[cfb 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[cfc 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[cfd 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[cfe 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[cff 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[d00 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[d01 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[d02 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[d03 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[d04 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[d05 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[d06 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[d07 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[d08 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[d09 12-14 09:34:43.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +-----END CERTIFICATE----- +[d0a 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +-----END CERTIFICATE----- +[d0b 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +-----END CERTIFICATE----- +[d0c 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[d0d 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[d0e 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[d0f 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[d10 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[d11 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 ++/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN +wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 +NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL +liPpNxLSsBU= +-----END CERTIFICATE----- +[d12 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[d13 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[d14 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[d15 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[d16 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[d17 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[d18 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[d19 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +VA7fF8MfGA== +-----END CERTIFICATE----- +[d1a 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[d1b 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[d1c 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[d1d 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[d1e 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[d1f 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Found message which requested to be isolated, cutting into its own batch +[d20 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] +[d21 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11945] +[d22 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13751], Going to peek [8] bytes +[d23 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13749], placementInfo={fileNum=[0], startOffset=[11945], bytesOffset=[11947]} +[d24 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[d25 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[d26 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[d27 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[d28 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[d29 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[d2a 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[d2b 12-14 09:34:43.65 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[d2c 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[d2d 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[d2e 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[d2f 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[d30 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[d31 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[d32 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[d33 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[d34 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[d35 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[d36 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +[d37 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[d38 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[d39 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[d3a 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[d3b 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +[d3c 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[d3d 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[d3e 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[d3f 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[d40 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[d41 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[d42 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[d43 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[d44 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[d45 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[d46 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[d47 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[d48 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[d49 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[d4a 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[d4b 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[d4c 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[d4d 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[d4e 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[d4f 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[d50 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[d51 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[d52 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[d53 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[d54 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +[d55 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[d56 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[d57 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[d58 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[d59 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +[d5a 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420026578 gate 1513244083669574500 evaluation starts +[d5b 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026578 signed by 0 principal evaluation starts (used [false]) +[d5c 12-14 09:34:43.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026578 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[d5d 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[d5e 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +[d5f 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026578 principal matched by identity 0 +[d60 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d2 ba f2 a4 c3 1b 91 92 0e 64 66 67 64 a7 0f 77 |.........dfgd..w| +00000010 ed 7a 7d c5 58 d4 74 7d 17 68 d1 a7 a2 89 fd 08 |.z}.X.t}.h......| +[d61 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 37 a8 7f d4 d5 17 8a 7a 65 3e ab 40 |0D. 7......ze>.@| +00000010 3e 3c d7 0f 7f a6 fd f2 65 8f d7 e8 b0 f0 b1 90 |><......e.......| +00000020 32 5e 45 13 02 20 17 06 a2 3b dd bb 92 61 e1 50 |2^E.. ...;...a.P| +00000030 f0 a8 2d 00 69 42 4c 32 dd 87 c4 3e 8e ce 6e 51 |..-.iBL2...>..nQ| +00000040 a7 09 a2 65 71 14 |...eq.| +[d62 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026578 principal evaluation succeeds for identity 0 +[d63 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420026578 gate 1513244083669574500 evaluation succeeds +[d64 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[d65 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[d66 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[d67 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[d68 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[d69 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[d6a 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[d6b 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[d6c 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[d6d 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[d6e 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[d6f 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[d70 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[d71 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[d72 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[d73 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[d74 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[d75 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[d76 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[d77 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +[d78 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[d79 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[d7a 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[d7b 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[d7c 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[d7d 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[d7e 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[d7f 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[d80 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[d81 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[d82 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[d83 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[d84 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[d85 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[d86 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[d87 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[d88 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[d89 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[d8a 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[d8b 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[d8c 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[d8d 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[d8e 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[d8f 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[d90 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[d91 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[d92 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[d93 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[d94 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[d95 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[d96 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[d97 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[d98 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[d99 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[d9a 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[d9b 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[d9c 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[d9d 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[d9e 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[d9f 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[da0 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[da1 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[da2 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[da3 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[da4 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[da5 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[da6 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[da7 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[da8 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJeFyMqYq1fBT3kxWx/V1MMwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzK4L8XeRl1qIoFHjhb96eXqPR +h9NBvyMgp4c1udzk0Do5h36gWE5sFeWsoVwKLzRZ2G0kW7LBFEnQOyuxA71Co18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAUyBe+tTY1Smst3vOluxndZSNx9FcqFPvf89mxsHpqHjAK +BggqhkjOPQQDAgNHADBEAiAUN5njP3xy9PcpW4JvOxywzdS7SDbdYpuGbkS/nMTf +FAIgfEXamxtKrOs1k1BIckZEXWZrxw5YNixwmGjG2gyzQq4= +-----END CERTIFICATE----- +[da9 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +-----END CERTIFICATE----- +[daa 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz +EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 +3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM +0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== +-----END CERTIFICATE----- +[dab 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[dac 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[dad 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[dae 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[daf 12-14 09:34:43.67 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[db0 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICRDCCAeqgAwIBAgIRAIxG3jr9x2WjRszD47u2JBswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BG7nwJ8M7sSCdyqZ/FZ4OXpOxB34olzMd/azIEz2aHxk3Tnl4J4rso0qjrJzWWm5 ++/cGyh1eowMF3fmLVI1lO1+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIHo42ePp018hd8YtbSiN +wy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0gAMEUCIQCb9s4UiBvtpwl9 +NuQmDDy/M1fUzQV4GYJaCfHLFmz53gIgLJU63jIGN5/MHe6qV5aEN0czPgEsK5pL +liPpNxLSsBU= +-----END CERTIFICATE----- +[db1 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[db2 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[db3 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[db4 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[db5 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[db6 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[db7 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[db8 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPMPsgC0BqkrlI4qJuTcjbUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BGYtNqduYATlrn926vyRz1RssIfDBALyTMNePnxYeeTvYrYl5wPqWWE2TlTx2f3W +RS+MJtQhqGUPDcXvop07MNGjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIExdUk4NTXuvlhveBMr/ +kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICXgsDcayUBEx8vc +8Gc1C7PVOrYS6mUPhxUBxy6e95RyAiAL2qKD9iYCD73Iq9zrIOvE1cBsC45hebpq +VA7fF8MfGA== +-----END CERTIFICATE----- +[db9 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[dba 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[dbb 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[dbc 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[dbd 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[dbe 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[dbf 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +[dc0 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[dc1 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +[dc2 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[dc3 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +[dc4 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[dc5 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[dc6 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[dc7 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[dc8 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[dc9 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +[dca 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[dcb 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +[dcc 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[dcd 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +[dce 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[dcf 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +[dd0 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[dd1 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +[dd2 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[dd3 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +[dd4 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[dd5 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[dd6 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[dd7 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[dd8 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[dd9 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[dda 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +[ddb 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +[ddc 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +[ddd 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +[dde 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[ddf 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +[de0 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +[de1 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +[de2 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[de3 12-14 09:34:43.68 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +[de4 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[de5 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +[de6 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +[de7 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +[de8 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +[de9 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +[dea 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +[deb 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +[dec 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +[ded 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +[dee 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +[def 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +[df0 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[df1 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +[df2 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[df3 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +[df4 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +[df5 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +[df6 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[df7 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +[df8 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +[df9 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +[dfa 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[dfb 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[dfc 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[dfd 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[dfe 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[dff 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[e00 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[e01 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +[e02 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[e03 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +[e04 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +[e05 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[e06 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +[e07 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[e08 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +[e09 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[e0a 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +[e0b 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[e0c 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42017c5a0 chain:0xc42017d3e0 cutter:0xc420137770 filters:0xc42017cc20 signer:0x128b4a8 lastConfig:1 lastConfigSeq:2} +[e0d 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +[e0e 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[e0f 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[e10 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[e11 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[e12 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...D05E242988BA6BCDB166A5B4BB02E6D6 +[e13 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 4FD6FFFB80F928FF3326F8C91CF66EE998C8B1D7F91CF91565C529CC5DB502C5 +[e14 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 2 to 3, setting lastConfig from 1 to 2 +[e15 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[e16 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[e17 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[e18 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[e19 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[e1a 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFF050A0A4F7264657265724D53...D05E242988BA6BCDB166A5B4BB02E6D6 +[e1b 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 2014245A08D1F6E439E33B3B090E6023FCEF21E3F2158618E8FF271B66D274C2 +[e1c 12-14 09:34:43.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xa5, 0x7a, 0x12, 0x2e, 0x19, 0xe9, 0xc0, 0x3a, 0xc1, 0x3e, 0xe4, 0x92, 0xd4, 0xc9, 0x23, 0xb3, 0xc, 0x4c, 0x41, 0x28, 0x7b, 0x58, 0x93, 0x4c, 0x9f, 0x41, 0x25, 0x50, 0x7f, 0xad, 0x55, 0xe5} txOffsets= +txId= locPointer=offset=70, bytesLength=11979 +] +[e1d 12-14 09:34:43.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39504], isChainEmpty=[false], lastBlockNumber=[2] +[e1e 12-14 09:34:43.70 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 2 +[e1f 12-14 09:34:46.49 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[e20 12-14 09:34:46.49 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +[e21 12-14 09:34:46.49 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[e22 12-14 09:34:46.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +[e23 12-14 09:34:46.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026898 gate 1513244086499102100 evaluation starts +[e24 12-14 09:34:46.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026898 signed by 0 principal evaluation starts (used [false]) +[e25 12-14 09:34:46.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026898 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b6741774942416749514a674259424b4f4873742f2f6d66546a70557731677a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d546c61467730794e7a45784d6a6b784d7a55334d546c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414532695a455549764c674b414e736c474b52724473513637505a75764d426c44340a733058687a6a6c41724b6d745345477a6872314f3433494b7a34545238423376697954306a4f364c31525644556774644373483541614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167656a6a5a342b6e54587946330a786931744b4933444c3856796c482b76506b45464f4c6d6752533668712f6777436759494b6f5a497a6a304541774944534141775251496841504943547366350a59723262764752673247383549766567674f764b4d362b334979686a53503445337848324169425734516a4344745a6c5979474b3576696c465237687a655a560a6962486c5256315669467148627a463377773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[e26 12-14 09:34:46.49 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQJgBYBKOHst//mfTjpUw1gzAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -3832,28 +6552,58 @@ xi1tKI3DL8VylH+vPkEFOLmgRS6hq/gwCgYIKoZIzj0EAwIDSAAwRQIhAPICTsf5 Yr2bvGRg2G85IveggOvKM6+3IyhjSP4E3xH2AiBW4QjCDtZlYyGK5vilFR7hzeZV ibHlRV1ViFqHbzF3ww== -----END CERTIFICATE----- -[8a0 12-05 07:29:49.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[8a1 12-05 07:29:49.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[8a2 12-05 07:29:49.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026430 principal matched by identity 0 -[8a3 12-05 07:29:49.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 83 f9 42 39 07 0a 61 da 52 59 01 f4 47 05 aa 0d |..B9..a.RY..G...| -00000010 7c 4c 64 9d b7 a1 84 d6 4f 3d ac 71 19 8f 28 05 ||Ld.....O=.q..(.| -[8a4 12-05 07:29:49.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 22 07 d4 04 d1 36 78 56 1d 9c 2b ad |0D. "....6xV..+.| -00000010 f3 e4 0f d0 c7 aa 1b 04 a2 26 30 d2 7a 5f b4 35 |.........&0.z_.5| -00000020 43 33 6e ae 02 20 11 40 e5 42 2d d4 62 7d 97 8c |C3n.. .@.B-.b}..| -00000030 2e cb ac 00 01 21 9b 6a 23 9f 2b 81 c1 a8 ed a4 |.....!.j#.+.....| -00000040 93 99 fc 65 ab 33 |...e.3| -[8a5 12-05 07:29:49.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026430 principal evaluation succeeds for identity 0 -[8a6 12-05 07:29:49.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026430 gate 1512458989628795000 evaluation succeeds -[8a7 12-05 07:29:49.63 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bf20 1 [0xc420026cb8 0xc420026d60]}) %!s(*policies.implicitMetaPolicy=&{0xc42037c280 1 [0xc420026dd8]})]} -[8a8 12-05 07:29:49.63 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420291c60) start: > stop: > -[8a9 12-05 07:29:50.05 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[8aa 12-05 07:29:50.05 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[8ab 12-05 07:29:50.05 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[8ac 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -[8ad 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026458 gate 1512458990061017100 evaluation starts -[8ae 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026458 signed by 0 principal evaluation starts (used [false]) -[8af 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026458 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a6a6979485654735367657839497769562f61486c3477436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a49775768634e4d6a63784d5449354d544d314e7a49770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a6c3744487249565449674e59516d764637775167324d4943796a79444d2f0a6935594f6d782b645a4d714b64323233714f724d76734d6970344a6d7937494e2b4b79544642676e625458736f627059306966305865716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149457864556b344e545875760a6c687665424d722f6b4c51424c745a6d4f6b63587055334e38634770303872384d416f4743437147534d343942414d43413063414d455143494367765a2f526a0a4369426d6b4c476939544a41492b6150586a7a6c577a6d7779714352454b582f3838684c416942574e476e522f2b44716b63654943466877315a39676b2f7a6e0a67526a553271576f667670343042625336513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[8b0 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[e27 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026898 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +[e28 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026898 principal evaluation fails +[e29 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026898 gate 1513244086499102100 evaluation fails +[e2a 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200268a8 gate 1513244086500594200 evaluation starts +[e2b 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200268a8 signed by 0 principal evaluation starts (used [false]) +[e2c 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200268a8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b6741774942416749514a674259424b4f4873742f2f6d66546a70557731677a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d546c61467730794e7a45784d6a6b784d7a55334d546c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414532695a455549764c674b414e736c474b52724473513637505a75764d426c44340a733058687a6a6c41724b6d745345477a6872314f3433494b7a34545238423376697954306a4f364c31525644556774644373483541614e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167656a6a5a342b6e54587946330a786931744b4933444c3856796c482b76506b45464f4c6d6752533668712f6777436759494b6f5a497a6a304541774944534141775251496841504943547366350a59723262764752673247383549766567674f764b4d362b334979686a53503445337848324169425734516a4344745a6c5979474b3576696c465237687a655a560a6962486c5256315669467148627a463377773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[e2d 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQJgBYBKOHst//mfTjpUw1gzAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MTlaFw0yNzExMjkxMzU3MTla +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE2iZEUIvLgKANslGKRrDsQ67PZuvMBlD4 +s0XhzjlArKmtSEGzhr1O43IKz4TR8B3viyT0jO6L1RVDUgtdCsH5AaNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgejjZ4+nTXyF3 +xi1tKI3DL8VylH+vPkEFOLmgRS6hq/gwCgYIKoZIzj0EAwIDSAAwRQIhAPICTsf5 +Yr2bvGRg2G85IveggOvKM6+3IyhjSP4E3xH2AiBW4QjCDtZlYyGK5vilFR7hzeZV +ibHlRV1ViFqHbzF3ww== +-----END CERTIFICATE----- +[e2e 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[e2f 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +[e30 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200268a8 principal matched by identity 0 +[e31 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 a7 24 67 7e e2 a0 2e 73 be 5f 82 24 ed 32 de db |.$g~...s._.$.2..| +00000010 95 5c a7 d7 3d 8b 16 35 4c 86 04 cf 70 da fb 9a |.\..=..5L...p...| +[e32 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 a0 55 9c 9d f4 86 69 0c 85 48 dc |0E.!..U....i..H.| +00000010 be 85 b2 62 9e a3 c1 c6 a6 27 96 42 b7 ea 09 0e |...b.....'.B....| +00000020 8e 41 0b 57 0b 02 20 65 d2 d4 fe d4 29 a8 62 09 |.A.W.. e....).b.| +00000030 61 92 11 62 a7 48 7d 40 d5 bb a2 13 d7 10 9f ec |a..b.H}@........| +00000040 d6 3e 45 09 3f dd 69 |.>E.?.i| +[e33 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200268a8 principal evaluation succeeds for identity 0 +[e34 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200268a8 gate 1513244086500594200 evaluation succeeds +[e35 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b600 1 [0xc420026660]}) %!s(*policies.implicitMetaPolicy=&{0xc420312280 1 [0xc420026710 0xc4200267b0]})]} +[e36 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc42088b800) start: > stop: > +[e37 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] +[e38 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11945] +[e39 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27559], Going to peek [8] bytes +[e3a 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13749], placementInfo={fileNum=[0], startOffset=[11945], bytesOffset=[11947]} +[e3b 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42088b800) +[e3c 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +[e3d 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25696] +[e3e 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13808], Going to peek [8] bytes +[e3f 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13806], placementInfo={fileNum=[0], startOffset=[25696], bytesOffset=[25698]} +[e40 12-14 09:34:46.50 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42088b800) +[e41 12-14 09:34:46.96 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[e42 12-14 09:34:46.96 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +[e43 12-14 09:34:46.96 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[e44 12-14 09:34:46.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +[e45 12-14 09:34:46.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e1b8 gate 1513244086965834000 evaluation starts +[e46 12-14 09:34:46.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e1b8 signed by 0 principal evaluation starts (used [false]) +[e47 12-14 09:34:46.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e1b8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a6a6979485654735367657839497769562f61486c3477436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a49775768634e4d6a63784d5449354d544d314e7a49770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a6c3744487249565449674e59516d764637775167324d4943796a79444d2f0a6935594f6d782b645a4d714b64323233714f724d76734d6970344a6d7937494e2b4b79544642676e625458736f627059306966305865716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149457864556b344e545875760a6c687665424d722f6b4c51424c745a6d4f6b63587055334e38634770303872384d416f4743437147534d343942414d43413063414d455143494367765a2f526a0a4369426d6b4c476939544a41492b6150586a7a6c577a6d7779714352454b582f3838684c416942574e476e522f2b44716b63654943466877315a39676b2f7a6e0a67526a553271576f667670343042625336513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[e48 12-14 09:34:46.97 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJjiyHVTsSgex9IwiV/aHl4wCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3867,13 +6617,13 @@ lhveBMr/kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICgvZ/Rj CiBmkLGi9TJAI+aPXjzlWzmwyqCREKX/88hLAiBWNGnR/+DqkceICFhw1Z9gk/zn gRjU2qWofvp40BbS6Q== -----END CERTIFICATE----- -[8b1 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026458 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -[8b2 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026458 principal evaluation fails -[8b3 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026458 gate 1512458990061017100 evaluation fails -[8b4 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026468 gate 1512458990063399700 evaluation starts -[8b5 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026468 signed by 0 principal evaluation starts (used [false]) -[8b6 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026468 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a6a6979485654735367657839497769562f61486c3477436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a49775768634e4d6a63784d5449354d544d314e7a49770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a6c3744487249565449674e59516d764637775167324d4943796a79444d2f0a6935594f6d782b645a4d714b64323233714f724d76734d6970344a6d7937494e2b4b79544642676e625458736f627059306966305865716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149457864556b344e545875760a6c687665424d722f6b4c51424c745a6d4f6b63587055334e38634770303872384d416f4743437147534d343942414d43413063414d455143494367765a2f526a0a4369426d6b4c476939544a41492b6150586a7a6c577a6d7779714352454b582f3838684c416942574e476e522f2b44716b63654943466877315a39676b2f7a6e0a67526a553271576f667670343042625336513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[8b7 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[e49 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e1b8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +[e4a 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e1b8 principal evaluation fails +[e4b 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e1b8 gate 1513244086965834000 evaluation fails +[e4c 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e390 gate 1513244086986415900 evaluation starts +[e4d 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e390 signed by 0 principal evaluation starts (used [false]) +[e4e 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e390 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a6a6979485654735367657839497769562f61486c3477436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a49775768634e4d6a63784d5449354d544d314e7a49770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a6c3744487249565449674e59516d764637775167324d4943796a79444d2f0a6935594f6d782b645a4d714b64323233714f724d76734d6970344a6d7937494e2b4b79544642676e625458736f627059306966305865716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149457864556b344e545875760a6c687665424d722f6b4c51424c745a6d4f6b63587055334e38634770303872384d416f4743437147534d343942414d43413063414d455143494367765a2f526a0a4369426d6b4c476939544a41492b6150586a7a6c577a6d7779714352454b582f3838684c416942574e476e522f2b44716b63654943466877315a39676b2f7a6e0a67526a553271576f667670343042625336513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[e4f 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJjiyHVTsSgex9IwiV/aHl4wCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3887,28 +6637,58 @@ lhveBMr/kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICgvZ/Rj CiBmkLGi9TJAI+aPXjzlWzmwyqCREKX/88hLAiBWNGnR/+DqkceICFhw1Z9gk/zn gRjU2qWofvp40BbS6Q== -----END CERTIFICATE----- -[8b8 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[8b9 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[8ba 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026468 principal matched by identity 0 -[8bb 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 aa 38 9b f9 bb 68 53 80 8a df fb 94 89 e9 05 15 |.8...hS.........| -00000010 a3 34 41 ec 5f 02 5e e0 df 80 30 6d 40 ac 6e ba |.4A._.^...0m@.n.| -[8bc 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c4 c7 08 13 7a 19 f2 7f 94 8b 60 |0E.!.....z.....`| -00000010 39 f2 c8 48 ef 9d b0 5d 10 31 9e 53 b5 da 68 5c |9..H...].1.S..h\| -00000020 6f 06 d8 a7 a2 02 20 17 bc 75 3d 2e 3f 6b 99 e1 |o..... ..u=.?k..| -00000030 d2 b0 c3 9f b4 e3 6d f8 35 1e 72 52 82 5f 42 44 |......m.5.rR._BD| -00000040 41 e5 ed 5f 81 57 1f |A.._.W.| -[8bd 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026468 principal evaluation succeeds for identity 0 -[8be 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026468 gate 1512458990063399700 evaluation succeeds -[8bf 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bf20 1 [0xc420026cb8 0xc420026d60]}) %!s(*policies.implicitMetaPolicy=&{0xc42037c280 1 [0xc420026dd8]})]} -[8c0 12-05 07:29:50.06 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc4200b8ce0) start: > stop: > -[8c1 12-05 07:29:50.24 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[8c2 12-05 07:29:50.24 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[8c3 12-05 07:29:50.24 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[8c4 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -[8c5 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026498 gate 1512458990250418300 evaluation starts -[8c6 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026498 signed by 0 principal evaluation starts (used [false]) -[8c7 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026498 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f564e5762346d2f4b453871576e6273356f4e43584577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a49775768634e4d6a63784d5449354d544d314e7a49770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414246756543656a666b4450505266766b444b534d64772b4844423636426c772b0a65323678755664426d316d3156685a416673495347713941715a683554595365415763696339554a44704d3641463475597952573851536a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149457864556b344e545875760a6c687665424d722f6b4c51424c745a6d4f6b63587055334e38634770303872384d416f4743437147534d343942414d43413063414d45514349437854566d75760a3835744c5633494f627979416a4d464a444f59395a527647364a72466b3649702b354932416941743839735957526c6c30564a6e344c4539536e714c47796e780a6b38653575635a334a64366b457737366d413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[8c8 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[e50 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e390 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +[e51 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e390 principal evaluation fails +[e52 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e390 gate 1513244086986415900 evaluation fails +[e53 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e3a0 gate 1513244086988478200 evaluation starts +[e54 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e3a0 signed by 0 principal evaluation starts (used [false]) +[e55 12-14 09:34:46.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e3a0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a6a6979485654735367657839497769562f61486c3477436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a49775768634e4d6a63784d5449354d544d314e7a49770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a6c3744487249565449674e59516d764637775167324d4943796a79444d2f0a6935594f6d782b645a4d714b64323233714f724d76734d6970344a6d7937494e2b4b79544642676e625458736f627059306966305865716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149457864556b344e545875760a6c687665424d722f6b4c51424c745a6d4f6b63587055334e38634770303872384d416f4743437147534d343942414d43413063414d455143494367765a2f526a0a4369426d6b4c476939544a41492b6150586a7a6c577a6d7779714352454b582f3838684c416942574e476e522f2b44716b63654943466877315a39676b2f7a6e0a67526a553271576f667670343042625336513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[e56 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJjiyHVTsSgex9IwiV/aHl4wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzIwWhcNMjcxMTI5MTM1NzIw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJl7DHrIVTIgNYQmvF7wQg2MICyjyDM/ +i5YOmx+dZMqKd223qOrMvsMip4Jmy7IN+KyTFBgnbTXsobpY0if0XeqjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIExdUk4NTXuv +lhveBMr/kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICgvZ/Rj +CiBmkLGi9TJAI+aPXjzlWzmwyqCREKX/88hLAiBWNGnR/+DqkceICFhw1Z9gk/zn +gRjU2qWofvp40BbS6Q== +-----END CERTIFICATE----- +[e57 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[e58 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +[e59 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e3a0 principal matched by identity 0 +[e5a 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 38 3a 2c 50 b1 f4 a8 af 47 15 93 f0 6c e3 e4 7e |8:,P....G...l..~| +00000010 87 d5 86 21 41 0b 6a a6 7a d4 68 12 d9 0e 22 17 |...!A.j.z.h...".| +[e5b 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8c 2e a7 96 f3 d9 0c 79 24 94 9b |0E.!........y$..| +00000010 b1 dc c8 c8 ac 9f 65 8b 6e cf fc 9c fb 7f 08 6d |......e.n......m| +00000020 4d 5b c4 be ba 02 20 60 4e bf a0 cf 57 0c 34 7b |M[.... `N...W.4{| +00000030 b6 8c 3d 94 13 f2 1e 77 f7 e6 8f e8 90 d4 e9 12 |..=....w........| +00000040 70 f7 83 98 52 e8 1d |p...R..| +[e5c 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e3a0 principal evaluation succeeds for identity 0 +[e5d 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e3a0 gate 1513244086988478200 evaluation succeeds +[e5e 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b600 1 [0xc420026660]}) %!s(*policies.implicitMetaPolicy=&{0xc420312280 1 [0xc420026710 0xc4200267b0]})]} +[e5f 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420a89be0) start: > stop: > +[e60 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] +[e61 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11945] +[e62 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27559], Going to peek [8] bytes +[e63 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13749], placementInfo={fileNum=[0], startOffset=[11945], bytesOffset=[11947]} +[e64 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420a89be0) +[e65 12-14 09:34:46.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +[e66 12-14 09:34:47.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25696] +[e67 12-14 09:34:47.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13808], Going to peek [8] bytes +[e68 12-14 09:34:47.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13806], placementInfo={fileNum=[0], startOffset=[25696], bytesOffset=[25698]} +[e69 12-14 09:34:47.00 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420a89be0) +[e6a 12-14 09:34:47.13 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[e6b 12-14 09:34:47.13 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +[e6c 12-14 09:34:47.13 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[e6d 12-14 09:34:47.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +[e6e 12-14 09:34:47.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026900 gate 1513244087135655900 evaluation starts +[e6f 12-14 09:34:47.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026900 signed by 0 principal evaluation starts (used [false]) +[e70 12-14 09:34:47.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026900 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f564e5762346d2f4b453871576e6273356f4e43584577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a49775768634e4d6a63784d5449354d544d314e7a49770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414246756543656a666b4450505266766b444b534d64772b4844423636426c772b0a65323678755664426d316d3156685a416673495347713941715a683554595365415763696339554a44704d3641463475597952573851536a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149457864556b344e545875760a6c687665424d722f6b4c51424c745a6d4f6b63587055334e38634770303872384d416f4743437147534d343942414d43413063414d45514349437854566d75760a3835744c5633494f627979416a4d464a444f59395a527647364a72466b3649702b354932416941743839735957526c6c30564a6e344c4539536e714c47796e780a6b38653575635a334a64366b457737366d413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[e71 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAOVNWb4m/KE8qWnbs5oNCXEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3922,13 +6702,13 @@ lhveBMr/kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICxTVmuv 85tLV3IObyyAjMFJDOY9ZRvG6JrFk6Ip+5I2AiAt89sYWRll0VJn4LE9SnqLGynx k8e5ucZ3Jd6kEw76mA== -----END CERTIFICATE----- -[8c9 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026498 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -[8ca 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026498 principal evaluation fails -[8cb 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026498 gate 1512458990250418300 evaluation fails -[8cc 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200264a8 gate 1512458990251931600 evaluation starts -[8cd 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264a8 signed by 0 principal evaluation starts (used [false]) -[8ce 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264a8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f564e5762346d2f4b453871576e6273356f4e43584577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a49775768634e4d6a63784d5449354d544d314e7a49770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414246756543656a666b4450505266766b444b534d64772b4844423636426c772b0a65323678755664426d316d3156685a416673495347713941715a683554595365415763696339554a44704d3641463475597952573851536a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149457864556b344e545875760a6c687665424d722f6b4c51424c745a6d4f6b63587055334e38634770303872384d416f4743437147534d343942414d43413063414d45514349437854566d75760a3835744c5633494f627979416a4d464a444f59395a527647364a72466b3649702b354932416941743839735957526c6c30564a6e344c4539536e714c47796e780a6b38653575635a334a64366b457737366d413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[8cf 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[e72 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026900 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +[e73 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026900 principal evaluation fails +[e74 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026900 gate 1513244087135655900 evaluation fails +[e75 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026910 gate 1513244087145597100 evaluation starts +[e76 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026910 signed by 0 principal evaluation starts (used [false]) +[e77 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026910 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f564e5762346d2f4b453871576e6273356f4e43584577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a49775768634e4d6a63784d5449354d544d314e7a49770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414246756543656a666b4450505266766b444b534d64772b4844423636426c772b0a65323678755664426d316d3156685a416673495347713941715a683554595365415763696339554a44704d3641463475597952573851536a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149457864556b344e545875760a6c687665424d722f6b4c51424c745a6d4f6b63587055334e38634770303872384d416f4743437147534d343942414d43413063414d45514349437854566d75760a3835744c5633494f627979416a4d464a444f59395a527647364a72466b3649702b354932416941743839735957526c6c30564a6e344c4539536e714c47796e780a6b38653575635a334a64366b457737366d413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[e78 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAOVNWb4m/KE8qWnbs5oNCXEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3942,26 +6722,58 @@ lhveBMr/kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICxTVmuv 85tLV3IObyyAjMFJDOY9ZRvG6JrFk6Ip+5I2AiAt89sYWRll0VJn4LE9SnqLGynx k8e5ucZ3Jd6kEw76mA== -----END CERTIFICATE----- -[8d0 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[8d1 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[8d2 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264a8 principal matched by identity 0 -[8d3 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 be 86 f5 f2 94 e2 0d e4 1e 21 ee 91 71 3e 6d fd |.........!..q>m.| -00000010 8c 89 b2 4a 21 24 fe c1 c8 c4 fa 3d 7c 11 27 25 |...J!$.....=|.'%| -[8d4 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7c 0f 2d eb a0 5c 4d a9 9c d8 4d 16 |0D. |.-..\M...M.| -00000010 79 f4 a1 40 62 94 fd e3 bf c0 d2 2f f2 67 81 91 |y..@b....../.g..| -00000020 26 6a c3 e6 02 20 03 64 a2 cf 37 e3 bd 9d 0d 8a |&j... .d..7.....| -00000030 79 0e b1 8c 87 bd 8e 6c af 3d 93 5f 26 b9 41 58 |y......l.=._&.AX| -00000040 83 0c ee 49 ae dc |...I..| -[8d5 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264a8 principal evaluation succeeds for identity 0 -[8d6 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200264a8 gate 1512458990251931600 evaluation succeeds -[8d7 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bf20 1 [0xc420026cb8 0xc420026d60]}) %!s(*policies.implicitMetaPolicy=&{0xc42037c280 1 [0xc420026dd8]})]} -[8d8 12-05 07:29:50.25 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc4204e33e0) start: > stop: > -[8d9 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -[8da 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -[8db 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200264d0 gate 1512459005535366200 evaluation starts -[8dc 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264d0 signed by 0 principal evaluation starts (used [false]) -[8dd 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264d0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[8de 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[e79 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026910 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +[e7a 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026910 principal evaluation fails +[e7b 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026910 gate 1513244087145597100 evaluation fails +[e7c 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026920 gate 1513244087146929400 evaluation starts +[e7d 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026920 signed by 0 principal evaluation starts (used [false]) +[e7e 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026920 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f564e5762346d2f4b453871576e6273356f4e43584577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a49775768634e4d6a63784d5449354d544d314e7a49770a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414246756543656a666b4450505266766b444b534d64772b4844423636426c772b0a65323678755664426d316d3156685a416673495347713941715a683554595365415763696339554a44704d3641463475597952573851536a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149457864556b344e545875760a6c687665424d722f6b4c51424c745a6d4f6b63587055334e38634770303872384d416f4743437147534d343942414d43413063414d45514349437854566d75760a3835744c5633494f627979416a4d464a444f59395a527647364a72466b3649702b354932416941743839735957526c6c30564a6e344c4539536e714c47796e780a6b38653575635a334a64366b457737366d413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[e7f 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAOVNWb4m/KE8qWnbs5oNCXEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzIwWhcNMjcxMTI5MTM1NzIw +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABFueCejfkDPPRfvkDKSMdw+HDB66Blw+ +e26xuVdBm1m1VhZAfsISGq9AqZh5TYSeAWcic9UJDpM6AF4uYyRW8QSjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIExdUk4NTXuv +lhveBMr/kLQBLtZmOkcXpU3N8cGp08r8MAoGCCqGSM49BAMCA0cAMEQCICxTVmuv +85tLV3IObyyAjMFJDOY9ZRvG6JrFk6Ip+5I2AiAt89sYWRll0VJn4LE9SnqLGynx +k8e5ucZ3Jd6kEw76mA== +-----END CERTIFICATE----- +[e80 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[e81 12-14 09:34:47.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +[e82 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026920 principal matched by identity 0 +[e83 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 33 98 66 73 2e 93 80 5b 98 d0 6a 73 a9 fd 04 6a |3.fs...[..js...j| +00000010 e7 f9 24 a4 f9 9c 49 e7 16 f8 08 56 fa 33 39 22 |..$...I....V.39"| +[e84 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b3 1e a3 14 3f 43 2a 41 b0 27 5a |0E.!.....?C*A.'Z| +00000010 fd 55 99 ea 41 d9 c4 28 7c 9c 81 ff 61 2d 75 d1 |.U..A..(|...a-u.| +00000020 62 6f f0 72 e0 02 20 3b 02 84 c5 0a 82 7f 2c 56 |bo.r.. ;......,V| +00000030 79 94 0f 5e c9 14 8e 52 19 2e 7c d7 13 e7 24 4a |y..^...R..|...$J| +00000040 04 ce fc fc 95 b1 10 |.......| +[e85 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026920 principal evaluation succeeds for identity 0 +[e86 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026920 gate 1513244087146929400 evaluation succeeds +[e87 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b600 1 [0xc420026660]}) %!s(*policies.implicitMetaPolicy=&{0xc420312280 1 [0xc420026710 0xc4200267b0]})]} +[e88 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc42034e1a0) start: > stop: > +[e89 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] +[e8a 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11945] +[e8b 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27559], Going to peek [8] bytes +[e8c 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13749], placementInfo={fileNum=[0], startOffset=[11945], bytesOffset=[11947]} +[e8d 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42034e1a0) +[e8e 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +[e8f 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25696] +[e90 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13808], Going to peek [8] bytes +[e91 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13806], placementInfo={fileNum=[0], startOffset=[25696], bytesOffset=[25698]} +[e92 12-14 09:34:47.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42034e1a0) +[e93 12-14 09:34:49.95 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[e94 12-14 09:34:49.95 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +[e95 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +[e96 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[e97 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260d0 gate 1513244111001410900 evaluation starts +[e98 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260d0 signed by 0 principal evaluation starts (used [false]) +[e99 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260d0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[e9a 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3975,25 +6787,13 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[8df 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[8e0 12-05 07:30:05.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[8e1 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264d0 principal matched by identity 0 -[8e2 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 db 3d d4 62 cf 41 3b cd 8b 25 48 32 ab 42 33 e4 |.=.b.A;..%H2.B3.| -00000010 e8 5a dc 26 f1 f9 86 65 9f 3c 48 77 5f d5 81 3e |.Z.&...e.| -[8e3 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ca 95 51 cf 0f 76 15 a7 65 ff 73 |0E.!...Q..v..e.s| -00000010 89 39 6f be 24 ee 73 30 db b4 5c 65 9f 72 c9 aa |.9o.$.s0..\e.r..| -00000020 18 4b 5b 5f 96 02 20 71 7a 54 68 78 83 a5 d0 d1 |.K[_.. qzThx....| -00000030 84 f5 25 4a af d4 42 68 5c 8a 44 31 70 fa 79 39 |..%J..Bh\.D1p.y9| -00000040 18 1e db d6 14 cd c0 |.......| -[8e4 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264d0 principal evaluation succeeds for identity 0 -[8e5 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200264d0 gate 1512459005535366200 evaluation succeeds -[8e6 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bde0 1 [0xc420026b98 0xc420026d88]}) %!s(*policies.implicitMetaPolicy=&{0xc420389e20 1 [0xc420026e00]})]} -[8e7 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -[8e8 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -[8e9 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026028 gate 1512459005541294900 evaluation starts -[8ea 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 signed by 0 principal evaluation starts (used [false]) -[8eb 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[8ec 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[e9b 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260d0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +[e9c 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260d0 principal evaluation fails +[e9d 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260d0 gate 1513244111001410900 evaluation fails +[e9e 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026168 gate 1513244111002361300 evaluation starts +[e9f 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026168 signed by 0 principal evaluation starts (used [false]) +[ea0 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026168 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[ea1 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4007,189 +6807,25 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[8ed 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[8ee 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[8ef 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 principal matched by identity 0 -[8f0 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 db 3d d4 62 cf 41 3b cd 8b 25 48 32 ab 42 33 e4 |.=.b.A;..%H2.B3.| -00000010 e8 5a dc 26 f1 f9 86 65 9f 3c 48 77 5f d5 81 3e |.Z.&...e.| -[8f1 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ca 95 51 cf 0f 76 15 a7 65 ff 73 |0E.!...Q..v..e.s| -00000010 89 39 6f be 24 ee 73 30 db b4 5c 65 9f 72 c9 aa |.9o.$.s0..\e.r..| -00000020 18 4b 5b 5f 96 02 20 71 7a 54 68 78 83 a5 d0 d1 |.K[_.. qzThx....| -00000030 84 f5 25 4a af d4 42 68 5c 8a 44 31 70 fa 79 39 |..%J..Bh\.D1p.y9| -00000040 18 1e db d6 14 cd c0 |.......| -[8f2 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 principal evaluation succeeds for identity 0 -[8f3 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026028 gate 1512459005541294900 evaluation succeeds -[8f4 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bde0 1 [0xc420026b98 0xc420026d88]}) %!s(*policies.implicitMetaPolicy=&{0xc420389e20 1 [0xc420026e00]})]} -[8f5 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -[8f6 12-05 07:30:05.54 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[8f7 12-05 07:30:05.54 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[8f8 12-05 07:30:05.68 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[8f9 12-05 07:30:05.68 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop -[8fa 12-05 07:30:07.54 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block -[8fb 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] CreateNextBlock.CreateNextBlock.Next.readBlock -> DEBU Read block 0 -[8fc 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc420363b40 chain:0xc42033eb20 cutter:0xc4202d9c70 filters:0xc42033e380 signer:0x1285450 lastConfig:0 lastConfigSeq:1} -[8fd 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} -[8fe 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[8ff 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[900 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[901 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[902 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...8017DAE3D3D6222E60E14035E227807C -[903 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 0872FE4E410327952B6C48FFE74A19E26803E9310334343B164D314B4C333E15 -[904 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[905 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[906 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 0 -[907 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[908 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[909 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...8017DAE3D3D6222E60E14035E227807C -[90a 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 1016B37E57D558BBEDAAE1CF2460DCD8502B7B99AE28E9BEEAC1C3976D197802 -[90b 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] WriteBlock.Append.writeBlock -> DEBU Wrote block 1 -[90c 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 1 -[90d 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 1 -[90f 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 1 -[910 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420291c60) -[911 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 1 -[912 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4200b8ce0) -[90e 12-05 07:30:07.55 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4204e33e0) -[913 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -[914 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -[915 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262f0 gate 1512459021844280300 evaluation starts -[916 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f0 signed by 0 principal evaluation starts (used [false]) -[917 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[918 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -Xk1Xy2C2aVQjOcr++w== ------END CERTIFICATE----- -[919 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -[91a 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f0 principal evaluation fails -[91b 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262f0 gate 1512459021844280300 evaluation fails -[91c 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026300 gate 1512459021845322800 evaluation starts -[91d 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026300 signed by 0 principal evaluation starts (used [false]) -[91e 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026300 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[91f 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -Xk1Xy2C2aVQjOcr++w== ------END CERTIFICATE----- -[920 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[921 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[922 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026300 principal matched by identity 0 -[923 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 be a8 52 90 f6 b1 42 e3 86 6b c0 31 0b ee 28 c7 |..R...B..k.1..(.| -00000010 85 32 33 18 7c 0a 7d 0c 23 1c ab ff fe 30 28 7a |.23.|.}.#....0(z| -[924 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 16 36 fd f8 32 3f f7 7e 93 9e 84 e0 |0D. .6..2?.~....| -00000010 f0 97 e7 57 d4 37 4d 26 1d 66 27 06 aa 3b 35 5d |...W.7M&.f'..;5]| -00000020 af 81 04 52 02 20 15 cf 9c fa ef 53 52 6b 40 a9 |...R. .....SRk@.| -00000030 84 b1 d0 63 41 d9 63 f1 8b 2b a1 bd da 56 65 00 |...cA.c..+...Ve.| -00000040 c6 d3 cd c0 a9 5f |....._| -[925 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026300 principal evaluation succeeds for identity 0 -[926 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026300 gate 1512459021845322800 evaluation succeeds -[927 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bde0 1 [0xc420026b98 0xc420026d88]}) %!s(*policies.implicitMetaPolicy=&{0xc420389e20 1 [0xc420026e00]})]} -[928 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -[929 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -[92a 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026318 gate 1512459021847751800 evaluation starts -[92b 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026318 signed by 0 principal evaluation starts (used [false]) -[92c 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026318 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[92d 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -Xk1Xy2C2aVQjOcr++w== ------END CERTIFICATE----- -[92e 12-05 07:30:21.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026318 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -[92f 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026318 principal evaluation fails -[930 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026318 gate 1512459021847751800 evaluation fails -[931 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026328 gate 1512459021851097800 evaluation starts -[932 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026328 signed by 0 principal evaluation starts (used [false]) -[933 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026328 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[934 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W -ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W -G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka -BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb -Xk1Xy2C2aVQjOcr++w== ------END CERTIFICATE----- -[935 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[936 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[937 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026328 principal matched by identity 0 -[938 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 be a8 52 90 f6 b1 42 e3 86 6b c0 31 0b ee 28 c7 |..R...B..k.1..(.| -00000010 85 32 33 18 7c 0a 7d 0c 23 1c ab ff fe 30 28 7a |.23.|.}.#....0(z| -[939 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 16 36 fd f8 32 3f f7 7e 93 9e 84 e0 |0D. .6..2?.~....| -00000010 f0 97 e7 57 d4 37 4d 26 1d 66 27 06 aa 3b 35 5d |...W.7M&.f'..;5]| -00000020 af 81 04 52 02 20 15 cf 9c fa ef 53 52 6b 40 a9 |...R. .....SRk@.| -00000030 84 b1 d0 63 41 d9 63 f1 8b 2b a1 bd da 56 65 00 |...cA.c..+...Ve.| -00000040 c6 d3 cd c0 a9 5f |....._| -[93a 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026328 principal evaluation succeeds for identity 0 -[93b 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026328 gate 1512459021851097800 evaluation succeeds -[93c 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bde0 1 [0xc420026b98 0xc420026d88]}) %!s(*policies.implicitMetaPolicy=&{0xc420389e20 1 [0xc420026e00]})]} -[93d 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -[93e 12-05 07:30:21.85 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[93f 12-05 07:30:21.85 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[940 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block -[941 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] CreateNextBlock.CreateNextBlock.Next.readBlock -> DEBU Read block 1 -[942 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc420363b40 chain:0xc42033eb20 cutter:0xc4202d9c70 filters:0xc42033e380 signer:0x1285450 lastConfig:0 lastConfigSeq:1} -[943 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} -[944 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[945 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[946 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[947 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[948 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...14B5A715A44682D44C84A73A537438BA -[949 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 3DA2B78185D7613540E5325D3EC8011C5C40B53B12351F537886909141E7E54E -[94a 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[94b 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[94c 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 0 -[94d 12-05 07:30:23.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[94e 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[94f 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...14B5A715A44682D44C84A73A537438BA -[950 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 6BA26FA0BF21B962E5A2CC46D8D4A673C83679166D4278396C9273F5E5D35044 -[951 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] WriteBlock.Append.writeBlock -> DEBU Wrote block 2 -[952 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 2 -[953 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 2 -[954 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4200b8ce0) -[955 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 2 -[956 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4204e33e0) -[957 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 2 -[958 12-05 07:30:23.86 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420291c60) -[959 12-05 07:30:42.79 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[95a 12-05 07:30:42.79 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop -[95b 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -[95c 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -[95d 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026390 gate 1512459042823285000 evaluation starts -[95e 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026390 signed by 0 principal evaluation starts (used [false]) -[95f 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026390 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[960 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[ea2 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[ea3 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +[ea4 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026168 principal matched by identity 0 +[ea5 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 69 62 08 b9 6c 11 cf 67 96 d9 fa 82 1a 7d 68 7e |ib..l..g.....}h~| +00000010 a2 38 ca 6d 28 d8 3b 75 16 d3 a5 aa 7c 1b ca 17 |.8.m(.;u....|...| +[ea6 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 46 75 e8 cf 34 20 75 8d 16 f0 0e 0e |0D. Fu..4 u.....| +00000010 6b 15 9e f6 96 5f 88 11 fa b4 a3 04 21 81 ed 6c |k...._......!..l| +00000020 e5 da 4c ac 02 20 47 fb 0f f6 6d 0e db 8c bf 93 |..L.. G...m.....| +00000030 4e b0 25 b5 e0 ec 83 b7 49 30 00 6b 87 fe 77 cd |N.%.....I0.k..w.| +00000040 57 4f 1a a9 58 34 |WO..X4| +[ea7 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026168 principal evaluation succeeds for identity 0 +[ea8 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026168 gate 1513244111002361300 evaluation succeeds +[ea9 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b760 1 [0xc420026610]}) %!s(*policies.implicitMetaPolicy=&{0xc420312500 1 [0xc4200266c0 0xc420026760]})]} +[eaa 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +[eab 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[eac 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e1b8 gate 1513244111004155200 evaluation starts +[ead 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e1b8 signed by 0 principal evaluation starts (used [false]) +[eae 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e1b8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[eaf 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4203,25 +6839,13 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[961 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[962 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[963 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026390 principal matched by identity 0 -[964 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 89 8e 95 e9 4d 8c 6b f5 aa d2 79 12 dd dd b8 bf |....M.k...y.....| -00000010 43 a8 cb dd 6c c4 a3 36 b7 ee 9c 09 a4 59 df 38 |C...l..6.....Y.8| -[965 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 23 11 3e 07 be ae 0a 41 6a 6c 15 96 |0D. #.>....Ajl..| -00000010 4a db 19 5f 0c c4 4a 0e 5b aa d7 5f 92 5b 31 c2 |J.._..J.[.._.[1.| -00000020 ea 23 f7 38 02 20 78 68 cf 8b a2 16 fe 90 8d 31 |.#.8. xh.......1| -00000030 86 91 e1 bb 22 f7 21 3f 83 2a 96 bc 52 94 92 d7 |....".!?.*..R...| -00000040 09 52 d1 8c b8 36 |.R...6| -[966 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026390 principal evaluation succeeds for identity 0 -[967 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026390 gate 1512459042823285000 evaluation succeeds -[968 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bde0 1 [0xc420026b98 0xc420026d88]}) %!s(*policies.implicitMetaPolicy=&{0xc420389e20 1 [0xc420026e00]})]} -[969 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -[96a 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -[96b 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263a8 gate 1512459042827067800 evaluation starts -[96c 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263a8 signed by 0 principal evaluation starts (used [false]) -[96d 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263a8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[96e 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[eb0 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e1b8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +[eb1 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e1b8 principal evaluation fails +[eb2 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e1b8 gate 1513244111004155200 evaluation fails +[eb3 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e390 gate 1513244111004748600 evaluation starts +[eb4 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e390 signed by 0 principal evaluation starts (used [false]) +[eb5 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e390 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[eb6 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4235,55 +6859,72 @@ d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx zekLSULI9G2UUYA77A== -----END CERTIFICATE----- -[96f 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[970 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[971 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263a8 principal matched by identity 0 -[972 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 89 8e 95 e9 4d 8c 6b f5 aa d2 79 12 dd dd b8 bf |....M.k...y.....| -00000010 43 a8 cb dd 6c c4 a3 36 b7 ee 9c 09 a4 59 df 38 |C...l..6.....Y.8| -[973 12-05 07:30:42.82 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 23 11 3e 07 be ae 0a 41 6a 6c 15 96 |0D. #.>....Ajl..| -00000010 4a db 19 5f 0c c4 4a 0e 5b aa d7 5f 92 5b 31 c2 |J.._..J.[.._.[1.| -00000020 ea 23 f7 38 02 20 78 68 cf 8b a2 16 fe 90 8d 31 |.#.8. xh.......1| -00000030 86 91 e1 bb 22 f7 21 3f 83 2a 96 bc 52 94 92 d7 |....".!?.*..R...| -00000040 09 52 d1 8c b8 36 |.R...6| -[974 12-05 07:30:42.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263a8 principal evaluation succeeds for identity 0 -[976 12-05 07:30:42.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263a8 gate 1512459042827067800 evaluation succeeds -[977 12-05 07:30:42.83 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bde0 1 [0xc420026b98 0xc420026d88]}) %!s(*policies.implicitMetaPolicy=&{0xc420389e20 1 [0xc420026e00]})]} -[978 12-05 07:30:42.83 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -[975 12-05 07:30:42.83 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[979 12-05 07:30:42.83 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[97a 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block -[97b 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] CreateNextBlock.CreateNextBlock.Next.readBlock -> DEBU Read block 2 -[97c 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc420363b40 chain:0xc42033eb20 cutter:0xc4202d9c70 filters:0xc42033e380 signer:0x1285450 lastConfig:0 lastConfigSeq:1} -[97d 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} -[97e 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[97f 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[980 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[981 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[982 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...917D3514224FE00FA72205D5D9A71054 -[983 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: C98CEFFDE980A69D129C11FBE923E68C3F89F8EECE520ECB2DFCC3DD513106C9 -[984 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[985 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[986 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 0 -[987 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[988 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[989 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...917D3514224FE00FA72205D5D9A71054 -[98a 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 23C8752405BC2439458FE33C6B5ED132C31B60ED472F9CE2E5A59450CDBE0B5F -[98b 12-05 07:30:44.83 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] WriteBlock.Append.writeBlock -> DEBU Wrote block 3 -[98c 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 3 -[98d 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 3 -[98e 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4204e33e0) -[98f 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 3 -[990 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4200b8ce0) -[991 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 3 -[992 12-05 07:30:44.84 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420291c60) -[993 12-05 07:31:08.31 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[994 12-05 07:31:08.31 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop -[995 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -[996 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -[997 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420114300 gate 1512459068345623500 evaluation starts -[998 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114300 signed by 0 principal evaluation starts (used [false]) -[999 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114300 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[99a 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[eb7 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[eb8 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +[eb9 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e390 principal matched by identity 0 +[eba 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 69 62 08 b9 6c 11 cf 67 96 d9 fa 82 1a 7d 68 7e |ib..l..g.....}h~| +00000010 a2 38 ca 6d 28 d8 3b 75 16 d3 a5 aa 7c 1b ca 17 |.8.m(.;u....|...| +[ebb 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 46 75 e8 cf 34 20 75 8d 16 f0 0e 0e |0D. Fu..4 u.....| +00000010 6b 15 9e f6 96 5f 88 11 fa b4 a3 04 21 81 ed 6c |k...._......!..l| +00000020 e5 da 4c ac 02 20 47 fb 0f f6 6d 0e db 8c bf 93 |..L.. G...m.....| +00000030 4e b0 25 b5 e0 ec 83 b7 49 30 00 6b 87 fe 77 cd |N.%.....I0.k..w.| +00000040 57 4f 1a a9 58 34 |WO..X4| +[ebc 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e390 principal evaluation succeeds for identity 0 +[ebd 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e390 gate 1513244111004748600 evaluation succeeds +[ebe 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b760 1 [0xc420026610]}) %!s(*policies.implicitMetaPolicy=&{0xc420312500 1 [0xc4200266c0 0xc420026760]})]} +[ebf 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +[ec0 12-14 09:35:11.00 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[ec1 12-14 09:35:11.01 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[ec2 12-14 09:35:11.10 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[ec3 12-14 09:35:11.10 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +[ec4 12-14 09:35:13.00 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block +[ec5 12-14 09:35:13.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +[ec6 12-14 09:35:13.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25696] +[ec7 12-14 09:35:13.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13808], Going to peek [8] bytes +[ec8 12-14 09:35:13.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13806], placementInfo={fileNum=[0], startOffset=[25696], bytesOffset=[25698]} +[ec9 12-14 09:35:13.00 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42017c5a0 chain:0xc42017d3e0 cutter:0xc420137770 filters:0xc42017cc20 signer:0x128b4a8 lastConfig:2 lastConfigSeq:3} +[eca 12-14 09:35:13.00 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +[ecb 12-14 09:35:13.00 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[ecc 12-14 09:35:13.00 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[ecd 12-14 09:35:13.00 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[ece 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[ecf 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...2ECCCF9F30E2C8308D3B9F86A4109B5E +[ed0 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 7EB2567868F52C32807D4B2B64915C03703BA8E4326DDAB4C8E3298AA63714F3 +[ed1 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[ed2 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[ed3 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[ed4 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[ed5 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[ed6 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFF050A0A4F7264657265724D53...2ECCCF9F30E2C8308D3B9F86A4109B5E +[ed7 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 37DFDC55AAE8913897357E9480B9F7634BA485A39FC525DF15D28935F4770521 +[ed8 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xe8, 0xdd, 0x3a, 0xe6, 0xb8, 0x5d, 0x63, 0x1d, 0x8e, 0x54, 0xef, 0xc5, 0xa, 0x1b, 0x18, 0xb, 0x1e, 0xe6, 0x31, 0x77, 0x44, 0x87, 0xc7, 0x16, 0x8f, 0xea, 0x61, 0x39, 0xdd, 0xa3, 0xa7, 0xde} txOffsets= +txId=666265f2643a14ee4e70b3309ea1466897466f9ccb66e0db670aecd252a42e2b locPointer=offset=70, bytesLength=3388 +] +[ed9 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44722], isChainEmpty=[false], lastBlockNumber=[3] +[eda 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 3 +[edb 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] +[edc 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39504] +[edd 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] +[edf 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] +[ee0 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39504] +[ee1 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5218], Going to peek [8] bytes +[ee3 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5216], placementInfo={fileNum=[0], startOffset=[39504], bytesOffset=[39506]} +[ee4 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420a89be0) +[ee2 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39504] +[ee5 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5218], Going to peek [8] bytes +[ee6 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5216], placementInfo={fileNum=[0], startOffset=[39504], bytesOffset=[39506]} +[ede 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5218], Going to peek [8] bytes +[ee7 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5216], placementInfo={fileNum=[0], startOffset=[39504], bytesOffset=[39506]} +[ee9 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42034e1a0) +[ee8 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42088b800) +[eea 12-14 09:35:13.01 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN [channel: businesschannel] Error sending to stream: rpc error: code = Canceled desc = context canceled +[eeb 12-14 09:35:13.01 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[eec 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +[eed 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[eee 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e4e8 gate 1513244128632147200 evaluation starts +[eef 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e4e8 signed by 0 principal evaluation starts (used [false]) +[ef0 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e4e8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[ef1 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -4297,13 +6938,13 @@ G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb Xk1Xy2C2aVQjOcr++w== -----END CERTIFICATE----- -[99b 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114300 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -[99c 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114300 principal evaluation fails -[99d 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420114300 gate 1512459068345623500 evaluation fails -[99e 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420114310 gate 1512459068347668100 evaluation starts -[99f 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114310 signed by 0 principal evaluation starts (used [false]) -[9a0 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114310 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[9a1 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[ef2 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e4e8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +[ef3 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e4e8 principal evaluation fails +[ef4 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e4e8 gate 1513244128632147200 evaluation fails +[ef5 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e548 gate 1513244128632719600 evaluation starts +[ef6 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e548 signed by 0 principal evaluation starts (used [false]) +[ef7 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e548 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[ef8 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -4317,25 +6958,13 @@ G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb Xk1Xy2C2aVQjOcr++w== -----END CERTIFICATE----- -[9a2 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[9a3 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[9a4 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114310 principal matched by identity 0 -[9a5 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 1e 4f a1 f2 67 7a f5 a8 ab 8f 5f 6b 6e 6b 5b 9a |.O..gz...._knk[.| -00000010 42 07 88 1c 05 89 70 f2 e2 e8 d2 9c f8 b5 43 ae |B.....p.......C.| -[9a6 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c3 1a 6a 3d 6e b9 42 1e 6f 07 7a |0E.!...j=n.B.o.z| -00000010 54 6e ce 5a 01 e8 2b 26 8d be 8a ef 08 8f bb 31 |Tn.Z..+&.......1| -00000020 50 c9 b5 dd cc 02 20 67 b2 91 a3 5c 92 d7 c1 08 |P..... g...\....| -00000030 a6 0d 08 ee 02 d2 8b 2b 14 f7 95 8c 1e 70 30 ea |.......+.....p0.| -00000040 49 e8 65 85 f7 cc 89 |I.e....| -[9a7 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114310 principal evaluation succeeds for identity 0 -[9a8 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420114310 gate 1512459068347668100 evaluation succeeds -[9a9 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bde0 1 [0xc420026b98 0xc420026d88]}) %!s(*policies.implicitMetaPolicy=&{0xc420389e20 1 [0xc420026e00]})]} -[9aa 12-05 07:31:08.34 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -[9ab 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -[9ac 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026300 gate 1512459068350156700 evaluation starts -[9ad 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026300 signed by 0 principal evaluation starts (used [false]) -[9ae 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026300 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[9af 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[ef9 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e548 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +[efa 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e548 principal evaluation fails +[efb 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e548 gate 1513244128632719600 evaluation fails +[efc 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e578 gate 1513244128633150700 evaluation starts +[efd 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e578 signed by 0 principal evaluation starts (used [false]) +[efe 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e578 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[eff 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -4349,13 +6978,25 @@ G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb Xk1Xy2C2aVQjOcr++w== -----END CERTIFICATE----- -[9b0 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026300 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -[9b1 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026300 principal evaluation fails -[9b2 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026300 gate 1512459068350156700 evaluation fails -[9b3 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026310 gate 1512459068351215300 evaluation starts -[9b4 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026310 signed by 0 principal evaluation starts (used [false]) -[9b5 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026310 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[9b6 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[f00 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[f01 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +[f02 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e578 principal matched by identity 0 +[f03 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 14 87 4d 16 f3 cc e8 80 f6 10 69 d4 6c 77 88 d8 |..M.......i.lw..| +00000010 5c fb a0 09 b4 d2 8b 8e 3d 75 4d 50 2f a0 e9 0f |\.......=uMP/...| +[f04 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d8 f3 e1 67 96 8b de ce a1 ca fa |0E.!....g.......| +00000010 82 03 e2 76 c4 e2 5a ad 00 e2 23 11 f2 c3 52 1a |...v..Z...#...R.| +00000020 07 f4 4f e6 b7 02 20 2e 7b d0 d0 4c 79 cb d0 42 |..O... .{..Ly..B| +00000030 5a 86 65 5f 1a 6d 85 22 5a 20 73 24 3b f2 bd 59 |Z.e_.m."Z s$;..Y| +00000040 63 00 68 f8 ca 19 cd |c.h....| +[f05 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e578 principal evaluation succeeds for identity 0 +[f06 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e578 gate 1513244128633150700 evaluation succeeds +[f07 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b760 1 [0xc420026610]}) %!s(*policies.implicitMetaPolicy=&{0xc420312500 1 [0xc4200266c0 0xc420026760]})]} +[f08 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +[f09 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[f0a 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e590 gate 1513244128634263700 evaluation starts +[f0b 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e590 signed by 0 principal evaluation starts (used [false]) +[f0c 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e590 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[f0d 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -4369,55 +7010,433 @@ G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb Xk1Xy2C2aVQjOcr++w== -----END CERTIFICATE----- -[9b7 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[9b8 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[9b9 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026310 principal matched by identity 0 -[9ba 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 1e 4f a1 f2 67 7a f5 a8 ab 8f 5f 6b 6e 6b 5b 9a |.O..gz...._knk[.| -00000010 42 07 88 1c 05 89 70 f2 e2 e8 d2 9c f8 b5 43 ae |B.....p.......C.| -[9bb 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c3 1a 6a 3d 6e b9 42 1e 6f 07 7a |0E.!...j=n.B.o.z| -00000010 54 6e ce 5a 01 e8 2b 26 8d be 8a ef 08 8f bb 31 |Tn.Z..+&.......1| -00000020 50 c9 b5 dd cc 02 20 67 b2 91 a3 5c 92 d7 c1 08 |P..... g...\....| -00000030 a6 0d 08 ee 02 d2 8b 2b 14 f7 95 8c 1e 70 30 ea |.......+.....p0.| -00000040 49 e8 65 85 f7 cc 89 |I.e....| -[9bc 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026310 principal evaluation succeeds for identity 0 -[9bd 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026310 gate 1512459068351215300 evaluation succeeds -[9bf 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[9c0 12-05 07:31:08.35 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[9be 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bde0 1 [0xc420026b98 0xc420026d88]}) %!s(*policies.implicitMetaPolicy=&{0xc420389e20 1 [0xc420026e00]})]} -[9c1 12-05 07:31:08.35 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -[9c2 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block -[9c3 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] CreateNextBlock.CreateNextBlock.Next.readBlock -> DEBU Read block 3 -[9c4 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc420363b40 chain:0xc42033eb20 cutter:0xc4202d9c70 filters:0xc42033e380 signer:0x1285450 lastConfig:0 lastConfigSeq:1} -[9c5 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} -[9c6 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[9c7 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[9c8 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[9c9 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[9ca 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...A3F5A7A447B734FA8C9A754CC5A33C0B -[9cb 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 25635EF20D1BBEAD8A2FB062DEA5749BEC8F79130C0AB672F69BFEC52B296135 -[9cc 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[9cd 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[9ce 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 0 -[9cf 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[9d0 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[9d1 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...A3F5A7A447B734FA8C9A754CC5A33C0B -[9d2 12-05 07:31:10.35 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 9468332A636B8033F8CE3BBE52DEFF92AA7757554CD17CF2F2B00CAF317309F9 -[9d3 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] WriteBlock.Append.writeBlock -> DEBU Wrote block 4 -[9d4 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 4 -[9d5 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 4 -[9d6 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4200b8ce0) -[9d7 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 4 -[9d8 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420291c60) -[9d9 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 4 -[9da 12-05 07:31:10.36 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4204e33e0) -[9db 12-05 07:31:19.56 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[9dc 12-05 07:31:19.56 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[9dd 12-05 07:31:19.56 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[9de 12-05 07:31:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -[9df 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263e0 gate 1512459079570055700 evaluation starts -[9e0 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263e0 signed by 0 principal evaluation starts (used [false]) -[9e1 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263e0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[9e2 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[f0e 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e590 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +[f0f 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e590 principal evaluation fails +[f10 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e590 gate 1513244128634263700 evaluation fails +[f11 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e5a0 gate 1513244128634713800 evaluation starts +[f12 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e5a0 signed by 0 principal evaluation starts (used [false]) +[f13 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e5a0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[f14 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[f15 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e5a0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +[f16 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e5a0 principal evaluation fails +[f17 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e5a0 gate 1513244128634713800 evaluation fails +[f18 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e5b0 gate 1513244128635087900 evaluation starts +[f19 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e5b0 signed by 0 principal evaluation starts (used [false]) +[f1a 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e5b0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[f1b 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[f1c 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[f1d 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +[f1e 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e5b0 principal matched by identity 0 +[f1f 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 14 87 4d 16 f3 cc e8 80 f6 10 69 d4 6c 77 88 d8 |..M.......i.lw..| +00000010 5c fb a0 09 b4 d2 8b 8e 3d 75 4d 50 2f a0 e9 0f |\.......=uMP/...| +[f20 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d8 f3 e1 67 96 8b de ce a1 ca fa |0E.!....g.......| +00000010 82 03 e2 76 c4 e2 5a ad 00 e2 23 11 f2 c3 52 1a |...v..Z...#...R.| +00000020 07 f4 4f e6 b7 02 20 2e 7b d0 d0 4c 79 cb d0 42 |..O... .{..Ly..B| +00000030 5a 86 65 5f 1a 6d 85 22 5a 20 73 24 3b f2 bd 59 |Z.e_.m."Z s$;..Y| +00000040 63 00 68 f8 ca 19 cd |c.h....| +[f21 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e5b0 principal evaluation succeeds for identity 0 +[f22 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e5b0 gate 1513244128635087900 evaluation succeeds +[f23 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b760 1 [0xc420026610]}) %!s(*policies.implicitMetaPolicy=&{0xc420312500 1 [0xc4200266c0 0xc420026760]})]} +[f24 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +[f25 12-14 09:35:28.63 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[f26 12-14 09:35:28.63 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[f27 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block +[f28 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] +[f29 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39504] +[f2a 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5218], Going to peek [8] bytes +[f2b 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5216], placementInfo={fileNum=[0], startOffset=[39504], bytesOffset=[39506]} +[f2c 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42017c5a0 chain:0xc42017d3e0 cutter:0xc420137770 filters:0xc42017cc20 signer:0x128b4a8 lastConfig:2 lastConfigSeq:3} +[f2d 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +[f2e 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[f2f 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[f30 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[f31 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[f32 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...38C304E544DC625C70B50E7E31D7D25D +[f33 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 31729286761BBD55A8F65868F303A4DC5B826E72CD42997F9242E5FEA09C077D +[f34 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[f35 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[f36 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[f37 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[f38 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[f39 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFF050A0A4F7264657265724D53...38C304E544DC625C70B50E7E31D7D25D +[f3a 12-14 09:35:30.63 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 8F061871692DF6DA6C5E613563C90E7C0D004BB58665E9F2C4D51E3A408156CC +[f3b 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0xe1, 0xaa, 0x67, 0x31, 0xdc, 0xd6, 0xb, 0x9f, 0xdb, 0x7e, 0x68, 0xf9, 0x7b, 0x5b, 0x52, 0x72, 0x93, 0x51, 0x28, 0x46, 0xf3, 0x9c, 0xb6, 0x5d, 0xd4, 0x48, 0xaf, 0x4, 0xaa, 0x49, 0xd5, 0x9b} txOffsets= +txId=d603c8c46310efc0b523b5ce46d43adf38cf88bc2b5b2980ae8060dd5dd9681d locPointer=offset=70, bytesLength=3388 +] +[f3c 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49940], isChainEmpty=[false], lastBlockNumber=[4] +[f3e 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [4] +[f3f 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44722] +[f40 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5218], Going to peek [8] bytes +[f41 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5216], placementInfo={fileNum=[0], startOffset=[44722], bytesOffset=[44724]} +[f42 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42088b800) +[f43 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [4] +[f44 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44722] +[f45 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5218], Going to peek [8] bytes +[f46 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5216], placementInfo={fileNum=[0], startOffset=[44722], bytesOffset=[44724]} +[f47 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420a89be0) +[f3d 12-14 09:35:30.64 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 4 +[f48 12-14 09:35:47.15 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[f49 12-14 09:35:47.15 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +[f4a 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +[f4b 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[f4c 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e618 gate 1513244147182058600 evaluation starts +[f4d 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e618 signed by 0 principal evaluation starts (used [false]) +[f4e 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e618 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[f4f 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[f50 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e618 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +[f51 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e618 principal evaluation fails +[f52 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e618 gate 1513244147182058600 evaluation fails +[f53 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e628 gate 1513244147183121200 evaluation starts +[f54 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e628 signed by 0 principal evaluation starts (used [false]) +[f55 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e628 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[f56 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[f57 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[f58 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +[f59 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e628 principal matched by identity 0 +[f5a 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 23 4d 79 24 8f f7 6e e2 c9 f4 2d 21 6c 7c 83 7f |#My$..n...-!l|..| +00000010 48 ff ea 49 09 48 52 b3 70 98 4f 42 60 ad fb 51 |H..I.HR.p.OB`..Q| +[f5b 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7c db ce 85 44 49 89 12 c5 61 9b fc |0D. |...DI...a..| +00000010 29 bb b3 e3 5e a4 4d 93 a2 f4 af 77 c3 34 75 84 |)...^.M....w.4u.| +00000020 1a d7 54 b0 02 20 24 c4 ca 12 c4 f7 ac a6 52 4b |..T.. $.......RK| +00000030 47 06 ac 57 c7 d9 00 89 c5 9b 83 92 37 85 00 d1 |G..W........7...| +00000040 e6 ed 8e 40 bf ab |...@..| +[f5c 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e628 principal evaluation succeeds for identity 0 +[f5d 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e628 gate 1513244147183121200 evaluation succeeds +[f5e 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b760 1 [0xc420026610]}) %!s(*policies.implicitMetaPolicy=&{0xc420312500 1 [0xc4200266c0 0xc420026760]})]} +[f5f 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +[f60 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[f61 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026248 gate 1513244147184836800 evaluation starts +[f62 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026248 signed by 0 principal evaluation starts (used [false]) +[f63 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026248 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[f64 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[f65 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026248 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +[f66 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026248 principal evaluation fails +[f67 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026248 gate 1513244147184836800 evaluation fails +[f68 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026258 gate 1513244147185541300 evaluation starts +[f69 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026258 signed by 0 principal evaluation starts (used [false]) +[f6a 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026258 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414a326656714743333258433551706759736d7659784577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a41784d544d314e7a45355768634e4d6a63784d5449354d544d314e7a45350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142475575524871517977515151697742772f707835314f7a447146784f5073350a546e5a6e2f426d4d6c53787830545930386c796d594c7262674a546e5a6e51456d3246426a4b4968586e5966694b7949536b684766412b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149486f3432655070303138680a643859746253694e77792f466370522f727a3542425469356f4555756f6176344d416f4743437147534d343942414d43413063414d45514349414b77744542410a6669564a4e68314c5a394651764258416b614966685a52636e6d393256495044673763594169415537784d4a47393065446a3242534969622f5237514e6b46780a7a656b4c53554c49394732555559413737413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[f6b 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAJ2fVqGC32XC5QpgYsmvYxEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjAxMTM1NzE5WhcNMjcxMTI5MTM1NzE5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGUuRHqQywQQQiwBw/px51OzDqFxOPs5 +TnZn/BmMlSxx0TY08lymYLrbgJTnZnQEm2FBjKIhXnYfiKyISkhGfA+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHo42ePp018h +d8YtbSiNwy/FcpR/rz5BBTi5oEUuoav4MAoGCCqGSM49BAMCA0cAMEQCIAKwtEBA +fiVJNh1LZ9FQvBXAkaIfhZRcnm92VIPDg7cYAiAU7xMJG90eDj2BSIib/R7QNkFx +zekLSULI9G2UUYA77A== +-----END CERTIFICATE----- +[f6c 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[f6d 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +[f6e 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026258 principal matched by identity 0 +[f6f 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 23 4d 79 24 8f f7 6e e2 c9 f4 2d 21 6c 7c 83 7f |#My$..n...-!l|..| +00000010 48 ff ea 49 09 48 52 b3 70 98 4f 42 60 ad fb 51 |H..I.HR.p.OB`..Q| +[f70 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7c db ce 85 44 49 89 12 c5 61 9b fc |0D. |...DI...a..| +00000010 29 bb b3 e3 5e a4 4d 93 a2 f4 af 77 c3 34 75 84 |)...^.M....w.4u.| +00000020 1a d7 54 b0 02 20 24 c4 ca 12 c4 f7 ac a6 52 4b |..T.. $.......RK| +00000030 47 06 ac 57 c7 d9 00 89 c5 9b 83 92 37 85 00 d1 |G..W........7...| +00000040 e6 ed 8e 40 bf ab |...@..| +[f71 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026258 principal evaluation succeeds for identity 0 +[f72 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026258 gate 1513244147185541300 evaluation succeeds +[f73 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b760 1 [0xc420026610]}) %!s(*policies.implicitMetaPolicy=&{0xc420312500 1 [0xc4200266c0 0xc420026760]})]} +[f74 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +[f75 12-14 09:35:47.18 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[f76 12-14 09:35:47.18 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[f77 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block +[f78 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [4] +[f79 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44722] +[f7a 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5218], Going to peek [8] bytes +[f7b 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5216], placementInfo={fileNum=[0], startOffset=[44722], bytesOffset=[44724]} +[f7c 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42017c5a0 chain:0xc42017d3e0 cutter:0xc420137770 filters:0xc42017cc20 signer:0x128b4a8 lastConfig:2 lastConfigSeq:3} +[f7d 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +[f7e 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[f7f 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[f80 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[f81 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[f82 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...B7E713A4F7E97C0611A222FC68E1EFFA +[f83 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 22A98DFB686BB4E9C76F2AED6119476B7287AC2AFD5096A663CE4508338968E4 +[f84 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[f85 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[f86 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[f87 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[f88 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[f89 12-14 09:35:49.18 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFF050A0A4F7264657265724D53...B7E713A4F7E97C0611A222FC68E1EFFA +[f8a 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: F5CD37305862390477D9FDC865CC988406AB901F3197E0DF50435DC97F6639FC +[f8b 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x9b, 0x95, 0xb3, 0x7b, 0x11, 0xfd, 0xc9, 0x9e, 0x30, 0x1a, 0xb0, 0x98, 0x35, 0x8, 0x41, 0x3a, 0x5c, 0x97, 0x3e, 0x83, 0xb, 0x3f, 0xe5, 0xfb, 0xd3, 0xaf, 0x9a, 0x1f, 0x2c, 0x58, 0x50, 0x1f} txOffsets= +txId=c604fc3a2c97dbb42902c8b167413177695bac4807a3e8f65cec8959d06b0442 locPointer=offset=70, bytesLength=2848 +] +[f8c 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54617], isChainEmpty=[false], lastBlockNumber=[5] +[f8e 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [5] +[f8f 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49940] +[f90 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4677], Going to peek [8] bytes +[f92 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4675], placementInfo={fileNum=[0], startOffset=[49940], bytesOffset=[49942]} +[f93 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42088b800) +[f91 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [5] +[f94 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49940] +[f95 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4677], Going to peek [8] bytes +[f96 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4675], placementInfo={fileNum=[0], startOffset=[49940], bytesOffset=[49942]} +[f8d 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 5 +[f97 12-14 09:35:49.19 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420a89be0) +[f98 12-14 09:36:05.85 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[f99 12-14 09:36:05.85 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +[f9a 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +[f9b 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[f9c 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262d0 gate 1513244165876459800 evaluation starts +[f9d 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262d0 signed by 0 principal evaluation starts (used [false]) +[f9e 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262d0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[f9f 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[fa0 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262d0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +[fa1 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262d0 principal evaluation fails +[fa2 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262d0 gate 1513244165876459800 evaluation fails +[fa3 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262e0 gate 1513244165876970100 evaluation starts +[fa4 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262e0 signed by 0 principal evaluation starts (used [false]) +[fa5 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262e0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[fa6 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[fa7 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262e0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +[fa8 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262e0 principal evaluation fails +[fa9 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262e0 gate 1513244165876970100 evaluation fails +[faa 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262f0 gate 1513244165877367400 evaluation starts +[fab 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f0 signed by 0 principal evaluation starts (used [false]) +[fac 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[fad 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[fae 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[faf 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +[fb0 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f0 principal matched by identity 0 +[fb1 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 34 06 f8 bc 14 a7 d8 85 93 5b ef 16 33 79 f7 24 |4........[..3y.$| +00000010 a8 e7 5a f5 65 ce c3 ab c5 0a fd c2 c9 04 38 ad |..Z.e.........8.| +[fb2 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f1 44 ec d1 06 a1 db 5a 1d bd 1a |0E.!..D.....Z...| +00000010 3d d4 c3 2e d1 90 8d 62 7b e0 92 33 83 d9 ec ed |=......b{..3....| +00000020 6b 8a 3e 06 d4 02 20 04 62 f0 bf eb ac f0 4d 15 |k.>... .b.....M.| +00000030 2a 40 d4 17 3f 6d 2e f2 e0 f6 d5 57 a1 9b 91 c4 |*@..?m.....W....| +00000040 5d 5f 53 09 07 80 3e |]_S...>| +[fb3 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f0 principal evaluation succeeds for identity 0 +[fb4 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262f0 gate 1513244165877367400 evaluation succeeds +[fb5 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b760 1 [0xc420026610]}) %!s(*policies.implicitMetaPolicy=&{0xc420312500 1 [0xc4200266c0 0xc420026760]})]} +[fb6 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +[fb7 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[fb8 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026308 gate 1513244165878314200 evaluation starts +[fb9 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026308 signed by 0 principal evaluation starts (used [false]) +[fba 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026308 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[fbb 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[fbc 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026308 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +[fbd 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026308 principal evaluation fails +[fbe 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026308 gate 1513244165878314200 evaluation fails +[fbf 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026318 gate 1513244165878724700 evaluation starts +[fc0 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026318 signed by 0 principal evaluation starts (used [false]) +[fc1 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026318 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[fc2 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[fc3 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026318 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +[fc4 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026318 principal evaluation fails +[fc5 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026318 gate 1513244165878724700 evaluation fails +[fc6 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026328 gate 1513244165879539200 evaluation starts +[fc7 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026328 signed by 0 principal evaluation starts (used [false]) +[fc8 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026328 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951482b32676b48515653594777484e6d646a565731726a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d4445784d7a55334d6a4261467730794e7a45784d6a6b784d7a55334d6a42610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145542f2b715843692f75616379524e55587a2b4c465769576b7a665962696334570a796d45704a7a504e412b6d776a4a4f46754446377571566b54662b7a47426762364968384c316b4565354c6133422b4b756e324873714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167544631535467314e65362b570a4739344579762b5174414575316d59365278656c5463337877616e5479767777436759494b6f5a497a6a3045417749445341417752514968414e56414c486b610a425444355250535959365a46426c6d6e52764f364b796a754b715935446667375467644e4169413552667a476b4c6372584e2f303678673475484176675364620a586b3158793243326156516a4f63722b2b773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[fc9 12-14 09:36:05.87 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQH+2gkHQVSYGwHNmdjVW1rjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMDExMzU3MjBaFw0yNzExMjkxMzU3MjBa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET/+qXCi/uacyRNUXz+LFWiWkzfYbic4W +ymEpJzPNA+mwjJOFuDF7uqVkTf+zGBgb6Ih8L1kEe5La3B+Kun2HsqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgTF1STg1Ne6+W +G94Eyv+QtAEu1mY6RxelTc3xwanTyvwwCgYIKoZIzj0EAwIDSAAwRQIhANVALHka +BTD5RPSYY6ZFBlmnRvO6KyjuKqY5Dfg7TgdNAiA5RfzGkLcrXN/06xg4uHAvgSdb +Xk1Xy2C2aVQjOcr++w== +-----END CERTIFICATE----- +[fca 12-14 09:36:05.88 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[fcb 12-14 09:36:05.88 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +[fcc 12-14 09:36:05.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026328 principal matched by identity 0 +[fcd 12-14 09:36:05.88 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 34 06 f8 bc 14 a7 d8 85 93 5b ef 16 33 79 f7 24 |4........[..3y.$| +00000010 a8 e7 5a f5 65 ce c3 ab c5 0a fd c2 c9 04 38 ad |..Z.e.........8.| +[fce 12-14 09:36:05.88 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f1 44 ec d1 06 a1 db 5a 1d bd 1a |0E.!..D.....Z...| +00000010 3d d4 c3 2e d1 90 8d 62 7b e0 92 33 83 d9 ec ed |=......b{..3....| +00000020 6b 8a 3e 06 d4 02 20 04 62 f0 bf eb ac f0 4d 15 |k.>... .b.....M.| +00000030 2a 40 d4 17 3f 6d 2e f2 e0 f6 d5 57 a1 9b 91 c4 |*@..?m.....W....| +00000040 5d 5f 53 09 07 80 3e |]_S...>| +[fcf 12-14 09:36:05.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026328 principal evaluation succeeds for identity 0 +[fd0 12-14 09:36:05.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026328 gate 1513244165879539200 evaluation succeeds +[fd1 12-14 09:36:05.88 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b760 1 [0xc420026610]}) %!s(*policies.implicitMetaPolicy=&{0xc420312500 1 [0xc4200266c0 0xc420026760]})]} +[fd2 12-14 09:36:05.88 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +[fd3 12-14 09:36:05.88 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[fd4 12-14 09:36:05.88 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[fd5 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block +[fd6 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [5] +[fd7 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49940] +[fd8 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4677], Going to peek [8] bytes +[fd9 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4675], placementInfo={fileNum=[0], startOffset=[49940], bytesOffset=[49942]} +[fda 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42017c5a0 chain:0xc42017d3e0 cutter:0xc420137770 filters:0xc42017cc20 signer:0x128b4a8 lastConfig:2 lastConfigSeq:3} +[fdb 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +[fdc 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[fdd 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[fde 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[fdf 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[fe0 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFF050A0A4F7264657265724D535012...AEE2A6368FA76B17A581FAB01514BFAB +[fe1 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 81D6AB9D8F78FE63FFCAF3F17FF1DF59A2B53829FD9FD1EB11B71F64CF0AB71E +[fe2 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[fe3 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[fe4 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[fe5 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[fe6 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[fe7 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFF050A0A4F7264657265724D53...AEE2A6368FA76B17A581FAB01514BFAB +[fe8 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: FBDFC6552BA07C920B8EAE29AAEA4603D1E5AB39789E318FA271C9AF964A3816 +[fe9 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xb7, 0x3b, 0x85, 0x60, 0xf5, 0x69, 0xc2, 0xb5, 0x50, 0x9c, 0x93, 0x37, 0x5a, 0x3d, 0x62, 0xc7, 0x7a, 0xcb, 0xad, 0x7e, 0x85, 0x6, 0x13, 0x31, 0x8b, 0xad, 0x29, 0x6d, 0x1a, 0x93, 0xe0, 0x1d} txOffsets= +txId=8fc4e4a6d7e6450c96e4fdfa9eeb80c2835b27100c162171f8ec8f3ce48baae1 locPointer=offset=70, bytesLength=2850 +] +[fea 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59298], isChainEmpty=[false], lastBlockNumber=[6] +[feb 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 6 +[fec 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [6] +[fed 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54617] +[fef 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4681], Going to peek [8] bytes +[ff0 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4679], placementInfo={fileNum=[0], startOffset=[54617], bytesOffset=[54619]} +[ff1 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42088b800) +[fee 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [6] +[ff2 12-14 09:36:07.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54617] +[ff3 12-14 09:36:07.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4681], Going to peek [8] bytes +[ff4 12-14 09:36:07.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4679], placementInfo={fileNum=[0], startOffset=[54617], bytesOffset=[54619]} +[ff5 12-14 09:36:07.89 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420a89be0) +[ff6 12-14 09:36:07.97 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[ff7 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +[ff8 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[ff9 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +[ffa 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026368 gate 1513244167980968200 evaluation starts +[ffb 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026368 signed by 0 principal evaluation starts (used [false]) +[ffc 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026368 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[ffd 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -4430,13 +7449,37 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[9e3 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263e0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[9e4 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263e0 principal evaluation fails -[9e5 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263e0 gate 1512459079570055700 evaluation fails -[9e6 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263f0 gate 1512459079572213700 evaluation starts -[9e7 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263f0 signed by 0 principal evaluation starts (used [false]) -[9e8 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[9e9 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[ffe 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[fff 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[1000 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026368 principal matched by identity 0 +[1001 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 37 5b c6 1c e5 61 8c bf ea 4d 61 ec 33 5a 50 8d |7[...a...Ma.3ZP.| +00000010 76 2f 9a 77 2e 08 c4 58 a9 b1 75 d9 d7 68 cb 47 |v/.w...X..u..h.G| +[1002 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 67 5f e0 f0 cd aa f3 58 e1 75 22 a9 |0D. g_.....X.u".| +00000010 fa 6d 78 fb b6 56 75 62 c7 cc a2 49 5a e7 bf de |.mx..Vub...IZ...| +00000020 66 b8 8d ee 02 20 0f ad 8f a4 a8 80 64 e8 2e 66 |f.... ......d..f| +00000030 8f b6 12 fe a5 5f 53 ce cd 33 7b c6 b4 2a 2f 55 |....._S..3{..*/U| +00000040 44 65 8d cf 67 eb |De..g.| +[1003 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026368 principal evaluation succeeds for identity 0 +[1004 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026368 gate 1513244167980968200 evaluation succeeds +[1005 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b600 1 [0xc420026660]}) %!s(*policies.implicitMetaPolicy=&{0xc420312280 1 [0xc420026710 0xc4200267b0]})]} +[1006 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420afe120) start: > stop: > +[1007 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +[1008 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +[1009 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[59298], Going to peek [8] bytes +[100a 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[11943], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[100b 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420afe120) +[100c 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc420afe120), waiting for new SeekInfo +[100d 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[100e 12-14 09:36:07.98 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[100f 12-14 09:36:07.98 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[1010 12-14 09:36:08.07 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[1011 12-14 09:36:08.07 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +[1012 12-14 09:36:08.07 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[1013 12-14 09:36:08.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +[1014 12-14 09:36:08.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263b0 gate 1513244168079108000 evaluation starts +[1015 12-14 09:36:08.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263b0 signed by 0 principal evaluation starts (used [false]) +[1016 12-14 09:36:08.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263b0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[1017 12-14 09:36:08.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -4449,13 +7492,37 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[9ea 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263f0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[9eb 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263f0 principal evaluation fails -[9ec 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263f0 gate 1512459079572213700 evaluation fails -[9ed 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026400 gate 1512459079573945100 evaluation starts -[9ee 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026400 signed by 0 principal evaluation starts (used [false]) -[9ef 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026400 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[9f0 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[1018 12-14 09:36:08.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[1019 12-14 09:36:08.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[101a 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263b0 principal matched by identity 0 +[101b 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 59 49 52 de f9 4c 9e 81 81 f9 0d 87 71 e2 fb 0e |YIR..L......q...| +00000010 cc 4a 7b ba c6 3a 01 23 2b 6b 15 e5 85 45 f2 20 |.J{..:.#+k...E. | +[101c 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 a6 e4 30 4d 6f e9 f6 ec 82 69 92 |0E.!...0Mo....i.| +00000010 ed e7 25 27 48 e1 7e 10 a3 07 9a 02 af a9 aa 2f |..%'H.~......../| +00000020 cf c5 f4 fe db 02 20 22 53 cd d9 51 0c 70 d7 b3 |...... "S..Q.p..| +00000030 3c 57 0d 0a 49 75 ad cf 64 1b 4b 73 f1 b1 e5 82 | DEBU 0xc4200263b0 principal evaluation succeeds for identity 0 +[101e 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263b0 gate 1513244168079108000 evaluation succeeds +[101f 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b600 1 [0xc420026660]}) %!s(*policies.implicitMetaPolicy=&{0xc420312280 1 [0xc420026710 0xc4200267b0]})]} +[1020 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420836be0) start: > stop: > +[1021 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] +[1022 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11945] +[1023 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[47353], Going to peek [8] bytes +[1024 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13749], placementInfo={fileNum=[0], startOffset=[11945], bytesOffset=[11947]} +[1025 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420836be0) +[1026 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc420836be0), waiting for new SeekInfo +[1027 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[1028 12-14 09:36:08.08 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[1029 12-14 09:36:08.08 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[102a 12-14 09:36:08.17 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[102b 12-14 09:36:08.17 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +[102c 12-14 09:36:08.17 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[102d 12-14 09:36:08.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +[102e 12-14 09:36:08.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263f8 gate 1513244168178901500 evaluation starts +[102f 12-14 09:36:08.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263f8 signed by 0 principal evaluation starts (used [false]) +[1030 12-14 09:36:08.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[1031 12-14 09:36:08.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -4468,34 +7535,37 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[9f1 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[9f2 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[9f3 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026400 principal matched by identity 0 -[9f4 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d9 31 34 01 d4 f0 a2 68 f2 11 35 c1 50 b9 83 f0 |.14....h..5.P...| -00000010 06 ac 24 db d5 88 ca a5 b1 59 7f 4c 72 aa f7 7c |..$......Y.Lr..|| -[9f5 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 84 de c5 8c 62 e4 89 d8 2f 9f e6 |0E.!.....b.../..| -00000010 7a 67 39 8c 53 84 66 08 52 43 59 c3 2d ea 9b e7 |zg9.S.f.RCY.-...| -00000020 06 cf 14 09 9c 02 20 4a f2 d0 56 29 ad 82 7c 8c |...... J..V)..|.| -00000030 50 3d 49 26 2e dc 9b 44 d7 3d 49 11 f7 05 03 1f |P=I&...D.=I.....| -00000040 e8 c7 c7 4b af 76 5a |...K.vZ| -[9f6 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026400 principal evaluation succeeds for identity 0 -[9f7 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026400 gate 1512459079573945100 evaluation succeeds -[9f8 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bf20 1 [0xc420026cb8 0xc420026d60]}) %!s(*policies.implicitMetaPolicy=&{0xc42037c280 1 [0xc420026dd8]})]} -[9f9 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc4204e2960) start: > stop: > -[9fa 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 0 -[9fb 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4204e2960) -[9fc 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc4204e2960), waiting for new SeekInfo -[9fd 12-05 07:31:19.57 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[9fe 12-05 07:31:19.58 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[9ff 12-05 07:31:19.58 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[a00 12-05 07:31:19.69 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[a01 12-05 07:31:19.69 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[a02 12-05 07:31:19.69 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[a03 12-05 07:31:19.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -[a04 12-05 07:31:19.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201144a8 gate 1512459079698964000 evaluation starts -[a05 12-05 07:31:19.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201144a8 signed by 0 principal evaluation starts (used [false]) -[a06 12-05 07:31:19.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201144a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[a07 12-05 07:31:19.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[1032 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[1033 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[1034 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263f8 principal matched by identity 0 +[1035 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 52 9d 80 2d a4 14 72 9d ba 7b 70 7f 9a 14 18 76 |R..-..r..{p....v| +00000010 97 46 b8 d8 dd f6 e0 17 93 f2 41 12 be 97 93 d1 |.F........A.....| +[1036 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ad 35 fb 9b 61 a4 e4 e9 a4 f0 bf |0E.!..5..a......| +00000010 e3 8a 51 0a 31 18 ed f6 fe f6 fe 2b 88 fb ba f3 |..Q.1......+....| +00000020 0b 51 20 2c 3d 02 20 7f 68 85 f5 44 07 6d 66 3a |.Q ,=. .h..D.mf:| +00000030 a5 60 33 28 bb 4a 81 44 91 92 e9 12 b0 85 18 57 |.`3(.J.D.......W| +00000040 99 9d ac c7 7b a8 ca |....{..| +[1037 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263f8 principal evaluation succeeds for identity 0 +[1038 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263f8 gate 1513244168178901500 evaluation succeeds +[1039 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b600 1 [0xc420026660]}) %!s(*policies.implicitMetaPolicy=&{0xc420312280 1 [0xc420026710 0xc4200267b0]})]} +[103a 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420988400) start: > stop: > +[103b 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +[103c 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25696] +[103d 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[33602], Going to peek [8] bytes +[103e 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13806], placementInfo={fileNum=[0], startOffset=[25696], bytesOffset=[25698]} +[103f 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420988400) +[1040 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc420988400), waiting for new SeekInfo +[1041 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[1042 12-14 09:36:08.18 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[1043 12-14 09:36:08.18 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[1044 12-14 09:36:08.28 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[1045 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +[1046 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[1047 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +[1048 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e828 gate 1513244168285260700 evaluation starts +[1049 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e828 signed by 0 principal evaluation starts (used [false]) +[104a 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e828 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[104b 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -4508,13 +7578,37 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[a08 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201144a8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[a09 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201144a8 principal evaluation fails -[a0a 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201144a8 gate 1512459079698964000 evaluation fails -[a0b 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201144d8 gate 1512459079700331000 evaluation starts -[a0c 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201144d8 signed by 0 principal evaluation starts (used [false]) -[a0d 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201144d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[a0e 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[104c 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[104d 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[104e 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e828 principal matched by identity 0 +[104f 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 5a c1 b1 ca 3b 36 33 62 c9 97 ec 1d d8 8f c8 e8 |Z...;63b........| +00000010 52 bb cb 46 e7 37 2e 95 c6 6e 3f d9 ae c6 2c 8e |R..F.7...n?...,.| +[1050 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 07 41 fe 8b a3 f6 24 51 d9 5b c4 1b |0D. .A....$Q.[..| +00000010 0e 34 c2 95 78 ff bd 8c 3c 4c ba 34 97 94 29 29 |.4..x... DEBU 0xc42018e828 principal evaluation succeeds for identity 0 +[1052 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e828 gate 1513244168285260700 evaluation succeeds +[1053 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b600 1 [0xc420026660]}) %!s(*policies.implicitMetaPolicy=&{0xc420312280 1 [0xc420026710 0xc4200267b0]})]} +[1054 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420bc6920) start: > stop: > +[1055 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] +[1056 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39504] +[1057 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[19794], Going to peek [8] bytes +[1058 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5216], placementInfo={fileNum=[0], startOffset=[39504], bytesOffset=[39506]} +[1059 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420bc6920) +[105a 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc420bc6920), waiting for new SeekInfo +[105b 12-14 09:36:08.28 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[105c 12-14 09:36:08.29 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[105d 12-14 09:36:08.29 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[105e 12-14 09:36:08.40 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[105f 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +[1060 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[1061 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +[1062 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026448 gate 1513244168403593900 evaluation starts +[1063 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026448 signed by 0 principal evaluation starts (used [false]) +[1064 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026448 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[1065 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -4527,13 +7621,37 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[a0f 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201144d8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[a10 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201144d8 principal evaluation fails -[a11 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201144d8 gate 1512459079700331000 evaluation fails -[a12 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420114030 gate 1512459079704404000 evaluation starts -[a13 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114030 signed by 0 principal evaluation starts (used [false]) -[a14 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114030 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[a15 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[1066 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[1067 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[1068 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026448 principal matched by identity 0 +[1069 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d2 79 99 80 56 d4 bb 7e 76 3b 4f 05 f3 5e ba c6 |.y..V..~v;O..^..| +00000010 1a 47 54 37 2e 06 a8 44 35 30 85 28 e4 e1 07 f2 |.GT7...D50.(....| +[106a 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 90 23 7c fe 91 a8 cb 0b a0 a2 e3 |0E.!..#|........| +00000010 40 36 e1 66 26 58 31 e0 91 38 92 8e 40 82 2e a5 |@6.f&X1..8..@...| +00000020 f1 4e a8 c2 02 02 20 10 71 b2 54 f3 17 b0 73 08 |.N.... .q.T...s.| +00000030 7e 82 8c 44 5a da 40 bb bf 95 ae 7d cc ef 93 86 |~..DZ.@....}....| +00000040 30 92 2c 45 05 59 f4 |0.,E.Y.| +[106b 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026448 principal evaluation succeeds for identity 0 +[106c 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026448 gate 1513244168403593900 evaluation succeeds +[106d 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42015b600 1 [0xc420026660]}) %!s(*policies.implicitMetaPolicy=&{0xc420312280 1 [0xc420026710 0xc4200267b0]})]} +[106e 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc42092bc60) start: > stop: > +[106f 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [4] +[1070 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44722] +[1071 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14576], Going to peek [8] bytes +[1072 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5216], placementInfo={fileNum=[0], startOffset=[44722], bytesOffset=[44724]} +[1073 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42092bc60) +[1074 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc42092bc60), waiting for new SeekInfo +[1075 12-14 09:36:08.40 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[1076 12-14 09:36:08.41 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[1077 12-14 09:36:08.41 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[1078 12-14 09:36:08.55 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[1079 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +[107a 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[107b 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +[107c 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e918 gate 1513244168553930400 evaluation starts +[107d 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e918 signed by 0 principal evaluation starts (used [false]) +[107e 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e918 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[107f 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -4546,34 +7664,37 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[a16 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[a17 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[a18 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114030 principal matched by identity 0 -[a19 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 56 b1 15 66 8d 7c 6e b1 6c 10 70 f1 07 7b 52 31 |V..f.|n.l.p..{R1| -00000010 17 22 88 b7 26 73 4f b3 69 52 7c 52 14 66 76 aa |."..&sO.iR|R.fv.| -[a1a 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 64 fd d1 4d 20 24 af 00 04 26 4f 43 |0D. d..M $...&OC| -00000010 c6 9c 9e 88 38 db 95 1b d7 28 61 1b b6 d7 cd 58 |....8....(a....X| -00000020 31 99 40 be 02 20 37 6e a5 95 ba 6b 83 83 84 bd |1.@.. 7n...k....| -00000030 34 6b 25 8a 7a 33 70 29 49 4f e5 2f 3a 4d fc 5c |4k%.z3p)IO./:M.\| -00000040 ef 0f 33 04 92 20 |..3.. | -[a1b 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114030 principal evaluation succeeds for identity 0 -[a1c 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420114030 gate 1512459079704404000 evaluation succeeds -[a1d 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bf20 1 [0xc420026cb8 0xc420026d60]}) %!s(*policies.implicitMetaPolicy=&{0xc42037c280 1 [0xc420026dd8]})]} -[a1e 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc4200e1f20) start: > stop: > -[a1f 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 1 -[a20 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4200e1f20) -[a21 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc4200e1f20), waiting for new SeekInfo -[a22 12-05 07:31:19.70 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[a23 12-05 07:31:19.71 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[a24 12-05 07:31:19.71 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[a25 12-05 07:31:19.82 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[a26 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[a27 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[a28 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -[a29 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260e8 gate 1512459079824524600 evaluation starts -[a2a 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260e8 signed by 0 principal evaluation starts (used [false]) -[a2b 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[a2c 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[1080 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[1081 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[1082 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e918 principal matched by identity 0 +[1083 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 91 b8 4d 91 27 98 34 6b 05 54 85 f1 ab f4 80 f5 |..M.'.4k.T......| +00000010 2e 9e 31 18 f3 44 94 ac ab 7b cb 44 49 1c 29 85 |..1..D...{.DI.).| +[1084 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 86 bd 49 a1 9e f9 97 51 88 01 2a |0E.!...I....Q..*| +00000010 1d 29 37 17 4d 86 f3 52 93 79 df d2 51 74 12 c7 |.)7.M..R.y..Qt..| +00000020 42 f3 40 00 52 02 20 7b ce 57 f6 94 8b f4 e7 1e |B.@.R. {.W......| +00000030 ea 90 2a 7f 50 c9 78 75 21 3f 29 9d 1a 9f b7 86 |..*.P.xu!?).....| +00000040 d2 0f 5c 81 4d 70 79 |..\.Mpy| +[1085 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42018e918 principal evaluation succeeds for identity 0 +[1086 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42018e918 gate 1513244168553930400 evaluation succeeds +[1087 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [Readers %!s(*policies.implicitMetaPolicy=&{0xc42039c700 1 [0xc420026080]})]} +[1088 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Received seekInfo (0xc420c36720) start: > stop: > +[1089 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +[108a 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +[108b 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[23720], Going to peek [8] bytes +[108c 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9084], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[108d 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Delivering block for (0xc420c36720) +[108e 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Done delivering for (0xc420c36720), waiting for new SeekInfo +[108f 12-14 09:36:08.55 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[1090 12-14 09:36:08.56 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[1091 12-14 09:36:08.56 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[1092 12-14 09:36:08.64 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[1093 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +[1094 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[1095 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +[1096 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260f8 gate 1513244168645520600 evaluation starts +[1097 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260f8 signed by 0 principal evaluation starts (used [false]) +[1098 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[1099 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -4586,297 +7707,26 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM 0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== -----END CERTIFICATE----- -[a2d 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260e8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[a2e 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260e8 principal evaluation fails -[a2f 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260e8 gate 1512459079824524600 evaluation fails -[a30 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200261e8 gate 1512459079826983000 evaluation starts -[a31 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261e8 signed by 0 principal evaluation starts (used [false]) -[a32 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[a33 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== ------END CERTIFICATE----- -[a34 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261e8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[a35 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261e8 principal evaluation fails -[a36 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200261e8 gate 1512459079826983000 evaluation fails -[a37 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262c0 gate 1512459079828209300 evaluation starts -[a38 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262c0 signed by 0 principal evaluation starts (used [false]) -[a39 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262c0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[a3a 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== ------END CERTIFICATE----- -[a3b 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[a3c 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[a3d 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262c0 principal matched by identity 0 -[a3e 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 a1 72 73 23 28 0d 38 3c 60 27 80 04 bc 06 1f 81 |.rs#(.8<`'......| -00000010 bf 8f 79 07 99 be 33 02 60 b5 b0 5d c1 84 6f 3f |..y...3.`..]..o?| -[a3f 12-05 07:31:19.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7e 8e b6 ad 02 11 bb c7 28 8e d7 f3 |0D. ~.......(...| -00000010 e4 cf b0 d8 4b 26 9f 3f 82 26 21 39 68 67 22 01 |....K&.?.&!9hg".| -00000020 21 69 d7 68 02 20 66 df 68 99 a8 02 1a e4 dd 8e |!i.h. f.h.......| -00000030 08 3c 9f ca f9 f0 45 15 72 5f 5b 9e 5f c3 e9 38 |.<....E.r_[._..8| -00000040 fc 89 be 88 7e 8d |....~.| -[a40 12-05 07:31:19.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262c0 principal evaluation succeeds for identity 0 -[a41 12-05 07:31:19.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262c0 gate 1512459079828209300 evaluation succeeds -[a42 12-05 07:31:19.83 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bf20 1 [0xc420026cb8 0xc420026d60]}) %!s(*policies.implicitMetaPolicy=&{0xc42037c280 1 [0xc420026dd8]})]} -[a43 12-05 07:31:19.83 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc42036c9c0) start: > stop: > -[a44 12-05 07:31:19.83 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 2 -[a45 12-05 07:31:19.83 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42036c9c0) -[a46 12-05 07:31:19.83 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc42036c9c0), waiting for new SeekInfo -[a47 12-05 07:31:19.83 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[a48 12-05 07:31:19.83 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[a49 12-05 07:31:19.83 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[a4a 12-05 07:31:19.94 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[a4b 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[a4c 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[a4d 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -[a4e 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201142a0 gate 1512459079941483300 evaluation starts -[a4f 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201142a0 signed by 0 principal evaluation starts (used [false]) -[a50 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201142a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[a51 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== ------END CERTIFICATE----- -[a52 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201142a0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[a53 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201142a0 principal evaluation fails -[a54 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201142a0 gate 1512459079941483300 evaluation fails -[a55 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201142b0 gate 1512459079943312400 evaluation starts -[a56 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201142b0 signed by 0 principal evaluation starts (used [false]) -[a57 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201142b0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[a58 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== ------END CERTIFICATE----- -[a59 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201142b0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[a5a 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201142b0 principal evaluation fails -[a5b 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201142b0 gate 1512459079943312400 evaluation fails -[a5c 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201142d8 gate 1512459079944663200 evaluation starts -[a5d 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201142d8 signed by 0 principal evaluation starts (used [false]) -[a5e 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201142d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[a5f 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== ------END CERTIFICATE----- -[a60 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[a61 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[a62 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201142d8 principal matched by identity 0 -[a63 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 6f c7 da 4f e6 34 de 72 6a 60 83 23 9b 4f f6 57 |o..O.4.rj`.#.O.W| -00000010 86 ed 31 02 77 28 ce c1 e1 1b 1e 3b 14 c5 9b c2 |..1.w(.....;....| -[a64 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 75 cd 59 77 4e 1b 52 4c ac c4 7a d2 |0D. u.YwN.RL..z.| -00000010 03 89 43 ae c2 d9 ca 41 a3 3f d8 3d 17 69 02 d5 |..C....A.?.=.i..| -00000020 23 53 f6 8c 02 20 3f e6 e3 5e 55 8a fb b6 f3 8f |#S... ?..^U.....| -00000030 14 15 c6 16 81 06 12 38 b3 74 b6 27 94 67 6b 7d |.......8.t.'.gk}| -00000040 ec e3 97 6a 83 6b |...j.k| -[a65 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201142d8 principal evaluation succeeds for identity 0 -[a66 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201142d8 gate 1512459079944663200 evaluation succeeds -[a67 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bf20 1 [0xc420026cb8 0xc420026d60]}) %!s(*policies.implicitMetaPolicy=&{0xc42037c280 1 [0xc420026dd8]})]} -[a68 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc42021a1e0) start: > stop: > -[a69 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 3 -[a6a 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42021a1e0) -[a6b 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc42021a1e0), waiting for new SeekInfo -[a6c 12-05 07:31:19.94 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[a6d 12-05 07:31:19.95 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[a6e 12-05 07:31:19.95 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[a6f 12-05 07:31:20.04 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[a70 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[a71 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[a72 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -[a73 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420114410 gate 1512459080048590900 evaluation starts -[a74 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114410 signed by 0 principal evaluation starts (used [false]) -[a75 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114410 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[a76 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== ------END CERTIFICATE----- -[a77 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114410 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[a78 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114410 principal evaluation fails -[a79 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420114410 gate 1512459080048590900 evaluation fails -[a7a 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420114420 gate 1512459080049815700 evaluation starts -[a7b 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114420 signed by 0 principal evaluation starts (used [false]) -[a7c 12-05 07:31:20.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114420 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[a7d 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== ------END CERTIFICATE----- -[a7e 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114420 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[a7f 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114420 principal evaluation fails -[a80 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420114420 gate 1512459080049815700 evaluation fails -[a81 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420114430 gate 1512459080050881600 evaluation starts -[a82 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114430 signed by 0 principal evaluation starts (used [false]) -[a83 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114430 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[a84 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== ------END CERTIFICATE----- -[a85 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[a86 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[a87 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114430 principal matched by identity 0 -[a88 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 0f da 8a d0 81 0a fd 31 64 e9 65 ba 77 11 9e 90 |.......1d.e.w...| -00000010 dc eb 52 6d c2 2c 23 2d 4d 68 80 91 07 17 1f d0 |..Rm.,#-Mh......| -[a89 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 26 9a d3 e2 dd 7f 75 7d ed 53 93 37 |0D. &.....u}.S.7| -00000010 27 d3 49 7f 28 72 46 f9 64 59 1c 9b 31 9d cf 8e |'.I.(rF.dY..1...| -00000020 ce d4 86 8f 02 20 15 56 27 1d 34 65 24 39 6b ec |..... .V'.4e$9k.| -00000030 fb 9a aa 71 17 8c 40 b8 cb 15 c4 fa a2 da 48 d1 |...q..@.......H.| -00000040 22 43 b8 62 45 4a |"C.bEJ| -[a8a 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420114430 principal evaluation succeeds for identity 0 -[a8b 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420114430 gate 1512459080050881600 evaluation succeeds -[a8c 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42039bf20 1 [0xc420026cb8 0xc420026d60]}) %!s(*policies.implicitMetaPolicy=&{0xc42037c280 1 [0xc420026dd8]})]} -[a8d 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420291060) start: > stop: > -[a8e 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 4 -[a8f 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420291060) -[a90 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc420291060), waiting for new SeekInfo -[a91 12-05 07:31:20.05 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[a92 12-05 07:31:20.06 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[a93 12-05 07:31:20.06 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[a94 12-05 07:31:20.15 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[a95 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[a96 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[a97 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -[a98 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201144f8 gate 1512459080155989300 evaluation starts -[a99 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201144f8 signed by 0 principal evaluation starts (used [false]) -[a9a 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201144f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[a9b 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== ------END CERTIFICATE----- -[a9c 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[a9d 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[a9e 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201144f8 principal matched by identity 0 -[a9f 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 67 61 8a c7 c5 c1 44 6e d8 fa 18 ec 5d 32 66 64 |ga....Dn....]2fd| -00000010 6d cc 81 3c db e1 62 d8 a6 23 bc 2f 51 64 14 c0 |m..<..b..#./Qd..| -[aa0 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 14 d0 09 4e cd a1 7d 57 5a 49 a6 c7 |0D. ...N..}WZI..| -00000010 38 4f 52 fa f9 31 9e 26 9c b7 d7 37 e4 f4 a0 16 |8OR..1.&...7....| -00000020 68 9c 04 7a 02 20 3d ad ae da 68 17 af 51 68 cd |h..z. =...h..Qh.| -00000030 c6 33 22 f0 20 26 ce 33 dd 43 9c 58 9e ce a2 7d |.3". &.3.C.X...}| -00000040 d0 b6 f7 50 f0 29 |...P.)| -[aa1 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201144f8 principal evaluation succeeds for identity 0 -[aa2 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201144f8 gate 1512459080155989300 evaluation succeeds -[aa3 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [Readers %!s(*policies.implicitMetaPolicy=&{0xc42039a200 1 [0xc4201146d0]})]} -[aa4 12-05 07:31:20.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Received seekInfo (0xc4201ef5a0) start: > stop: > -[aa5 12-05 07:31:20.16 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 0 -[aa6 12-05 07:31:20.16 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Delivering block for (0xc4201ef5a0) -[aa7 12-05 07:31:20.16 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Done delivering for (0xc4201ef5a0), waiting for new SeekInfo -[aa8 12-05 07:31:20.16 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[aa9 12-05 07:31:20.16 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[aaa 12-05 07:31:20.16 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[aab 12-05 07:31:20.26 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[aac 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[aad 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[aae 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -[aaf 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262d0 gate 1512459080264577100 evaluation starts -[ab0 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262d0 signed by 0 principal evaluation starts (used [false]) -[ab1 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262d0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a43434162436741774942416749514335326d79334751676b6d436c4c434c52616e51546a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449774d54457a4e5463794d466f58445449334d5445794f54457a4e5463794d466f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741456834546957523030422b577353733669443258676c5451667863643463676c7768364433534a736a6a723058453665692f514f7a0a454a79767841554c502b43697a794b4c65653261586f6b4b6e625932745a637856614e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167464d6758767255324e5570724c64377a7062735a3357556a636652584b6854370a332f505a7362423661683477436759494b6f5a497a6a3045417749445341417752514968414e6d675565626b666766477036626b52784d6f3935536c5137764d0a307338774e3137577a7a4c6a37356f2b41694251594a5a527158376f6d376e4b593279706b49645432544e7041336c615a694c4567673547784a636871413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[ab2 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbCgAwIBAgIQC52my3GQgkmClLCLRanQTjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIwMTEzNTcyMFoXDTI3MTEyOTEzNTcyMFowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEh4TiWR00B+WsSs6iD2XglTQfxcd4cglwh6D3SJsjjr0XE6ei/QOz -EJyvxAULP+CizyKLee2aXokKnbY2tZcxVaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgFMgXvrU2NUprLd7zpbsZ3WUjcfRXKhT7 -3/PZsbB6ah4wCgYIKoZIzj0EAwIDSAAwRQIhANmgUebkfgfGp6bkRxMo95SlQ7vM -0s8wN17WzzLj75o+AiBQYJZRqX7om7nKY2ypkIdT2TNpA3laZiLEgg5GxJchqA== ------END CERTIFICATE----- -[ab3 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[ab4 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[ab5 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262d0 principal matched by identity 0 -[ab6 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 07 5e 48 46 21 ba 5d 6c 28 19 0b 53 b9 cd ea 20 |.^HF!.]l(..S... | -00000010 62 16 6f 91 cb f1 c0 68 17 3f 9e 62 d8 3b 00 a7 |b.o....h.?.b.;..| -[ab7 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 55 ad 62 c1 e7 62 a9 20 e6 bb f6 d8 |0D. U.b..b. ....| -00000010 8d e7 f7 61 6d 43 71 d9 16 03 92 09 6b d8 76 e2 |...amCq.....k.v.| -00000020 48 05 3d b3 02 20 25 90 0c 37 1e 97 8c ff 2a a2 |H.=.. %..7....*.| -00000030 0c 5a b1 6a 78 33 2f 29 cd 76 6a df eb 35 a6 c6 |.Z.jx3/).vj..5..| -00000040 5e 2f be 76 a1 a8 |^/.v..| -[ab8 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262d0 principal evaluation succeeds for identity 0 -[ab9 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262d0 gate 1512459080264577100 evaluation succeeds -[aba 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [Readers %!s(*policies.implicitMetaPolicy=&{0xc42039a200 1 [0xc4201146d0]})]} -[abb 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Received seekInfo (0xc4203a58c0) start: > stop: > -[abc 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/orderer/ledger/json] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.readBlock -> DEBU Read block 1 -[abd 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Delivering block for (0xc4203a58c0) -[abe 12-05 07:31:20.26 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Done delivering for (0xc4203a58c0), waiting for new SeekInfo -[abf 12-05 07:31:20.27 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[ac0 12-05 07:31:20.27 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[ac1 12-05 07:31:20.27 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[109a 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[109b 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[109c 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260f8 principal matched by identity 0 +[109d 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d2 60 7e e2 36 a7 e4 f1 90 91 75 14 ed 80 b1 20 |.`~.6.....u.... | +00000010 03 49 94 b3 4f a0 93 4b dc 6d 39 10 25 51 ee 75 |.I..O..K.m9.%Q.u| +[109e 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 32 d2 2c 0d 1c 76 22 46 a4 22 bf be |0D. 2.,..v"F."..| +00000010 b3 5f 0e 24 8a 48 6d 87 0a ce 29 a5 cd b5 9b 27 |._.$.Hm...)....'| +00000020 40 4e 4b ee 02 20 1e 6e 2a d6 ec 10 0d 04 b8 39 |@NK.. .n*......9| +00000030 ce a2 ce 09 bb 83 b6 0e b7 b2 86 b7 4f af cb 69 |............O..i| +00000040 2e d8 07 36 fe 41 |...6.A| +[109f 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260f8 principal evaluation succeeds for identity 0 +[10a0 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260f8 gate 1513244168645520600 evaluation succeeds +[10a1 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [Readers %!s(*policies.implicitMetaPolicy=&{0xc42039c700 1 [0xc420026080]})]} +[10a2 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Received seekInfo (0xc42092a440) start: > stop: > +[10a3 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] +[10a4 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9086] +[10a5 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14634], Going to peek [8] bytes +[10a6 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14632], placementInfo={fileNum=[0], startOffset=[9086], bytesOffset=[9088]} +[10a7 12-14 09:36:08.64 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Delivering block for (0xc42092a440) +[10a8 12-14 09:36:08.65 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Done delivering for (0xc42092a440), waiting for new SeekInfo +[10a9 12-14 09:36:08.65 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[10aa 12-14 09:36:08.65 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[10ab 12-14 09:36:08.65 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream